9 lines
135 B
GDScript
9 lines
135 B
GDScript
extends Line2D
|
|
|
|
@export var point2pos: Node2D
|
|
|
|
|
|
|
|
func _process(_delta: float) -> void:
|
|
points[2] = point2pos.position - self.position
|