hch
2025-08-15 7bd85eb8d0b9664f4645534b42c82ab0f32754d3
Main/Component/UI/Core/OutlineEx.cs
@@ -9,7 +9,16 @@
public class OutlineEx : BaseMeshEffect
{
    [Header("新shader描边")]
    public Color OutlineColor = new Color(0, 0, 0, 0.5f);// Color.black;
    public Color m_OutlineColor= new Color(0, 0, 0, 0.5f);// Color.black;
    public Color OutlineColor
    {
        get { return m_OutlineColor; }
        set
        {
            m_OutlineColor = value;
            this._Refresh();
        }
    }
    QualityTextColType m_ColorType = QualityTextColType.None;
    public QualityTextColType colorType
@@ -21,7 +30,6 @@
            {
                m_ColorType = value;
                OutlineColor = UIHelper.GetUIOutlineColor(value);
                this._Refresh();
            }
        }
    }