Navigation
API > API/Runtime > API/Runtime/Navmesh > API/Runtime/Navmesh/dtNavMesh
Description
Removes the specified tile from the navigation mesh.
This function returns the data for the tile so that, if desired, it can be added back to the navigation mesh at a later point.
| Name | removeTile |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Detour/DetourNavMesh.h |
| Include Path | #include "Detour/DetourNavMesh.h" |
| Source | /Engine/Source/Runtime/Navmesh/Private/Detour/DetourNavMesh.cpp |
dtStatus removeTile
(
dtTileRef ref,
unsigned char ** data,
int * dataSize
)
The status flags for the operation.
Parameters
| Name | Remarks |
|---|---|
| ref | The reference of the tile to remove. |
| data | Data associated with deleted tile. |
| dataSize | Size of the data associated with deleted tile. |