You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 on_mouse_up():
  13. print('Clic souris !')
  14. titi.y -= 50
  15. titi.speed = 1
  16. def update():
  17. titi.y += titi.speed
  18. titi = Actor('bird1' , (75,350))
  19. titi.speed = 1
  20. pgzrun.go()