15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
|
|
export interface StandardControlsEventMap {
|
||
|
|
/**
|
||
|
|
* Fires when the camera has been transformed by the controls.
|
||
|
|
*/
|
||
|
|
change: {};
|
||
|
|
/**
|
||
|
|
* Fires when an interaction was initiated.
|
||
|
|
*/
|
||
|
|
start: {};
|
||
|
|
/**
|
||
|
|
* Fires when an interaction has finished.
|
||
|
|
*/
|
||
|
|
end: {};
|
||
|
|
}
|