QVertexBlendAnimation¶

PyQt5.Qt3DAnimation.QVertexBlendAnimation

Inherits from QAbstractAnimation.

Description¶

A class implementing vertex-blend morphing animation.

A QVertexBlendAnimation class implements vertex-blend morphing animation to a target QGeometryRenderer. The QVertexBlendAnimation sets the correct QAttribute from the QMorphTarget to the target QGeometryRenderer::geometry and calculates interpolator for the current position. Unlike with QMorphingAnimation, where the blending is controller with blend weights, the blending occurs between sequential morph targets. The actual blending between the attributes must be implemented in the material. Qt3DAnimation::QMorphPhongMaterial implements material with morphing support for phong lighting model. The blending happens between 2 attributes - ‘base’ and ‘target’. The names for the base and target attributes are taken from the morph target names, where the base attribute retains the name it already has and the target attribute name gets ‘Target’ appended to the name. The interpolator can be set as a QParameter to the used material. All morph targets in the animation should contain the attributes with same names as those in the base geometry.

Methods¶

__init__(parent: QObject = None)

Construct a new QVertexBlendAnimation with parent.


addMorphTarget(QMorphTarget)

Add new morph target at the end of the animation.


interpolator() → float

TODO


morphTargetList() → List[QMorphTarget]

Return morph target list.


removeMorphTarget(QMorphTarget)

Remove morph target from the animation.


setMorphTargets(Iterable[QMorphTarget])

Set morph targets to animation. Old targets are cleared.


setTarget(QGeometryRenderer)

See also

target().


setTargetName(str)

See also

targetName().


setTargetPositions(Iterable[float])

See also

targetPositions().


target() → QGeometryRenderer

See also

setTarget().


targetName() → str

See also

setTargetName().


targetPositions() → List[float]

Signals¶

interpolatorChanged(float)

TODO


targetChanged(QGeometryRenderer)

TODO


targetNameChanged(str)

TODO


targetPositionsChanged(Iterable[float])

TODO