Explorar el Código

lef right ok

chapitre-1-left-right
Fabien Toune hace 3 años
padre
commit
f00832a3c2
Se han modificado 1 ficheros con 11 adiciones y 4 borrados
  1. +11
    -4
      birdie.py

+ 11
- 4
birdie.py Ver fichero

@@ -4,12 +4,19 @@ TITLE = "Paf l'oiseau"
WIDTH = 400
HEIGHT = 708

def on_mouse_down():
print('Clic souris !')
titi.y -= 50
def on_mouse_down(button):
print('Clic', button)
if button == mouse.RIGHT :
titi.speed += 1
elif button == mouse.LEFT :
titi.speed -= 1

def update():
titi.y += titi.speed
titi.x += titi.speed
if titi.left > WIDTH :
titi.right = 0
if titi.right < 0 :
titi.left = WIDTH

def draw():
screen.blit('background', (0, 0))


Cargando…
Cancelar
Guardar