Pārlūkot izejas kodu

lef right ok

chapitre-1-left-right
Fabien Toune pirms 3 gadiem
vecāks
revīzija
f00832a3c2
1 mainītis faili ar 11 papildinājumiem un 4 dzēšanām
  1. +11
    -4
      birdie.py

+ 11
- 4
birdie.py Parādīt failu

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


Notiek ielāde…
Atcelt
Saglabāt