mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2025-01-14 02:11:11 +01:00
9 lines
112 B
GDScript
9 lines
112 B
GDScript
extends Node2D
|
|
|
|
|
|
onready var _target: = $Target
|
|
|
|
|
|
func draw(location: Vector2) -> void:
|
|
_target.draw(location)
|