| | |
| | | public List<int> trialTokens = new List<int>();
|
| | | PlayerPackModel packModel { get { return ModelCenter.Instance.GetModel<PlayerPackModel>(); } }
|
| | | DailyQuestModel dailyQuestModel { get { return ModelCenter.Instance.GetModel<DailyQuestModel>(); } }
|
| | | DungeonModel dungeonModel { get { return ModelCenter.Instance.GetModel<DungeonModel>(); } }
|
| | |
|
| | | public event Action SelectEquipClassEvent;
|
| | |
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | public bool CompleteTrialFloor(int _lineId)
|
| | | {
|
| | | DungeonRecord dungeonRecord;
|
| | | if (dungeonModel.TryGetDungeonRecord(60010, out dungeonRecord))
|
| | | {
|
| | | if (dungeonRecord.lineGrades != null
|
| | | && dungeonRecord.lineGrades.ContainsKey(_lineId))
|
| | | {
|
| | | return dungeonRecord.lineGrades[_lineId] > 0;
|
| | | }
|
| | | }
|
| | | return false;
|
| | | }
|
| | |
|
| | | public void ProcessOpenTrialExchangeError()
|
| | | {
|
| | | SysNotifyMgr.Instance.ShowTip("TrialExchangeLimit");
|
| | | }
|
| | |
|
| | | #region 红点
|
| | | void UpdateRedpoint()
|
| | | {
|