1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 23:54:23 +00:00

Add WIP DropOnFree

This commit is contained in:
Steffo 2024-04-15 03:05:35 +02:00
parent 5dd3c62410
commit fecacaf2aa
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
2 changed files with 6 additions and 0 deletions

View file

@ -9,3 +9,7 @@ func _ready() -> void:
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _on_tree_exiting() -> void:
pass # Replace with function body.

View file

@ -4,3 +4,5 @@
[node name="DropOnFree" type="Node2D"]
script = ExtResource("1_4xihn")
[connection signal="tree_exiting" from="." to="." method="_on_tree_exiting"]