C# 클래스 UnityContrib.UnityEngine.NavMeshPathEx

Provides a set of helper methods for working with the T:UnityEngine.NavMeshPath class.
파일 보기 프로젝트 열기: UnityContrib/framework

공개 메소드들

메소드 설명
Distance ( this path, Vector3 start, Vector3 end ) : float

Calculates the distance between the specified start and end using the specified path.

메소드 상세

Distance() 공개 정적인 메소드

Calculates the distance between the specified start and end using the specified path.
public static Distance ( this path, Vector3 start, Vector3 end ) : float
path this /// The path who's distance to calculate. ///
start UnityEngine.Vector3 /// The start of the path. ///
end UnityEngine.Vector3 /// The end of the path. ///
리턴 float