You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
146 B
GDScript
9 lines
146 B
GDScript
|
2 years ago
|
extends Node3D
|
||
|
|
class_name AI
|
||
|
|
|
||
|
|
@onready var character = (get_owner() as Character)
|
||
|
|
@onready var status = (%Status as Status)
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
pass
|