This commit is contained in:
Victor Turgeon
2023-01-15 11:17:51 -05:00
parent 96581c5f60
commit 39a399f137
28 changed files with 316 additions and 92 deletions

View File

@@ -0,0 +1,12 @@
extends Area2D
@export var Type : String;
@export var Item : PackedScene;
func _on_body_entered(body):
if body.name == "Player":
pickup_routine(body);
func pickup_routine(player):
player.pickup(self);
queue_free();