QAnimationGroup

PyQt5.Qt3DAnimation.QAnimationGroup

Inherits from QObject.

Description

A class grouping animations together.

QAnimationGroup class is used to group multiple animations so that they can act as one animation. The position set to the group is also set to all animations in a group. The duration is the maximum of the individual animations. The animations can be any supported animation type and do not have to have the same name.

Methods

__init__(parent: QObject = None)

Constructs an QAnimationGroup with parent.


addAnimation(QAbstractAnimation)

Adds new animation to the group.


animationList() → List[QAbstractAnimation]

Returns the list of animations in the group.


duration() → float

TODO


name() → str

See also

setName().


position() → float

See also

setPosition().


removeAnimation(QAbstractAnimation)

Removes animation from the group.


setAnimations(Iterable[QAbstractAnimation])

Sets the animations to the group. Old animations are removed.


setName(str)

See also

name().


setPosition(float)

See also

position().

Signals

durationChanged(float)

TODO


nameChanged(str)

TODO


positionChanged(float)

TODO