Qt3DAnimation.QAdditiveClipBlend

Performs an additive blend of two animation clips based on an additive factor. More

Inheritance diagram of PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend

Synopsis

Functions

Slots

Signals

Detailed Description

QAdditiveClipBlend can be useful to create advanced animation effects based on individual animation clips. For example, if you:

  • set the baseClip property to a normal walk cycle animation clip and

  • set the additiveClip property to a shaking head difference clip,

then adjusting the additiveFactor property will control how much of the additiveClip gets added on to the baseClip . This has he effect that with an additiveFactor of zero, this blend node will yield the original walk cycle clip. With an additiveFactor of 1, it will yield the walk cycle including a shaking head animation.

The blending operation implemented by this class is:

resultClip = baseClip + additiveFactor * additiveClip

There is nothing stopping you from using values for the additiveFacor property outside the 0 to 1 range, but please be aware that the input animation clips may not be authored in such a way for this to make sense.

See also

QBlendedClipAnimator

class PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend([parent=None])
Parameters

parentQNode

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.additiveClip()
Return type

QAbstractClipBlendNode

See also

setAdditiveClip()

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.additiveClipChanged(additiveClip)
Parameters

additiveClipQAbstractClipBlendNode

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.additiveFactor()
Return type

float

See also

setAdditiveFactor()

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.additiveFactorChanged(additiveFactor)
Parameters

additiveFactorfloat

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.baseClip()
Return type

QAbstractClipBlendNode

See also

setBaseClip()

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.baseClipChanged(baseClip)
Parameters

baseClipQAbstractClipBlendNode

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.setAdditiveClip(additiveClip)
Parameters

additiveClipQAbstractClipBlendNode

See also

additiveClip()

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.setAdditiveFactor(additiveFactor)
Parameters

additiveFactorfloat

See also

additiveFactor()

PySide2.Qt3DAnimation.Qt3DAnimation.QAdditiveClipBlend.setBaseClip(baseClip)
Parameters

baseClipQAbstractClipBlendNode

See also

baseClip()