Ver a proveniência

Challenge

Challengebird_birddead
Melo há 3 anos
ascendente
cometimento
1761503bd5
1 ficheiros alterados com 15 adições e 4 eliminações
  1. +15
    -4
      birdie.py

+ 15
- 4
birdie.py Ver ficheiro

@@ -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()

Carregando…
Cancelar
Guardar