少年修仙传客户端代码仓库
client_Wu Xijin
2019-06-06 69729435e0cedfe67c238aa3b7a57df2229dece0
7158  【2.0】【开发】物品TIPS按钮样式替换
1个文件已修改
5 ■■■■■ 已修改文件
System/ItemTip/TipOperateButton.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/ItemTip/TipOperateButton.cs
@@ -12,6 +12,7 @@
    public class TipOperateButton : MonoBehaviour
    {
        [SerializeField] Button m_Button;
        [SerializeField] Image m_Icon;
        [SerializeField] Text m_Title;
        string windowName;
@@ -84,6 +85,10 @@
                    break;
            }
            var isBlackSkin = type == ItemOperateType.sell || type == ItemOperateType.putOff;
            m_Icon.SetSprite(isBlackSkin ? "UnReceiveBG" : "ReceiveBG_a");
            this.m_Title.color = UIHelper.GetUIColor(isBlackSkin ? TextColType.LightYellow : TextColType.Black);
            m_Button.SetListener(() =>
            {
                WindowCenter.Instance.Close(windowName);