Przeglądaj źródła

Mise à jour

chapitre-1-challenge-1
Cleason 3 lat temu
rodzic
commit
d179304416
1 zmienionych plików z 0 dodań i 14 usunięć
  1. +0
    -14
      birdie.py

+ 0
- 14
birdie.py Wyświetl plik

@@ -8,35 +8,21 @@ def draw():
screen.blit('cascade', (0, 0))
titi = Actor('bird1', (75, 350))
# bird = Actor('bird0', (75, 350))

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

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

# def on_mouse_down():
# print('Stop')
# titi.speed = 0 # équivalent à titi.y = titi.y 0
# # bird.speed = 0 # équivalent à bird.x = bird.x 0

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

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

# if bird.x > 400 :
# bird.x = 0

titi.speed = 1
# bird.speed = 1


pgzrun.go()

Ładowanie…
Anuluj
Zapisz