示例#1
0
    public override void show(PopupData pd, string msg)
    {
        base.show(pd, msg);

        _data.parse((string)pd.data[0]);

        lbPrice.text = Util.GetCommaScore(_data.getSellPrice());
    }
示例#2
0
 public void onClickBreak(GameObject go)
 {
     if (btnClose.gameObject.activeSelf == false)
     {
         return;
     }
     UISystemPopup.open(UISystemPopup.PopupType.Sell,
                        Util.getUIText("MSG_SELL_UNITRUNE", RareType.WORD[data.rare], data.unitData.name, data.getSellPrice().ToString()),
                        onConfirmBreak, null, data.serverId);
 }