main.cesium.Cesium3DTilesInspector.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:JsModule("cesium")
@file:Suppress(
"EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)
package cesium
/**
* Inspector widget to aid in debugging 3D Tiles
* @see Online Documentation
*
* @constructor
* @property [container] The DOM element that will contain the widget.
* @param [scene] the Scene instance to use.
* @see Online Documentation
*/
external class Cesium3DTilesInspector(
var container: org.w3c.dom.Element,
scene: Scene,
) {
/**
* Gets the view model.
* @see Online Documentation
*/
var viewModel: Cesium3DTilesInspectorViewModel
/**
* @return true if the object has been destroyed, false otherwise.
* @see Online Documentation
*/
fun isDestroyed(): Boolean
/**
* Destroys the widget. Should be called if permanently
* removing the widget from layout.
* @see Online Documentation
*/
fun destroy()
}