UnityEngine.NavMesh.INTERNAL_CALL_FindClosestEdge C# (CSharp) Méthode

INTERNAL_CALL_FindClosestEdge() private méthode

private INTERNAL_CALL_FindClosestEdge ( Vector3 &sourcePosition, NavMeshHit &hit, int areaMask ) : bool
sourcePosition Vector3
hit NavMeshHit
areaMask int
Résultat bool
        private static extern bool INTERNAL_CALL_FindClosestEdge(ref Vector3 sourcePosition, out NavMeshHit hit, int areaMask);
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

Exemple #1
0
 public static bool FindClosestEdge(Vector3 sourcePosition, out NavMeshHit hit, int areaMask)
 {
     return(NavMesh.INTERNAL_CALL_FindClosestEdge(ref sourcePosition, out hit, areaMask));
 }