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)