UnityEngine.GUIStyleState.GetBackgroundInternal C# (CSharp) Метод

GetBackgroundInternal() приватный Метод

private GetBackgroundInternal ( ) : Texture2D
Результат 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