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!

@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,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy