Navigation
API > API/Plugins > API/Plugins/Niagara
References
Module | Niagara |
Header | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h |
Include | #include "NiagaraCommon.h" |
Syntax
enum ENiagaraAgeUpdateMode
&123;
TickDeltaTime,
DesiredAge,
DesiredAgeNoSeek,
&125;
Values
Name | Description |
---|---|
TickDeltaTime | Update the age using the delta time supplied to the component tick function. |
DesiredAge | Update the age by seeking to the DesiredAge. To prevent major perf loss, we clamp to MaxClampTime |
DesiredAgeNoSeek | Update the age by tracking changes to the desired age, but when the desired age goes backwards in time, or jumps forwards in time by more than a few steps, the system is reset and simulated forward by a single step. |
Remarks
Defines modes for updating the component's age.