|
@@ -6,6 +6,7 @@ var score = 0
|
|
|
|
|
|
func _ready():
|
|
|
randomize() # Plant seed for random number generation
|
|
|
+ $StartTimer.start()
|
|
|
|
|
|
func _on_StartTimer_timeout():
|
|
|
$MobTimer.start()
|
|
@@ -16,13 +17,13 @@ func _on_ScoreTimer_timeout():
|
|
|
|
|
|
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
|
|
|
+
|
|
|
+ var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
|
|
|
+
|
|
|
+ newMob.rotation = newRotation
|
|
|
newMob.position = $MobPath/MobSpawnLocation.position
|
|
|
- newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(direction)
|
|
|
-
|
|
|
+ newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
|
|
|
+
|
|
|
add_child(newMob)
|