diff options
author | IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> | 2022-07-17 03:40:41 +0200 |
---|---|---|
committer | IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> | 2022-07-17 03:40:41 +0200 |
commit | d3f6967fe666595cf0862be57a3dae3bb23afd24 (patch) | |
tree | 7e6f90f9a3116431dc761fdd4167b58f4b59ec43 /godot/scenes/objects/GoalTriggerBox.gd | |
parent | 690e705de1e8b8babbb7bf86f55a5dbae559488b (diff) | |
download | 2022-d3f6967fe666595cf0862be57a3dae3bb23afd24.tar.gz 2022-d3f6967fe666595cf0862be57a3dae3bb23afd24.tar.bz2 2022-d3f6967fe666595cf0862be57a3dae3bb23afd24.zip |
asset for the goal trigger
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 |