Main.gd 842 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. func game_over():
  9. $ScoreTimer.stop()
  10. $MobTimer.stop()
  11. func _ready():
  12. randomize() # Plant seed for random number generation
  13. new_game() # Remove when HUD implemented
  14. func _on_StartTimer_timeout():
  15. $MobTimer.start()
  16. $ScoreTimer.start()
  17. func _on_ScoreTimer_timeout():
  18. score += 1
  19. func _on_MobTimer_timeout():
  20. $MobPath/MobSpawnLocation.set_offset(randi())
  21. var newMob = Mob.instance()
  22. var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
  23. newMob.rotation = newRotation
  24. newMob.position = $MobPath/MobSpawnLocation.position
  25. newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
  26. add_child(newMob)