Navigation
API > API/Plugins > API/Plugins/Niagara
Defines modes for updating the component's age.
| Name | ENiagaraAgeUpdateMode |
| Type | enum |
| Header File | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h |
| Include Path | #include "NiagaraCommon.h" |
Syntax
enum ENiagaraAgeUpdateMode
{
TickDeltaTime,
DesiredAge,
DesiredAgeNoSeek,
}
Values
| Name | Remarks |
|---|---|
| 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. |