main.cesium.ClassificationType.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Whether a classification affects terrain, 3D Tiles or both.
* @see Online Documentation
*/
@JsName("\$cesium__ClassificationType")
external object /* enum */ ClassificationType {
/**
* Only terrain will be classified.
*/
val TERRAIN: ClassificationType
/**
* Only 3D Tiles will be classified.
*/
val CESIUM_3D_TILE: ClassificationType
/**
* Both terrain and 3D Tiles will be classified.
*/
val BOTH: ClassificationType
}