The right arrow moves the circle right. The left arrow moves the circle left. The up arrow acts as a jump button. The spacebar changes whether the variables are visible. No other keys have any function in this project. Is "spacebar" not the correct way to write it? My computer has it underlined in red, but I thought it was right.
The placing of the platforms is random, except for the floor on the bottom. "H px/fr" is short for "horizontal pixels/frame". "V px/fr" is short for "vertical pixels/frame". The "Platform Surface" variable tells the ball the elevation of the platform it is currently touching. The first of my platformer attempts: https://scratch.mit.edu/projects/795385550/ The second of my platformer attempts: https://scratch.mit.edu/projects/871405261/ IMPROVEMENTS: 1. The circle doesn't start jumping by itself. 2. The circle does not have the little up and down motion when resting on a platform. 3. You can jump, though whether this should count can be argued over as it doesn't seem I even tried to put that in the earlier ones. WHAT TO FIX: 1. When you jump and touch the bottom of a platform, you teleport to the top of it. 2. When you collide with the side of a platform, you teleport to the top of it. 3. It's possible to float above and to the side of the corner of a platform, not quite touching the gray part. I know why these problems exist, so I should be able to fix it.