unreal.RigVMFunction_AccumulateVectorAdd¶
- class unreal.RigVMFunction_AccumulateVectorAdd(increment: Vector = Ellipsis, initial_value: Vector = Ellipsis, integrate_delta_time: bool = False, result: Vector = Ellipsis)¶
Bases:
RigVMFunction_AccumulateBaseAdds a vector 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)
increment(Vector): [Read-Write] The value added on every iteration (depending on the IntegrateDeltaTime flag)initial_value(Vector): [Read-Write] The initial value to start atintegrate_delta_time(bool): [Read-Write] If True, the increment will be multiplied by the delta time as it is accumulated, treating it as a rate of change. This is advisable when dealing with variable frame rates.result(Vector): [Read-Write] The resulting accumulated value
- property increment: Vector¶
[Read-Write] The value added on every iteration (depending on the IntegrateDeltaTime flag)
- Type:
(Vector)