Browse Source

MAj

chapitre-1-start
gaetanv 3 years ago
parent
commit
6570da0bcb
2 changed files with 24 additions and 1 deletions
  1. +24
    -0
      Birdies.py
  2. +0
    -1
      essai.py

+ 24
- 0
Birdies.py View File

@@ -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 View File

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

Loading…
Cancel
Save