7 lines
121 B
GDScript
7 lines
121 B
GDScript
extends Node3D
|
|
|
|
|
|
func _on_area_3d_body_entered(body: Node3D) -> void:
|
|
if body is EnemyController:
|
|
body.goal_entered()
|