Navigation
API > API/Runtime > API/Runtime/Navmesh > API/Runtime/Navmesh/dtNavMesh
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
dtStatus init
(
const dtNavMeshParams* params |
Initializes the navigation mesh for tiled use. | Detour/DetourNavMesh.h | |
dtStatus init
(
unsigned char* data, |
Initializes the navigation mesh for single tile use. | Detour/DetourNavMesh.h |
init(const dtNavMeshParams *)
Description
Initializes the navigation mesh for tiled use.
| Name | init |
| 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 init
(
const dtNavMeshParams * params
)
The status flags for the operation.
Parameters
| Name | Remarks |
|---|---|
| params | Initialization parameters. |
init(unsigned char *, const int, const int)
Description
Initializes the navigation mesh for single tile use.
| Name | init |
| 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 init
(
unsigned char * data,
const int dataSize,
const int flags
)
The status flags for the operation.
Parameters
| Name | Remarks |
|---|---|
| data | Data of the new tile. (See: dtCreateNavMeshData) |
| dataSize | The data size of the new tile. |
| flags | The tile flags. (See: dtTileFlags) |
See Also
- dtCreateNavMeshData