ENiagaraAgeUpdateMode

Defines modes for updating the component's age.

Windows
MacOS
Linux

References

Module

Niagara

Header

/Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h

Include

#include "NiagaraCommon.h"

Syntax

enum ENiagaraAgeUpdateMode
{
    TickDeltaTime,
    DesiredAge,
    DesiredAgeNoSeek,
}

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.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss