This commit is contained in:
aozhiwei 2022-11-29 15:39:33 +08:00
parent 0830650add
commit a8ecf8e450

View File

@ -157,6 +157,15 @@ void MapInstance::Init()
dtTileRef tile_ref = navmesh_->getTileRefAt(0, 0, 0);
int i = 0;
a8::Vec3 start;
a8::Vec3 end;
a8::Vec3 hit_point;
start.x = 10;
start.y = 10;
start.z = 10;
end = start;
auto a = Raycast(0, start, end, hit_point);
}
#endif
}