12345678910111213141516171819202122 |
- let MouseButton = {
- LEFT: 0,
- MIDDLE: 1,
- RIGHT: 2
- }
- let ControlEvents = {
- Move: 'move',
- InteractionDirect: 'interaction.direct',
- InteractionKey: 'interaction.key',
- InteractionGui: 'interaction.gui',
- FlyInDirection: 'fly.direction',
- InputStart: 'input.start',
- Pinch: 'input.pinch',
- Scroll: 'input.scroll',
- AutoPanInterrupt: 'autopan.interrupt',
- AutoPanComplete: 'autopan.complete',
- AutoPanClamped: 'autopan.clamped',
- LongTap: 'longtap'
- }
- export { MouseButton, ControlEvents }
|