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

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

// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * Specifies whether the object casts or receives shadows from light sources when
 * shadows are enabled.
 * @see Online Documentation
 */

external enum class ShadowMode {

    /**
     * The object does not cast or receive shadows.
     */
    DISABLED,

    /**
     * The object casts and receives shadows.
     */
    ENABLED,

    /**
     * The object casts shadows only.
     */
    CAST_ONLY,

    /**
     * The object receives shadows only.
     */
    RECEIVE_ONLY,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy