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

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

setEntity().


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

setPosition().


positionOffset() → float

positionScale() → float

See also

setPositionScale().


recursive() → bool

See also

setRecursive().


removeAnimationGroup(QAnimationGroup)

Removes the given animationGroup from the controller.


setActiveAnimationGroup(int)

setAnimationGroups(Iterable[QAnimationGroup])

Sets the animationGroups for the controller. Old groups are cleared.


setEntity(QEntity)

See also

entity().


setPosition(float)

See also

position().


setPositionOffset(float)

See also

positionOffset().


setPositionScale(float)

See also

positionScale().


setRecursive(bool)

See also

recursive().

Signals

activeAnimationGroupChanged(int)

TODO


entityChanged(QEntity)

TODO


positionChanged(float)

TODO


positionOffsetChanged(float)

TODO


positionScaleChanged(float)

TODO


recursiveChanged(bool)

TODO