UnityEngine.GUIDebugger.INTERNAL_CALL_LogLayoutEntry C# (CSharp) Method

INTERNAL_CALL_LogLayoutEntry() private method

private INTERNAL_CALL_LogLayoutEntry ( Rect &rect, RectOffset margins, GUIStyle style ) : void
rect Rect
margins RectOffset
style GUIStyle
return void
        private static extern void INTERNAL_CALL_LogLayoutEntry(ref Rect rect, RectOffset margins, GUIStyle style);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public static void LogLayoutEntry(Rect rect, RectOffset margins, GUIStyle style)
 {
     GUIDebugger.INTERNAL_CALL_LogLayoutEntry(ref rect, margins, style);
 }