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

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

There is a newer version: 1.90.0-10
Show newest version
// Automatically generated - do not modify!

package cesium

/**
 * Constants to determine how much time advances with each call
 * to [Clock.tick].
 * @see Online Documentation
 */

@JsName("\$cesium__ClockStep")
external object /* enum */ ClockStep {

    /**
     * [Clock.tick] advances the current time by a fixed step,
     * which is the number of seconds specified by [Clock.multiplier].
     */
    val TICK_DEPENDENT: ClockStep

    /**
     * [Clock.tick] advances the current time by the amount of system
     * time elapsed since the previous call multiplied by [Clock.multiplier].
     */
    val SYSTEM_CLOCK_MULTIPLIER: ClockStep

    /**
     * [Clock.tick] sets the clock to the current system time;
     * ignoring all other settings.
     */
    val SYSTEM_CLOCK: ClockStep
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy