This commit is contained in:
2026-03-14 12:58:55 -05:00
parent 6738e8d217
commit 1c95315496
22 changed files with 313 additions and 45 deletions

View File

@@ -1,6 +1,8 @@
extends StaticBody2D
class_name BaseChest
signal OpeningAnimationStarted
@export var is_open := false
# Public Methods

View File

@@ -14,6 +14,8 @@ func Open() -> void:
return
super.Open()
OpeningAnimationStarted.emit()
chest_01_sprite.play("opening")
var item_name: String = Enums.Items.keys()[item_id]