| | |
| | | { |
| | | if (currentDungeonId == 0) return; |
| | | |
| | | var dateMapId = model.GetDungeonDataIdByMapId(currentDungeonId); |
| | | var hintId = model.DungeonHintMap(dateMapId, 0); |
| | | var dateMapId = model.GetDataMapIdByMapId(currentDungeonId); |
| | | var hintId = model.GetDungeonHintId(dateMapId, 0); |
| | | var config = Config.Instance.Get<DungeonHintConfig>(hintId); |
| | | |
| | | m_TargetDescs[0].gameObject.SetActive(config.targetNum >= 1); |
| | |
| | | m_TargetNums[_index].text=StringUtility.Contact(UIHelper.ReplaceLargeNum((ulong)model.mission.totalExp), "/", UIHelper.ReplaceLargeNum((ulong)_targetValue)); |
| | | break; |
| | | } |
| | | m_TargetNums[_index].text = UIHelper.ReplaceLargeNum((ulong)model.mission.totalExp); |
| | | m_TargetNums[_index].text = StringUtility.Contact(UIHelper.ReplaceLargeNum((ulong)model.mission.totalExp), |
| | | model.mission.isFullExp == 1 ? StringUtility.Contact(" ", Language.Get("FullExp")) : string.Empty); |
| | | break; |
| | | case DungeonTargetType.Score: |
| | | if (_targetValue > 0) { |