Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Plugins/FX/Niagara/Source/Niagara/Classes/NiagaraEmitter.h |
Include |
#include "NiagaraEmitter.h" |
enum EParticleAllocationMode
{
AutomaticEstimate = 0,
ManualEstimate,
FixedCount,
}
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. |