feat: 재화 표기 형식 수정
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user