STEP 21: Now the blocks are starting in the middle of the stage. Let's make them start off to the right of the stage!

  • Find the two asteroids in your code. Remember, those were the Sprite at Position lines of code.
  • Change the second parameter, after the image label, for both rocks to 300.

The second parameter in both asteroids is the x-coordinate.

stage.set_background("space") sprite = codesters.Sprite("spaceship") sprite.set_size(0.5) sprite.go_to(-200, 0) stage.set_gravity(10) stage.disable_all_walls() def space_bar(): sprite.jump(5) # add other actions... stage.event_key("space", space_bar) def interval(): top_height = random.randint(50, 300) # sprite = codesters.Sprite("image", x, y) top_rock = codesters.Sprite("asteroid", 0, 0) top_rock.set_height(top_height) top_rock.set_gravity_off() top_rock.set_y_speed(0) top_rock.set_top(250) bot_height = 350 - top_height bot_rock = codesters.Sprite("asteroid", 0, 0) bot_rock.set_height(bot_height) bot_rock.set_gravity_off() bot_rock.set_y_speed(0) bot_rock.set_bottom(-250) top_rock.set_x_speed(-2) bot_rock.set_x_speed(-2) # add any other actions... stage.event_interval(interval, 2)