STEP 10: Let's make another dance move.

  • In drag out Wait. Drop it at the bottom of your program.
  • Go to and drag out Flip Right Left . Drop it at the bottom of your program.

We need to pause the stage before flipping, or the flip will happen too fast to see!

stage.set_background("concert") sprite = codesters.Sprite("person1") sprite.set_speed(3) sprite.move_down(100) sprite.flip_up_down() sprite.move_right(150) sprite.move_left(200) sprite.flip_up_down() sprite.turn_left(360)