| 321 | } |
| 322 | |
| 323 | void duDebugDrawNavMeshBVTree(duDebugDraw* dd, const dtNavMesh& mesh) |
| 324 | { |
| 325 | if (!dd) return; |
| 326 | |
| 327 | for (int i = 0; i < mesh.getMaxTiles(); ++i) |
| 328 | { |
| 329 | const dtMeshTile* tile = mesh.getTile(i); |
| 330 | if (!tile->header) continue; |
| 331 | drawMeshTileBVTree(dd, tile); |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | static void drawMeshTilePortal(duDebugDraw* dd, const dtMeshTile* tile) |
| 336 | { |
nothing calls this directly
no test coverage detected