AbstractClipAnimator QML Type

AbstractClipAnimator is the base class for types providing animation playback capabilities. 更多...

导入语句: import Qt3D.Animation 2.9
Since: Qt 5.9
实例化: QAbstractClipAnimator

特性

详细描述

子类化的 AbstractClipAnimator can be aggregated by an Entity to provide animation capabilities. The animator components provide an interface for controlling the animation (e.g. start, stop). Each animator type requires some form of animation data such as an AbstractAnimationClip as well as a ChannelMapper which describes how the channels in the animation clip should be mapped onto the properties of the objects you wish to animate.

The following subclasses are available:

特性文档编制

loops : int

This property holds the number of times the animation should play.

By default, loops is 1: the animation will play through once and then stop.

If set to QAbstractClipAnimator::Infinite, the animation will continuously repeat until it is explicitly stopped.