hch
17 小时以前 14ee0cae9be4ab59e9ab9aa095a0641c6185a95e
Main/System/ItemTip/OwnMoneyCell.cs
@@ -64,7 +64,14 @@
            // Debug.LogError("moneyType == 0");
            return;
        }
        numText.text = UIHelper.ReplaceLargeNum(UIHelper.GetMoneyCnt(moneyType));
        double count = UIHelper.GetMoneyCnt(moneyType);
        int decimalPlaces = 1;
        if (moneyType == 99)
        {
            count = count / 100.0;
            decimalPlaces = 2;
        }
        numText.text = UIHelper.ReplaceLargeNum(count, decimalPlaces);
        if (resetIcon)
        { 
            moneyIcon.SetIconWithMoneyType(moneyType);