12345678910111213141516171819202122232425262728 |
- extends Node2D
- export (PackedScene) var Mob
- var score = 0
- func _ready():
- randomize() # Plant seed for random number generation
- func _on_StartTimer_timeout():
- $MobTimer.start()
- $ScoreTimer.start()
- func _on_ScoreTimer_timeout():
- score += 1
- func _on_MobTimer_timeout():
- $MobPath/MobSpawnLocation.set_offset(randi())
-
- var newMob = Mob.instance()
-
- var direction = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
-
- newMob.orientation = direction
- newMob.position = $MobPath/MobSpawnLocation.position
- newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(direction)
-
- add_child(newMob)
|