Navigation
API > API/Plugins > API/Plugins/Niagara
References
Module | Niagara |
Header | /Engine/Plugins/FX/Niagara/Source/Niagara/Classes/NiagaraEmitter.h |
Include | #include "NiagaraEmitter.h" |
Syntax
enum EParticleAllocationMode
&123;
AutomaticEstimate = 0,
ManualEstimate,
FixedCount,
&125;
Values
Name | Description |
---|---|
AutomaticEstimate | This mode tries to estimate the max particle count at runtime by using previous simulations as reference. |
ManualEstimate | This mode is useful if the particle count can vary wildly at runtime (e.g. due to user parameters) and a lot of reallocations happen. |
FixedCount | This mode defines an upper limit on the number of particles that will be simulated. |