INTERNAL_CALL_Raycast() private method

private INTERNAL_CALL_Raycast ( NavMeshAgent self, Vector3 &targetPosition, NavMeshHit &hit ) : bool
self NavMeshAgent
targetPosition Vector3
hit NavMeshHit
return bool
コード例 #1
0
 public bool Raycast(Vector3 targetPosition, out NavMeshHit hit)
 {
     return(NavMeshAgent.INTERNAL_CALL_Raycast(this, ref targetPosition, out hit));
 }