yyl
2025-07-29 b0a5d4688f1af73b5ad03ccc2df11c9aac1523a9
Main/System/PhantasmPavilion/AvatarCell.cs
@@ -88,27 +88,27 @@
        }
    }
    EffectPlayer m_AvatarUIEffect;
    private EffectPlayer avatarUIEffect
    UIEffectPlayer m_AvatarUIEffect;
    private UIEffectPlayer avatarUIEffect
    {
        get
        {
            if (m_AvatarUIEffect == null)
            {
                m_AvatarUIEffect = this.GetComponent<EffectPlayer>("AvatarCell/Img_Avatar");
                m_AvatarUIEffect = this.GetComponent<UIEffectPlayer>("AvatarCell/Img_Avatar");
            }
            return m_AvatarUIEffect;
        }
    }
    EffectPlayer m_AvatarFrameUIEffect;
    private EffectPlayer avatarFrameUIEffect
    UIEffectPlayer m_AvatarFrameUIEffect;
    private UIEffectPlayer avatarFrameUIEffect
    {
        get
        {
            if (m_AvatarFrameUIEffect == null)
            {
                m_AvatarFrameUIEffect = this.GetComponent<EffectPlayer>("AvatarCell/Img_AvatarFrame");
                m_AvatarFrameUIEffect = this.GetComponent<UIEffectPlayer>("AvatarCell/Img_AvatarFrame");
            }
            return m_AvatarFrameUIEffect;
        }