unreal.RigVMFunction_AccumulateTransformMul

class unreal.RigVMFunction_AccumulateTransformMul(multiplier: Transform = Ellipsis, initial_value: Transform = Ellipsis, flip_order: bool = False, integrate_delta_time: bool = False, result: Transform = Ellipsis)

Bases: RigVMFunction_AccumulateBase

Multiplies a transform over time over and over again

C++ Source:

  • Plugin: RigVM

  • Module: RigVM

  • File: RigVMFunction_Accumulate.h

Editor Properties: (see get_editor_property/set_editor_property)

  • flip_order (bool): [Read-Write] If True the multiplier will be pre-multiplied, otherwise post-multiplied

  • initial_value (Transform): [Read-Write] The initial value to start at

  • integrate_delta_time (bool): [Read-Write] If True, the multiplier will be scaled depending on the delta time as it is accumulated, making the resulting accumulation less sensitive to varying frame rates.

  • multiplier (Transform): [Read-Write] The multiplier to apply for every iteration (depending on the IntegrateDeltaTime flag)

  • result (Transform): [Read-Write] The resulting accumulated value

property flip_order: bool

[Read-Write] If True the multiplier will be pre-multiplied, otherwise post-multiplied

Type:

(bool)

property initial_value: Transform

[Read-Write] The initial value to start at

Type:

(Transform)

property integrate_delta_time: bool

[Read-Write] If True, the multiplier will be scaled depending on the delta time as it is accumulated, making the resulting accumulation less sensitive to varying frame rates.

Type:

(bool)

property multiplier: Transform

[Read-Write] The multiplier to apply for every iteration (depending on the IntegrateDeltaTime flag)

Type:

(Transform)

property result: Transform

[Read-Only] The resulting accumulated value

Type:

(Transform)