QKeyframeAnimation¶
- PyQt5.Qt3DAnimation.QKeyframeAnimation
Inherits from QAbstractAnimation.
Description¶
A class implementing simple keyframe animation to a QTransform.
A QKeyframeAnimation class implements simple keyframe animation that can be used to animate QTransform. The keyframes consists of multiple timed QTransforms, which are interpolated and applied to the target QTransform. QEasingCurve is used between keyframes to control the interpolator. RepeatMode can be set for when the position set to the QKeyframeAnimation is below or above the values defined in the keyframe positions.
Enums¶
- RepeatMode
This enumeration specifies how position values outside keyframe values are handled.
Member
Value
Description
Constant 1
The edge keyframe value is used.
None 0
The animation is not applied to the target transform.
Repeat 2
The animation is repeated.
Methods¶
- __init__(parent: QObject = None)
Constructs an QKeyframeAnimation with parent.
- addKeyframe(QTransform)
Adds new keyframe at the end of the animation. The QTransform can be added to the animation multiple times.
- easing() → QEasingCurve
See also
- endMode() → RepeatMode
See also
- framePositions() → List[float]
See also
- keyframeList() → List[QTransform]
Returns the list of keyframes.
- removeKeyframe(QTransform)
Removes a keyframe from the animation. If the same QTransform is set as keyframe multiple times, all occurrences are removed.
- setEasing(Union[QEasingCurve, Type])
See also
- setEndMode(RepeatMode)
See also
- setFramePositions(Iterable[float])
See also
- setKeyframes(Iterable[QTransform])
Sets the keyframes of the animation. Old keyframes are cleared.
- setStartMode(RepeatMode)
See also
- setTarget(QTransform)
See also
- setTargetName(str)
See also
- startMode() → RepeatMode
See also
- target() → QTransform
See also
- targetName() → str
See also
Signals¶
- easingChanged(Union[QEasingCurve, Type])
TODO
- endModeChanged(RepeatMode)
TODO
- framePositionsChanged(Iterable[float])
TODO
- startModeChanged(RepeatMode)
TODO
- targetChanged(QTransform)
TODO
- targetNameChanged(str)
TODO