Navigation
API > API/Plugins > API/Plugins/Niagara
| |
|
| Name |
ENCPoolMethod |
| Type |
enum |
| Header File |
/Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraComponentPoolMethodEnum.h |
| Include Path |
#include "NiagaraComponentPoolMethodEnum.h" |
Syntax
enum ENCPoolMethod
{
None,
AutoRelease,
ManualRelease,
UMETA =(Hidden),
UMETA =(Hidden),
}
Values
| Name |
Remarks |
| None |
The component will be created fresh and not allocated from the pool. |
| AutoRelease |
The component is allocated from the pool and will be automatically released back to it. |
| ManualRelease |
NC is allocated from the pool but will NOT be automatically released back to it. |
| UMETA |
Special entry allowing manual release NCs to be manually released but wait until completion to be returned to the pool. |
| UMETA |
Special entry that marks a NC as having been returned to the pool. |