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


Loading…
Откажи
Сачувај