UnityEngine.GUIStyleState.GetGUIStyleState C# (CSharp) 메소드

GetGUIStyleState() 정적인 개인적인 메소드

static private GetGUIStyleState ( GUIStyle sourceStyle, IntPtr source ) : GUIStyleState
sourceStyle GUIStyle
source System.IntPtr
리턴 GUIStyleState
        internal static GUIStyleState GetGUIStyleState(GUIStyle sourceStyle, IntPtr source)
        {
            GUIStyleState state = new GUIStyleState(sourceStyle, source);
            state.m_Background = state.GetBackgroundInternal();
            state.m_ScaledBackgrounds = state.GetScaledBackgroundsInternalFromDeserialization();
            return state;
        }