少年修仙传客户端代码仓库
client_linchunjie
2018-09-14 a0ede150686a218c92b901b1f20aef12a9913890
System/Dungeon/DungeonTargetBehaviour.cs
@@ -35,8 +35,8 @@
        {
            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);
@@ -100,7 +100,8 @@
                        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) {