UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

16 lines 437 B
import { eventLoopDefaults, eventLoopSchema } from "./IEventLoop"; export const joystickSchema = { ...eventLoopSchema, onMove: Function, onMoveStart: Function, onMoveEnd: Function, onPress: Function }; export const joystickDefaults = { ...eventLoopDefaults, onMove: undefined, onMoveStart: undefined, onMoveEnd: undefined, onPress: undefined }; //# sourceMappingURL=IJoystick.js.map