UnityEngine.GUILayoutEntry.ApplyStyleSettings C# (CSharp) 메소드

ApplyStyleSettings() 보호된 메소드

protected ApplyStyleSettings ( GUIStyle style ) : void
style GUIStyle
리턴 void
        protected virtual void ApplyStyleSettings(GUIStyle style)
        {
            this.stretchWidth = ((style.fixedWidth != 0f) || !style.stretchWidth) ? 0 : 1;
            this.stretchHeight = ((style.fixedHeight != 0f) || !style.stretchHeight) ? 0 : 1;
            this.m_Style = style;
        }