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

setAnimationName().


animationType() → AnimationType

TODO


duration() → float

See also

setDuration().


position() → float

See also

setPosition().


setAnimationName(str)

See also

animationName().


setDuration(float)

Sets the duration of the animation.

See also

duration().


setPosition(float)

See also

position().

Signals¶

animationNameChanged(str)

TODO


durationChanged(float)

TODO


positionChanged(float)

TODO