2024-04-16 02:29:34 +00:00
|
|
|
extends Move
|
2024-04-14 16:20:08 +00:00
|
|
|
class_name MoveTowards
|
|
|
|
|
|
|
|
|
2024-04-16 02:29:34 +00:00
|
|
|
## A [Move] that moves towards the [field position] of a [field target].
|
2024-04-14 16:20:08 +00:00
|
|
|
|
|
|
|
|
2024-04-15 23:57:22 +00:00
|
|
|
@export var target: Node2D = null
|
2024-04-14 16:20:08 +00:00
|
|
|
|
|
|
|
|
2024-04-16 00:47:31 +00:00
|
|
|
func set_target(value: Node2D) -> void:
|
|
|
|
target = value
|
|
|
|
|
|
|
|
func clear_target() -> void:
|
|
|
|
target = null
|
|
|
|
|
|
|
|
|
2024-04-15 23:57:22 +00:00
|
|
|
func _ready() -> void:
|
|
|
|
if target == null:
|
|
|
|
Log.w(self, "No target is set, no signals will be emitted.")
|
2024-04-14 16:20:08 +00:00
|
|
|
|
2024-04-15 23:57:22 +00:00
|
|
|
func _physics_process(_delta: float) -> void:
|
2024-04-16 00:47:31 +00:00
|
|
|
if target:
|
|
|
|
var gap = target.global_position - global_position
|
|
|
|
var norm = gap.normalized()
|
2024-04-16 02:29:34 +00:00
|
|
|
move.emit(norm)
|
|
|
|
else:
|
|
|
|
move.emit(Vector2.ZERO)
|