KeyframeAnimation QML Type

A type implementing simple keyframe animation to a Transform. More...

Import Statement: import Qt3D.Animation 2.3
Since: Qt 5.9
Instantiates: QKeyframeAnimation
Inherits:

AbstractAnimation

Properties

Detailed Description

A KeyframeAnimation type implements simple keyframe animation that can be used to animate Transform. The keyframes consists of multiple timed Qt3D.Core::Transforms, which are interpolated and applied to the target Transform. EasingCurve is used between keyframes to control the interpolator. RepeatMode can be set for when the position set to the KeyframeAnimation is less or or greater than the values defined in the keyframe positions.

Property Documentation

easing : EasingCurve

Holds the easing curve of the interpolator between keyframes.


endMode : enumeration

Holds the repeat mode for the position values greater than the last frame position.

  • None
  • Constant
  • Repeat

framePositions : list<real>

Holds the positions of the keyframes. Each position in the list specifies the position of the corresponding keyframe. The values must be in an ascending order. Values can be positive or negative and do not have any predefined unit.


keyframes : list<Transform>

Holds the list of keyframes in the keyframe animation.


startMode : enumeration

Holds the repeat mode for the position values less than the first frame position.

  • None
  • Constant
  • Repeat

target : Transform

Holds the target Transform the animation is applied to.


targetName : string

Holds the name of the target transform. This is a convenience property making it easier to match the target transform to the keyframe animation. The name is usually same as the name of the parent entity of the target transform, but does not have to be.


© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.