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