diff options
Diffstat (limited to '')
-rw-r--r-- | godot/scenes/objects/GoalTriggerBox.gd (renamed from godot/scripts/GoalTriggerBox.gd) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/godot/scripts/GoalTriggerBox.gd b/godot/scenes/objects/GoalTriggerBox.gd index 6e1034b..9659520 100644 --- a/godot/scripts/GoalTriggerBox.gd +++ b/godot/scenes/objects/GoalTriggerBox.gd @@ -13,7 +13,7 @@ func _ready(): # pass -func _on_Area2_body_entered(body: RigidBody): +func _on_Area_body_entered(body: RigidBody): # return when body is not a rigidbody if body == null: return |