Scene 2:

  • Choose your background from .
  • Choose an for your sprite. This may place it somewhere new or just make your sprite move.
  • Use Set Text to change your the text on screen to the new sentence describing your new scene.
  • Add a Wait command from .

stage.set_background("park") sprite = codesters.Sprite("person3") sprite.glide_to(-100, 50) # text = codesters.Text("text", x, y, "color") text = codesters.Text("I went to the park!", 0, -200, "blue") stage.wait(1) sprite.move_right(400) transition1 = sprite.ask("Choose a transition from the sequence category.") text.set_text(transition1)