Add balance text to download menu

This commit is contained in:
2025-07-16 21:06:33 -07:00
parent 553d05f269
commit 2c80fbdf2d
3 changed files with 140 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ public class IconMarketplaceManager : MonoBehaviour
uploadPanel.SetActive(false);
break;
case 1:
downloadPanelScript.balanceText.text = "You have " + Tools.FormatWithCommas((BazookaManager.Instance.GetCustomBirdIconData()["totalCoins"] ?? "0").ToString()) + " coins to spend";
normalPanel.SetActive(false);
downloadPanel.SetActive(true);
uploadPanel.SetActive(false);