Untracked Files

This commit is contained in:
2026-02-22 13:54:40 -06:00
parent 63e2f75e7b
commit 90241d6830
56 changed files with 1083 additions and 0 deletions

11
Scripts/Maps/shop.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node2D
@onready var item_notification: Label = $"CanvasLayer/Item Notification"
func _on_player_shop_item_scanned(item_name: String) -> void:
item_notification.text = item_name
func _on_player_shop_item_unscanned() -> void:
item_notification.text = ""