Browse Source

:truck: Move attack movement to the mob itself

Because each enemy would have its own tactic.
DricomDragon 2 years ago
parent
commit
c167f15f6f

+ 6 - 0
godot/component/entity/octo/Octo.gd

@@ -12,6 +12,12 @@ func _ready():
 	$AnimatedSprite.play()
 
 
+func attack(from: Vector2, angle: float):
+	rotation = angle
+	position = from
+	linear_velocity = Vector2(rand_range(min_speed, max_speed), 0).rotated(angle)
+
+
 func _on_VisibilityNotifier2D_screen_exited():
 	die()
 

+ 1 - 3
godot/component/entity/spawner/MobSpawner.gd

@@ -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")