少年修仙传客户端代码仓库
client_Zxw
2018-09-05 6e7b8fd0d052719ec4306b49d1ab0462aaf6d11c
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
1个文件已修改
4 ■■■■ 已修改文件
System/Treasure/TreasurePotentialBriefInfo.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Treasure/TreasurePotentialBriefInfo.cs
@@ -63,7 +63,7 @@
            }
            m_Level.text = _unlock ? StringUtility.Contact(_potential.level, "/", maxLevel) : string.Empty;
            m_Level.transform.localScale = Vector3.one;
            m_PotentialName.text = _unlock ? config.SkillName : string.Empty;
            m_PotentialName.text = config.SkillName;// _unlock ? config.SkillName : string.Empty;
            model.potentialLevelChangeEvent -= OnPotentialLevelUp;
            model.potentialLevelChangeEvent += OnPotentialLevelUp;
@@ -97,7 +97,7 @@
            bool _unlock = potential != null && model.IsPotentialUnlock(model.selectedTreasure, potential.id);
            m_Level.text = _unlock ? StringUtility.Contact(potential.level, "/", maxLevel) : string.Empty;
            m_Level.transform.localScale = Vector3.one;
            m_PotentialName.text = _unlock ? config.SkillName : string.Empty;
            m_PotentialName.text = config.SkillName;// _unlock ? config.SkillName : string.Empty;
        }
        public void OnPotentialSelected(int _potentialId)