86
« on: January 03, 2014, 12:26:06 pm »
First and foremost let me just say, these are all very good questions. However, they are also very challenging to answer.
1- age.
There really isn't an easy answer as all kids are different. I've seen a 9 year old jump right in and I've seen adults struggle. In general I've noticed that the "comprehending" questions come about 6 months after starting. Also, in my experience, 12 year olds seem most interested and eager to learn. Younger than that and they really just want to -play- games, not -make- them. Also, having a game started so they can MOD it seems to work best. Starting from scratch is boring.
2. Transparent
When you create an actor with the animation sprite sheet, you click on the color that you want to be transparent for that particular animation. As long as the image has a solid color background, you can select that solid color as transparent. I believe the color code most used is red 255, green 0, blue 255 because that color is rarely found in nature.
3. Copy paste
You should be able to copy and paste your blocks. Be sure you are pasting into the same type of event page. So if you are copying from "When created" you may not be able to paste into "when drawing" or "when updating". I'm not sure. Someone else may be able to answer better.
4. PONG AI
Yes it can be done without programming. Just about anything can be done with the puzzle pieces. Sometimes it's hard to figure out, but it can be done using IF statements.
When Updating
IF the Y of ball is < Y of paddle
THEN set Y of paddle to Y - 1
This is just pseudocode.
5. Programming
Again, just about anything can be done with the default Stencyl. Programmers may want to write custom code because it's easier for them, but it's not required. It's nice to have the ability to add code but it's not necessary.
Good luck!