Browse Source

challenge-4-ok

chapitre-1-challenge-4
Cleason 3 years ago
parent
commit
a1daa3e91e
1 changed files with 4 additions and 15 deletions
  1. +4
    -15
      birdie.py

+ 4
- 15
birdie.py View File

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


def draw():
screen.blit('cascade', (0, 0))
titi = Actor('bird1', (75, 350)) titi = Actor('bird1', (75, 350))
bird = Actor('bird0', (75, 350))


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

def on_mouse_up():
print('Clic souris !')
titi.speed = 10

def on_mouse_down():
titi.speed = 0

bird.draw()


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

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

bird.x += bird.speed


titi.speed = 3 titi.speed = 3
bird.speed = 5


pgzrun.go() pgzrun.go()

Loading…
Cancel
Save