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,
;
}