Browse Source

Mise à jour

chapitre-1-challenge-1
Cleason 3 years ago
parent
commit
26b87f8182
1 changed files with 13 additions and 2 deletions
  1. +13
    -2
      birdie.py

+ 13
- 2
birdie.py View File

@@ -18,12 +18,23 @@ def draw():
def on_mouse_up():
print('Clic souris !')
titi.y -= 50 # équivalent à titi.y = titi.y - 50
bird.x -= 60 # équivalent à bird.x = bird.x - 60
bird.x -= 50 # équivalent à bird.x = bird.x - 60

def on_mouse_down():
print('Stop')
titi.speed = 0 # équivalent à titi.y = titi.y 0
bird.speed = 0 # équivalent à bird.x = bird.x 0

def update():
titi.x += titi.speed
titi.y += titi.speed
bird.x += bird.speed

if titi.y > 400 :
titi.y = 0

if bird.x > 400 :
bird.x = 0

titi.speed = 1
bird.speed = 1



Loading…
Cancel
Save