UnityEngine.GUIStyleState.GetBackgroundInternal C# (CSharp) Method

GetBackgroundInternal() private method

private GetBackgroundInternal ( ) : Texture2D
return Texture2D
        private extern Texture2D GetBackgroundInternal();
        [MethodImpl(MethodImplOptions.InternalCall), ThreadAndSerializationSafe]

Usage Example

コード例 #1
0
        internal static GUIStyleState GetGUIStyleState(GUIStyle sourceStyle, IntPtr source)
        {
            GUIStyleState guiStyleState = new GUIStyleState(sourceStyle, source);

            guiStyleState.m_Background = guiStyleState.GetBackgroundInternal();
            return(guiStyleState);
        }
All Usage Examples Of UnityEngine.GUIStyleState::GetBackgroundInternal