Moved the buttons

This commit is contained in:
Pasha Bibko
2026-04-16 15:53:26 +01:00
parent d352809614
commit 2ca0328459
2 changed files with 149 additions and 293 deletions

View File

@@ -100,9 +100,9 @@ namespace Fruitomation.UI
//
AttachedText.text = //State == UpgradeState.Hidden
//? "???"
$"{Upgrade.ToString()} [{UpgradeCost}]";
AttachedText.text = State == UpgradeState.Hidden
? "???"
: $"{Upgrade.ToString()} [{UpgradeCost}]";
}
private bool IsUnlocked => State == UpgradeState.Unlocked;