现在我们的精灵可以跳跃了,现在可以添加一些用来跳过的区块了!

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

interval() 事件让我们让程序每隔几秒就做一些动作。

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

stage.set_background("city") sprite = codesters.Sprite("bike") 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)