Navigation
API > API/Runtime > API/Runtime/Engine
Determines what a particle system will do when all of it's emitters become insignificant.
| Name | EParticleSystemInsignificanceReaction |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/ParticleHelper.h |
| Include Path | #include "ParticleHelper.h" |
Syntax
enum EParticleSystemInsignificanceReaction
{
Auto,
Complete,
DisableTick,
UMETA =(Hidden),
UMETA =(Hidden),
}
Values
| Name | Remarks |
|---|---|
| Auto | Looping systems will DisableTick. Non-looping systems will Complete. |
| Complete | The system will be considered complete and will auto destroy if desired etc. |
| DisableTick | The system will simply stop ticking. |
| UMETA | As DisableTick but will also kill all particles. |
| UMETA |