Esempio n. 1
0
 internal bool LoadAStar(List <AStarTile> data)
 {
     mDetour = new AStartDetour();
     mDetour.Load(data);
     return(true);
 }
Esempio n. 2
0
 internal bool LoadNavMesh(byte[] data)
 {
     mDetour = new RecastDetour();
     mDetour.Load(data);
     return(true);
 }