Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
| | |
| | | m_BuyTimes.gameObject.SetActive(remainBuyTimes > 0);
|
| | | if (remainBuyTimes > 0)
|
| | | {
|
| | | m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Green, remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
|
| | | m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Green, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
|
| | | }
|
| | | else
|
| | | {
|
| | | m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Red, remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
|
| | | m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Red, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | timer += Time.deltaTime;
|
| | | if (timer >= autoContinueSeconds)
|
| | | {
|
| | | OnSkip();
|
| | | EmptyAccepter();
|
| | | mainModel.IsSelfMotionTask = true;
|
| | | }
|
| | |
|