Navigation
API > API/Runtime > API/Runtime/Navmesh > API/Runtime/Navmesh/Detour
References
| Module | Navmesh |
| Header | /Engine/Source/Runtime/Navmesh/Public/Detour/DetourNavMesh.h |
| Include | #include "Detour/DetourNavMesh.h" |
Syntax
struct dtMeshHeader
Remarks
Provides high level information related to a dtMeshTile object.
Variables
| Type | Name | Description | |
|---|---|---|---|
| dtReal[3] | bmax | The maximum bounds of the tile's AABB. [(x, y, z)]. | |
| dtReal[3] | bmin | These should be at the bottom, as they are less often used than the rest of the data. The rest will fit in one cache line. | |
| unsigned short | bvNodeCount | The number of bounding volume nodes. (Zero if bounding volumes are disabled.) | |
| unsigned short | detailMeshCount | The number of sub-meshes in the detail mesh. | |
| unsigned short | detailTriCount | The number of triangles in the detail mesh. | |
| unsigned short | detailVertCount | The number of unique vertices in the detail mesh. (In addition to the polygon vertices.) | |
| unsigned short | layer | The layer of the tile within the dtNavMesh tile grid. (x, y, layer) | |
| unsigned short | maxLinkCount | The number of allocated links. | |
| unsigned short | offMeshBase | The index of the first polygon which is an point type off-mesh connection. | |
| unsigned short | offMeshConCount | The number of point type off-mesh connections. | |
| unsigned short | polyCount | The number of polygons in the tile. | |
| unsigned char | resolution | The resolution index used for the tile. | |
| unsigned short | version | Tile data format version number. | |
| unsigned short | vertCount | The number of vertices in the tile. | |
| int | x | The x-position of the tile within the dtNavMesh tile grid. (x, y, layer) | |
| int | y | The y-position of the tile within the dtNavMesh tile grid. (x, y, layer) |