main.cesium.BlendOption.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Determines how opaque and translucent parts of billboards, points, and labels are blended with the scene.
* @see Online Documentation
*/
@JsName("\$cesium__BlendOption")
external object /* enum */ BlendOption {
/**
* The billboards, points, or labels in the collection are completely opaque.
*/
val OPAQUE: BlendOption
/**
* The billboards, points, or labels in the collection are completely translucent.
*/
val TRANSLUCENT: BlendOption
/**
* The billboards, points, or labels in the collection are both opaque and translucent.
*/
val OPAQUE_AND_TRANSLUCENT: BlendOption
}