Main.gd 672 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. extends Node2D
  2. signal game_started
  3. signal game_over
  4. var score = 0
  5. var music_position = 0.0
  6. func new_game():
  7. score = 0
  8. $Player.spawn($StartPositon.position)
  9. $StartTimer.start()
  10. $HUD.update_score(score)
  11. $HUD.show_message("Get ready")
  12. $Music.play(music_position)
  13. func game_over():
  14. $ScoreTimer.stop()
  15. $HUD.show_game_over()
  16. music_position = $Music.get_playback_position()
  17. $Music.stop()
  18. $DeathSound.play()
  19. emit_signal("game_over")
  20. func _ready():
  21. randomize() # Plant seed for random number generation
  22. func _on_StartTimer_timeout():
  23. $ScoreTimer.start()
  24. emit_signal("game_started")
  25. func _on_ScoreTimer_timeout():
  26. score += 1
  27. $HUD.update_score(score)