UnityEngine.GUIStyle.INTERNAL_CALL_Internal_Draw2 C# (CSharp) Method

INTERNAL_CALL_Internal_Draw2() private method

private INTERNAL_CALL_Internal_Draw2 ( IntPtr style, Rect &position, GUIContent content, int controlID, bool on ) : void
style System.IntPtr
position Rect
content GUIContent
controlID int
on bool
return void
        private static extern void INTERNAL_CALL_Internal_Draw2(IntPtr style, ref Rect position, GUIContent content, int controlID, bool on);
        internal void SetMouseTooltip(string tooltip, Rect screenRect)

Usage Example

コード例 #1
0
ファイル: GUIStyle.cs プロジェクト: zuohu/UnityDecompiled
 private static void Internal_Draw2(IntPtr style, Rect position, GUIContent content, int controlID, bool on)
 {
     GUIStyle.INTERNAL_CALL_Internal_Draw2(style, ref position, content, controlID, on);
 }