|
@@ -13,9 +13,7 @@ func spawn():
|
|
|
var newRotation = $MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
|
|
|
|
|
|
var newMob = Mob.instance()
|
|
|
- newMob.rotation = newRotation
|
|
|
- newMob.position = $MobSpawnLocation.position
|
|
|
- newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
|
|
|
+ newMob.attack($MobSpawnLocation.position, newRotation)
|
|
|
|
|
|
connect("reset", newMob, "_on_Spawner_reset")
|
|
|
|