QAnimationController露
- PyQt5.Qt3DAnimation.QAnimationController
Inherits from QObject.
Description露
A controller class for animations.
QAnimationController class controls the selection and playback of animations. The class can be used to find all animations from QEntity tree and create QAnimationGroup from the animations with the same name. The user can select which animation group is currently controlled with the animation controller by setting the active animation. The animation position is then propagated to that group after scaling and offsetting the provided position value with the positionScale and positionOffset values.
Note: that the animation controller doesn鈥檛 have internal timer, but instead the user is responsible for updating the position property in timely manner.
Methods露
- __init__(parent: QObject = None)
Constructs a new QAnimationController with parent.
- activeAnimationGroup() → int
See also
- addAnimationGroup(QAnimationGroup)
Adds the given animationGroup to the controller.
- animationGroupList() → List[QAnimationGroup]
Returns the list of animation groups the conroller is currently holding.
- entity() → QEntity
See also
- getAnimationIndex(str) → int
Returns the index of the animation with name. Returns -1 if no AnimationGroup with the given name is found.
- getGroup(int) → QAnimationGroup
Returns the AnimationGroup with the given index.
- position() → float
See also
- positionOffset() → float
See also
- positionScale() → float
See also
- recursive() → bool
See also
- removeAnimationGroup(QAnimationGroup)
Removes the given animationGroup from the controller.
- setActiveAnimationGroup(int)
See also
- setAnimationGroups(Iterable[QAnimationGroup])
Sets the animationGroups for the controller. Old groups are cleared.
- setPosition(float)
See also
- setPositionOffset(float)
See also
- setPositionScale(float)
See also
- setRecursive(bool)
See also