QAbstractAnimation¶
- PyQt5.Qt3DAnimation.QAbstractAnimation
Inherits from QObject.
Inherited by QKeyframeAnimation, QMorphingAnimation, QVertexBlendAnimation.
Description¶
An abstract base class for Qt3D animations.
QAbstractAnimation is an abstract base class for all animations. QAbstractAnimation can not be directly instantiated, but rather through its subclasses. QAbstractAnimation specifies common properties for all Qt3D animations, such as animation name and type, current position and animation duration, while leaving the actual animating for the subclasses.
Enums¶
- AnimationType
This enumeration specifies the type of the animation
Member
Value
Description
KeyframeAnimation 1
Simple keyframe animation implementation for QTransform
MorphingAnimation 2
Blend-shape morphing animation
VertexBlendAnimation 3
Vertex-blend animation
Methods¶
- animationName() → str
See also
- animationType() → AnimationType
TODO
- duration() → float
See also
- position() → float
See also
- setAnimationName(str)
See also
- setDuration(float)
Sets the duration of the animation.
See also
- setPosition(float)
See also