25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

39 satır
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()