UnityEngine.GUIStyleState.GetScaledBackgroundsInternalFromDeserialization C# (CSharp) Method

GetScaledBackgroundsInternalFromDeserialization() private method

private GetScaledBackgroundsInternalFromDeserialization ( ) : UnityEngine.Texture2D[]
return UnityEngine.Texture2D[]
        private extern Texture2D[] GetScaledBackgroundsInternalFromDeserialization();
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 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;
 }
All Usage Examples Of UnityEngine.GUIStyleState::GetScaledBackgroundsInternalFromDeserialization