UnityEngine.GUIStyle.INTERNAL_CALL_Internal_DrawCursor C# (CSharp) Method

INTERNAL_CALL_Internal_DrawCursor() private method

private INTERNAL_CALL_Internal_DrawCursor ( IntPtr target, Rect &position, GUIContent content, int pos, Color &cursorColor ) : void
target System.IntPtr
position Rect
content GUIContent
pos int
cursorColor Color
return void
        private static extern void INTERNAL_CALL_Internal_DrawCursor(IntPtr target, ref Rect position, GUIContent content, int pos, ref Color cursorColor);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
ファイル: GUIStyle.cs プロジェクト: zuohu/UnityDecompiled
 private static void Internal_DrawCursor(IntPtr target, Rect position, GUIContent content, int pos, Color cursorColor)
 {
     GUIStyle.INTERNAL_CALL_Internal_DrawCursor(target, ref position, content, pos, ref cursorColor);
 }