
Move your character in 4 directions with the Arrow Keys (or WASD).
Use two blocks to create: The Game Loop. Things that need to happen repeatedly go inside this loop.
Add Move 3 Steps inside the loop. The character should move forever.
Use an IF block to make the movement only happen if something is true. Something like the user pressing a key.
If the right arrow key is pressed, then move.
If the right arrow key is pressed, then move.
Let’s use all 4 arrow keys. Switch the IF block for the IF / Else block.
Set the character’s direction using point in direction.
Platformer
Add a walk left block. When this block happens, the actor will walk left.
When will this block happen?
Attach an Event block to the top.
When the left arrow is pressed, now the character will walk left.
What is the 10 for?
Do the same for the Right arrow key.
When the right arrow key is pressed, walk right.