unreal.NiagaraAgeUpdateMode

class unreal.NiagaraAgeUpdateMode

Bases: EnumBase

Defines modes for updating the component’s age.

C++ Source:

  • Plugin: Niagara

  • Module: Niagara

  • File: NiagaraCommon.h

DESIRED_AGE: NiagaraAgeUpdateMode

Update the age by seeking to the DesiredAge. To prevent major perf loss, we clamp to MaxClampTime

Type:

1

DESIRED_AGE_NO_SEEK: NiagaraAgeUpdateMode

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. This mode is useful for continuous effects controlled by sequencer.

Type:

2

TICK_DELTA_TIME: NiagaraAgeUpdateMode

Update the age using the delta time supplied to the component tick function.

Type:

0