main.cesium.ShadowMode.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Specifies whether the object casts or receives shadows from light sources when
* shadows are enabled.
* @see Online Documentation
*/
@JsName("\$cesium__ShadowMode")
external object /* enum */ ShadowMode {
/**
* The object does not cast or receive shadows.
*/
val DISABLED: ShadowMode
/**
* The object casts and receives shadows.
*/
val ENABLED: ShadowMode
/**
* The object casts shadows only.
*/
val CAST_ONLY: ShadowMode
/**
* The object receives shadows only.
*/
val RECEIVE_ONLY: ShadowMode
}