UNPKG

mylingo3d

Version:

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

14 lines 318 B
import { eventLoopDefaults, eventLoopSchema } from "./IEventLoop"; export const positionedSchema = { ...eventLoopSchema, x: Number, y: Number, z: Number }; export const positionedDefaults = { ...eventLoopDefaults, x: 0, y: 0, z: 0 }; //# sourceMappingURL=IPositioned.js.map