Ver código fonte

MAj

chapitre-1-start
gaetanv 3 anos atrás
pai
commit
6570da0bcb
2 arquivos alterados com 24 adições e 1 exclusões
  1. +24
    -0
      Birdies.py
  2. +0
    -1
      essai.py

+ 24
- 0
Birdies.py Ver arquivo

@@ -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 Ver arquivo

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

Carregando…
Cancelar
Salvar