main.cesium.CameraEventType.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Enumerates the available input for interacting with the camera.
* @see Online Documentation
*/
@JsName("\$cesium__CameraEventType")
external object /* enum */ CameraEventType {
/**
* A left mouse button press followed by moving the mouse and releasing the button.
*/
val LEFT_DRAG: CameraEventType
/**
* A right mouse button press followed by moving the mouse and releasing the button.
*/
val RIGHT_DRAG: CameraEventType
/**
* A middle mouse button press followed by moving the mouse and releasing the button.
*/
val MIDDLE_DRAG: CameraEventType
/**
* Scrolling the middle mouse button.
*/
val WHEEL: CameraEventType
/**
* A two-finger touch on a touch surface.
*/
val PINCH: CameraEventType
}