AddAllOptions

sealed interface AddAllOptions(source)

Properties

Link copied to clipboard

If defined, computes the local animation time for all of the animations.

Link copied to clipboard
abstract var delay: Double?

The delay, in seconds, from startTime to start playing. This will only affect the animation if options.loop is ModelAnimationLoop.NONE. Default value - 0.0

Link copied to clipboard
abstract var loop: ModelAnimationLoop?

Determines if and how the animations are looped. Default value - ModelAnimationLoop.NONE

Link copied to clipboard
abstract var multiplier: Double?

Values greater than 1.0 increase the speed that the animations play relative to the scene clock speed; values less than 1.0 decrease the speed. Default value - 1.0

Link copied to clipboard
abstract var removeOnStop: Boolean?

When true, the animations are removed after they stop playing. This will only affect the animation if options.loop is ModelAnimationLoop.NONE. Default value - false

Link copied to clipboard
abstract var reverse: Boolean?

When true, the animations are played in reverse. Default value - false

Link copied to clipboard
abstract var startTime: JulianDate?

The scene time to start playing the animations. When this is undefined, the animations starts at the next frame.

Link copied to clipboard
abstract var stopTime: JulianDate?

The scene time to stop playing the animations. When this is undefined, the animations are played for its full duration.