From bdeb64137ae143028e9f4a455a323eb7323c1b7d Mon Sep 17 00:00:00 2001 From: Dendy Faist Date: Fri, 6 Mar 2026 00:24:18 +0100 Subject: [PATCH] feat: Toggle visibility of shop items in _ready() --- shop.gd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/shop.gd b/shop.gd index deaae98..7a9934b 100644 --- a/shop.gd +++ b/shop.gd @@ -7,6 +7,13 @@ var special_currency: int = 0 signal shop_exit +func _ready() -> void: + $Tux.visible = true + $Xenia.visible = true + $TuxUpgrades.visible = false + $XeniaUpgrades.visible = false + + func _process(delta: float) -> void: $Money.text = str(available_money) $SpecialMoney.text = str(special_currency)