第8步:我们的精灵可以跳跃,现在是时候添加一些石块让它跳过了!

  • 点击 并拖出 Interval Event
  • 点击 运行 来测试你的事件。飞船应该每隔 2 秒x向左转动 15 度!

interval() 事件让我们告诉程序每隔一定的时间做出特定的动作。在这种情况下,interval()事件被设置为每2秒运行一次。

To navigate the page using the TAB key, first press ESC to exit the code editor.

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)
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)