feat: add example splash item for inventory testing

This commit is contained in:
2026-04-26 22:17:37 -07:00
parent cebd53ae8e
commit a54fe6652f
6 changed files with 70 additions and 6 deletions

View File

@@ -9,11 +9,11 @@ signal skip_action_requested
enum State { IDLE, OPEN, SELECTED, ACQUIRE, REMOVE }
var _state: State = State.IDLE
var _animating: bool = false
var _active_tween: Tween = null
var _floating_item_color: Color = Color(1, 1, 1, 0)
var _home_position: Vector2 = Vector2(0, 0)
var _state: State = State.IDLE
var _animating: bool = false
var _active_tween: Tween = null
var _floating_item_color: Color = Color(1, 1, 1, 0)
var _home_position: Vector2 = Vector2(0, 0)
@onready var backpack_icon: ColorRect = $BackpackIcon
@onready var floating_item: ColorRect = $FloatingItem