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
- position() → float
See also
- removeAnimation(QAbstractAnimation)
Removes animation from the group.
- setAnimations(Iterable[QAbstractAnimation])
Sets the animations to the group. Old animations are removed.
- setName(str)
See also
- setPosition(float)
See also