Parcourir la source

MAj

chapitre-1-start
gaetanv il y a 3 ans
Parent
révision
6570da0bcb
2 fichiers modifiés avec 24 ajouts et 1 suppressions
  1. +24
    -0
      Birdies.py
  2. +0
    -1
      essai.py

+ 24
- 0
Birdies.py Voir le fichier

@@ -0,0 +1,24 @@
import pgzrun

# Le corps du programme devrait se trouver ici...
TITLE = "Paf l'oiseau"
WIDTH = 400
HEIGHT = 700

titi = Actor('bird1', (75, 350))



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

def on_mouse_down():
titi.x = 0

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

pgzrun.go()

+ 0
- 1
essai.py Voir le fichier

@@ -1 +0,0 @@
print("hello")

Chargement…
Annuler
Enregistrer