Navigation
API > API/Plugins > API/Plugins/Niagara
References
| Module | Niagara |
| Header | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraComponentPoolMethodEnum.h |
| Include | #include "NiagaraComponentPoolMethodEnum.h" |
Syntax
enum ENCPoolMethod
&123;
None,
AutoRelease,
ManualRelease,
ManualRelease_OnComplete,
FreeInPool,
&125;
Values
| Name | Description |
|---|---|
| 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. |
| ManualRelease_OnComplete | Special entry allowing manual release NCs to be manually released but wait until completion to be returned to the pool. |
| FreeInPool | Special entry that marks a NC as having been returned to the pool. |