瀏覽代碼

Challenge

Challengebird_birddead
Melo 3 年之前
父節點
當前提交
1761503bd5
共有 1 個檔案被更改,包括 15 行新增4 行删除
  1. +15
    -4
      birdie.py

+ 15
- 4
birdie.py 查看文件

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

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

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

def on_mouse_down():
print('Clic souris !')
#titi.y -= 20
#titi.x -= -10
print('stop !')
titi.y -= 20
ghost.x -= 10
titi.speed = 0
ghost.speed = 0

def on_mouse_up():
print('go')
titi.speed = 5
ghost.speed = 4


def update():
titi.x += titi.speed
ghost.y += ghost.speed

titi.speed = 1
titi.speed = 5
ghost.speed = 4


pgzrun.go()

Loading…
取消
儲存