UnityEngine.GUIStyle.INTERNAL_CALL_Internal_CalcSizeWithConstraints C# (CSharp) Method

INTERNAL_CALL_Internal_CalcSizeWithConstraints() private method

private INTERNAL_CALL_Internal_CalcSizeWithConstraints ( IntPtr target, GUIContent content, Vector2 &maxSize, Vector2 &ret ) : void
target System.IntPtr
content GUIContent
maxSize Vector2
ret Vector2
return void
        private static extern void INTERNAL_CALL_Internal_CalcSizeWithConstraints(IntPtr target, GUIContent content, ref Vector2 maxSize, out Vector2 ret);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 internal static void Internal_CalcSizeWithConstraints(IntPtr target, GUIContent content, Vector2 maxSize, out Vector2 ret)
 {
     GUIStyle.INTERNAL_CALL_Internal_CalcSizeWithConstraints(target, content, ref maxSize, out ret);
 }