All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.ModelAnimationLoop.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package cesium

/**
 * Determines if and how a glTF animation is looped.
 * @see Online Documentation
 */

@JsName("\$cesium__ModelAnimationLoop")
external object /* enum */ ModelAnimationLoop {

    /**
     * Play the animation once; do not loop it.
     */
    val NONE: ModelAnimationLoop

    /**
     * Loop the animation playing it from the start immediately after it stops.
     */
    val REPEAT: ModelAnimationLoop

    /**
     * Loop the animation.  First, playing it forward, then in reverse, then forward, and so on.
     */
    val MIRRORED_REPEAT: ModelAnimationLoop
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy