瀏覽代碼

bckground

chapitre-1-challenge-1
Michael 3 年之前
父節點
當前提交
561d9e0a1c
共有 1 個檔案被更改,包括 5 行新增5 行删除
  1. +5
    -5
      birdie.py

+ 5
- 5
birdie.py 查看文件

@@ -5,21 +5,21 @@ WIDTH = 400
HEIGHT = 708

titi = Actor('bird1', (151, 350))
titi2 = Actor('bird1', (11, 250))
titi2 = Actor('birddead', (11, 250))

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

def on_mouse_down():
print('Clic souris !')
titi.speed += 1
titi2.speed += 2
titi2.speed += 4

def on_mouse_up():
titi.speed += 1
titi2.speed += 2
titi2.speed += 4
def update():
@@ -37,7 +37,7 @@ def update():
titi2.x += titi.speed

titi.speed = 1
titi2.speed = 1
titi2.speed = 6


pgzrun.go()

Loading…
取消
儲存