UnityEngine.NavMeshPath.GetCornersNonAlloc C# (CSharp) Method

GetCornersNonAlloc() private method

private GetCornersNonAlloc ( Vector3 results ) : int
results Vector3
return int
        public extern int GetCornersNonAlloc(Vector3[] results);
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

 static public int GetCornersNonAlloc(IntPtr l)
 {
     try {
         UnityEngine.NavMeshPath self = (UnityEngine.NavMeshPath)checkSelf(l);
         UnityEngine.Vector3[]   a1;
         checkType(l, 2, out a1);
         var ret = self.GetCornersNonAlloc(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.NavMeshPath::GetCornersNonAlloc