QVertexBlendAnimation#

A class implementing vertex-blend morphing animation. More

Inheritance diagram of PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation

Synopsis#

Properties#

Functions#

Slots#

Signals#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

A QVertexBlendAnimation class implements vertex-blend morphing animation to a target QGeometryRenderer . The QVertexBlendAnimation sets the correct QAttributes from the morph targets to the target 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.

class PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation([parent=None])#
Parameters:

parentPySide6.QtCore.QObject

Construct a new QVertexBlendAnimation with parent.

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property PᅟySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.interpolator: float#

Holds the interpolator between base and target attributes.

Access functions:
property PᅟySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.target: PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer#

Holds the target QGeometryRenderer the morphing animation is applied to.

Access functions:
property PᅟySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetName: str#

Holds the name of the target geometry. This is a convenience property making it easier to match the target geometry to the morphing animation. The name is usually same as the name of the parent entity of the target QGeometryRenderer, but does not have to be.

Access functions:
property PᅟySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetPositions: list of float#

Holds the position values of the morph target. Each position in the list specifies the position of the corresponding morph target with the same index. The values must be in an ascending order. Values can be positive or negative and do not have any predefined unit.

Access functions:
PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.addMorphTarget(target)#
Parameters:

targetPySide6.Qt3DAnimation.Qt3DAnimation.QMorphTarget

Add new morph target at the end of the animation.

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.interpolator()#
Return type:

float

Getter of property interpolator .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.interpolatorChanged(interpolator)#
Parameters:

interpolator – float

Notification signal of property interpolator .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.morphTargetList()#
Return type:

.list of Qt3DAnimation.QMorphTarget

Return morph target list.

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.removeMorphTarget(target)#
Parameters:

targetPySide6.Qt3DAnimation.Qt3DAnimation.QMorphTarget

Remove morph target from the animation.

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.setMorphTargets(targets)#
Parameters:

targets – .list of Qt3DAnimation.QMorphTarget

Set morph targets to animation. Old targets are cleared.

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.setTarget(target)#
Parameters:

targetPySide6.Qt3DRender.Qt3DRender.QGeometryRenderer

See also

target()

Setter of property target .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.setTargetName(name)#
Parameters:

name – str

See also

targetName()

Setter of property targetName .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.setTargetPositions(targetPositions)#
Parameters:

targetPositions – .list of float

Setter of property targetPositions .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.target()#
Return type:

PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer

See also

setTarget()

Getter of property target .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetChanged(target)#
Parameters:

targetPySide6.Qt3DRender.Qt3DRender.QGeometryRenderer

Notification signal of property target .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetName()#
Return type:

str

See also

setTargetName()

Getter of property targetName .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetNameChanged(name)#
Parameters:

name – str

Notification signal of property targetName .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetPositions()#
Return type:

.list of float

Getter of property targetPositions .

PySide6.Qt3DAnimation.Qt3DAnimation.QVertexBlendAnimation.targetPositionsChanged(targetPositions)#
Parameters:

targetPositions – .list of float

Notification signal of property targetPositions .