mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-24 05:37:15 +01:00
9 lines
112 B
GDScript3
9 lines
112 B
GDScript3
|
extends Node2D
|
||
|
|
||
|
|
||
|
onready var _target: = $Target
|
||
|
|
||
|
|
||
|
func draw(location: Vector2) -> void:
|
||
|
_target.draw(location)
|