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