main.cesium.SunLight.kt Maven / Gradle / Ivy
The newest version!
// Automatically generated - do not modify!
@file:JsModule("cesium")
@file:Suppress(
"NON_EXTERNAL_DECLARATION_IN_INAPPROPRIATE_FILE",
)
package cesium
/**
* A directional light source that originates from the Sun.
* @see Online Documentation
*/
external class SunLight : Light {
/**
* The color of the light.
* @see Online Documentation
*/
override var color: Color
/**
* The intensity of the light.
* @see Online Documentation
*/
override var intensity: Double
}
inline fun SunLight(
block: SunLight.() -> Unit,
): SunLight =
SunLight().apply(block)