AdditiveClipBlend QML Type

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

Import Statement: import Qt3D.Animation 2.2
Since: Qt 5.9
Instantiates: QAdditiveClipBlend

Properties

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 BlendedClipAnimator.

Property Documentation

additiveClip : AbstractClipBlendNode

This property holds the additive clip to be blended with the baseClip. The amount of blending is controlled by the additiveFactor property.


additiveFactor : real

Specifies the blending factor, typically between 0 and 1, to control the blending of two animation clips.


This property holds the base animation clip. When the additiveFactor is zero the baseClip will also be the resulting clip of this blend node.


© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.