Parcourir la source

Challenge-1 ok

chapitre-1-challenge-1
Cleason il y a 3 ans
Parent
révision
fc3bc487ce
1 fichiers modifiés avec 9 ajouts et 7 suppressions
  1. +9
    -7
      birdie.py

+ 9
- 7
birdie.py Voir le fichier

@@ -13,16 +13,18 @@ def draw():
screen.blit('background', (0, 0))
titi.draw()

def on_mouse_up():
print('Clic souris !')
titi.y -= 50 # équivalent à titi.y = titi.y - 50
# def on_mouse_up():
# print('Clic souris !')
# titi.y -= 50 # équivalent à titi.y = titi.y - 50


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

# if titi.x > WIDTH :
# titi.x = 0

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

titi.speed = 1
titi.speed = 3

pgzrun.go()

Chargement…
Annuler
Enregistrer