Main.gd 785 B

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