feat: 재화 표기 형식 수정

This commit is contained in:
aube.lee
2025-02-28 15:27:50 +09:00
parent 608abcbac2
commit 6f69f9a9d7

View File

@@ -23,8 +23,8 @@ namespace TON
public void SetCashAmount()
{
goldObject.GetComponentInChildren<TextMeshProUGUI>().text = string.Format("{0:#,###}", PlayerDataManager.Singleton.goldAmount);
fishObject.GetComponentInChildren<TextMeshProUGUI>().text = string.Format("{0:#,###}", PlayerDataManager.Singleton.fishAmount);
goldObject.GetComponentInChildren<TextMeshProUGUI>().text = $"{PlayerDataManager.Singleton.goldAmount:N0}";
fishObject.GetComponentInChildren<TextMeshProUGUI>().text = $"{PlayerDataManager.Singleton.fishAmount:N0}";
}
private void SetObjectActive()