STEP 17: We need to change the rotation for each sprite. We can do this while looping through our sprite list.

  • Click on the LOGIC tab, then click on .
  • Drag out Add Value to the bottom of your code, inside the loop.
  • Change my_var to rotate and change 1 to 30.

Each time the loop runs, rotate increases by 30, which causes the next sprite to rotate further around the world.

stage.set_background_color("lightblue") # sprite = codesters.Rectangle(x, y, width, height, "color") sprite = codesters.Rectangle(0, 0, 700, 100, "gold") sprite.turn_left(45) # sprite = codesters.Rectangle(x, y, width, height, "color") sprite = codesters.Rectangle(0, 0, 700, 100, "gold") sprite.turn_right(45) sprite = codesters.Sprite("earth") people_sprites = ['person1', 'person2', 'person3', 'person4', 'person5', 'person6', 'person7', 'person8','person9', 'person10', 'person11', 'person12'] rotate = 90 for value in people_sprites: # add code here sprite = codesters.Sprite(value) stage.wait(0.5) sprite.set_size(0.3) sprite.set_speed(5) sprite.move_forward(120) sprite.turn_right(90) sprite.rotate_origin(rotate)