Main.gd 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. extends Node2D
  2. export (PackedScene) var Mob
  3. var score = 0
  4. func new_game():
  5. score = 0
  6. $Player.spawn($StartPositon.position)
  7. $StartTimer.start()
  8. $HUD.update_score(score)
  9. $HUD.show_message("Get ready")
  10. func game_over():
  11. $ScoreTimer.stop()
  12. $MobTimer.stop()
  13. $HUD.show_game_over()
  14. func _ready():
  15. randomize() # Plant seed for random number generation
  16. func _on_StartTimer_timeout():
  17. $MobTimer.start()
  18. $ScoreTimer.start()
  19. func _on_ScoreTimer_timeout():
  20. score += 1
  21. $HUD.update_score(score)
  22. func _on_MobTimer_timeout():
  23. $MobPath/MobSpawnLocation.set_offset(randi())
  24. var newMob = Mob.instance()
  25. var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
  26. newMob.rotation = newRotation
  27. newMob.position = $MobPath/MobSpawnLocation.position
  28. newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
  29. add_child(newMob)