Main.gd 675 B

1234567891011121314151617181920212223242526272829
  1. extends Node2D
  2. export (PackedScene) var Mob
  3. var score = 0
  4. func _ready():
  5. randomize() # Plant seed for random number generation
  6. $StartTimer.start()
  7. func _on_StartTimer_timeout():
  8. $MobTimer.start()
  9. $ScoreTimer.start()
  10. func _on_ScoreTimer_timeout():
  11. score += 1
  12. func _on_MobTimer_timeout():
  13. $MobPath/MobSpawnLocation.set_offset(randi())
  14. var newMob = Mob.instance()
  15. var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
  16. newMob.rotation = newRotation
  17. newMob.position = $MobPath/MobSpawnLocation.position
  18. newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
  19. add_child(newMob)