Bouncing Circle: Make it move

Let’s make the circle move. It will move to the right along the x-axis at 1 pixel per frame. To do this, we’ll have to create a variable for the circle’s x-position and increment it.

⌨️ Add a variable for the x-position and increment it by 1 every frame

image

Next up...

Bouncing Circle: Speed