Navigation
API > API/Runtime > API/Runtime/Navmesh > API/Runtime/Navmesh/Recast
References
| Module | Navmesh |
| Header | /Engine/Source/Runtime/Navmesh/Public/Recast/RecastAlloc.h |
| Include | #include "Recast/RecastAlloc.h" |
Syntax
template<class T>
class rcScopedDelete
Remarks
A simple helper class used to delete an array when it goes out of scope.
This class is rarely if ever used by the end user.
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Constructs an instance with a null pointer. | |||
rcScopedDelete
(
int n |
|||
rcScopedDelete
(
T* p |
Constructs an instance with the specified pointer. |
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | resizeGrow
(
int n |
UE: resize and copy existing memory (n = element count), doesn't destruct elements! |
Operators
| Type | Name | Description | |
|---|---|---|---|
operator T * () |
The root array pointer. |