Main.gd 655 B

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