Browse Source

lef right ok

chapitre-1-left-right
Fabien Toune 3 years ago
parent
commit
f00832a3c2
1 changed files with 11 additions and 4 deletions
  1. +11
    -4
      birdie.py

+ 11
- 4
birdie.py View File

@@ -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))


Loading…
Cancel
Save