浏览代码

challenge 6

challenge-6
Melissa 3 年前
父节点
当前提交
b25544f4a2
共有 1 个文件被更改,包括 7 次插入3 次删除
  1. +7
    -3
      birdie.py

+ 7
- 3
birdie.py 查看文件

@@ -5,9 +5,13 @@ WIDTH = 400
HEIGHT = 708
direction = 1

def on_mouse_down():
print('Stop!')
titi.speed = 1
def on_mouse_down(button):
if button == mouse.LEFT:
print('freinage')
titi.speed -= 1
elif button == mouse.RIGHT:
print('accélaration')
titi.speed += 1

def on_mouse_up():
titi.speed = 1


正在加载...
取消
保存