Esempio n. 1
0
    void setTextValue(int value)
    {
        if (uguiText == null)
        {
            return;
        }
        string tempstr = "" + value;

        if (nFenWei != FenWei.None)
        {
            BCTools.ConvertToMoneyMode(ref tempstr, ((nFenWei == FenWei.thousand) ? 3 : 4), ((insertChar == InsertChar.space) ? " " : ","));
        }
        uguiText.text = tempstr;
    }