main.cesium.ModelAnimationLoop.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* Determines if and how a glTF animation is looped.
* @see Online Documentation
*/
external enum class ModelAnimationLoop {
/**
* Play the animation once; do not loop it.
*/
NONE,
/**
* Loop the animation playing it from the start immediately after it stops.
*/
REPEAT,
/**
* Loop the animation. First, playing it forward, then in reverse, then forward, and so on.
*/
MIRRORED_REPEAT,
;
}