少年修仙传客户端代码仓库
client_Hale
2019-04-17 278f1af71f6a7267c4b1dddbdc6b2290983a3f69
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
2个文件已修改
8 ■■■■ 已修改文件
System/EquipStar/EquipStarUpgradeCandidateSlot.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/EquipTrain/EquipTrainCandidateBehaviour.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/EquipStar/EquipStarUpgradeCandidateSlot.cs
@@ -56,7 +56,7 @@
                m_EmptyItem.gameObject.SetActive(true);
                var place = this.candidate.equipPosition.y;
                m_Description1.text = string.Format("部位:{0}", UIHelper.GetEquipPlaceName(place));
                m_Description1.color = UIHelper.GetUIColor(TextColType.Black, true);
                m_Description1.color = UIHelper.GetUIColor(TextColType.NavyBrown, true);
                m_Description2.text = "未穿戴装备";
            }
            else
System/EquipTrain/EquipTrainCandidateBehaviour.cs
@@ -55,7 +55,7 @@
                m_Star.gameObject.SetActive(false);
                var place = this.candidate.equipPosition.y;
                m_Description1.text = string.Format("部位:{0}", UIHelper.GetEquipPlaceName(place));
                m_Description1.color = UIHelper.GetUIColor(TextColType.Black, true);
                m_Description1.color = UIHelper.GetUIColor(TextColType.NavyBrown, true);
                m_Description2.text = "未穿戴装备";
                m_Description2.color = UIHelper.GetUIColor(TextColType.Red, true);
            }
@@ -68,7 +68,7 @@
                m_Description1.text = item.config.ItemName;
                m_Description1.color = UIHelper.GetUIColor(item.config.ItemColor, true);
                m_Description2.text = string.Format("洗练等级:{0}级", this.candidate.trainLevel.Fetch());
                m_Description2.color = UIHelper.GetUIColor(TextColType.Black, true);
                m_Description2.color = UIHelper.GetUIColor(TextColType.NavyBrown, true);
                var starLevel = this.candidate.starLevel.Fetch();
                m_Star.gameObject.SetActive(true);
@@ -90,7 +90,7 @@
                if (!string.IsNullOrEmpty(this.candidate.equipGuid.value))
                {
                    m_Description2.text = string.Format("洗练等级:{0}级", trainLevel);
                    m_Description2.color = UIHelper.GetUIColor(TextColType.Black, true);
                    m_Description2.color = UIHelper.GetUIColor(TextColType.NavyBrown, true);
                }
            }
        }