| 1122 | } |
| 1123 | |
| 1124 | void NavMesh::buildTile(const U32 &tile) |
| 1125 | { |
| 1126 | PROFILE_SCOPE(NavMesh_buildTile); |
| 1127 | if(tile < mTiles.size()) |
| 1128 | { |
| 1129 | mDirtyTiles.push_back_unique(tile); |
| 1130 | ctx->startTimer(RC_TIMER_TOTAL); |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | void NavMesh::buildLinks() |
| 1135 | { |
nothing calls this directly
no test coverage detected