Пример #1
0
 /// <summary>
 /// Find the shortest path between to points
 /// </summary>
 /// <returns>The path if exist and null otherwise</returns>
 /// <param name="src">Source position</param>
 /// <param name="dest">Destination position</param>
 public Vector3[] FindPath(Vector3 src, Vector3 dest)
 {
     return(NavigationGraph.FindPath(src, dest));
 }