Navigation
API > API/Plugins > API/Plugins/Niagara
| |
|
| Name |
ENiagaraExecutionStateManagement |
| Type |
enum |
| Header File |
/Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraTypes.h |
| Include Path |
#include "NiagaraTypes.h" |
Syntax
enum ENiagaraExecutionStateManagement
{
Awaken,
SleepAndLetParticlesFinish,
SleepAndClearParticles,
KillImmediately,
KillAfterParticlesFinish,
Num,
}
Values
| Name |
Remarks |
| Awaken |
Change the execution state to active (if possible). |
| SleepAndLetParticlesFinish |
Change the execution state to inactivate (if possible) and stop spawning particles. |
| SleepAndClearParticles |
Change the execution state to inactivate clear (if possible), and kill all existing particles. |
| KillImmediately |
Change the execution state to complete (if possible), and kill all existing particles. |
| KillAfterParticlesFinish |
Change the execution state to inactive (if possible), and stop spawning particles. |
| Num |
|