ソースを参照

MAj

chapitre-1-start
gaetanv 3年前
コミット
6570da0bcb
2個のファイルの変更24行の追加1行の削除
  1. +24
    -0
      Birdies.py
  2. +0
    -1
      essai.py

+ 24
- 0
Birdies.py ファイルの表示

@@ -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 ファイルの表示

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

読み込み中…
キャンセル
保存