Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

39 righe
340 B

  1. import pgzrun
  2. TITLE = "Paf l'oiseau"
  3. WIDTH = 400
  4. HEIGHT = 708
  5. def draw():
  6. screen.blit('background.png', (0,0))
  7. titi.draw()
  8. def on_mouse_down():
  9. print('Clic souris !')
  10. titi.y -= 50
  11. titi.speed = 0
  12. def update():
  13. titi.y += titi.speed
  14. titi = Actor('bird1' , (75,350))
  15. titi.speed = 1
  16. pgzrun.go()