UNPKG

mylingo3d

Version:

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

13 lines (12 loc) 509 B
import ICameraBase from "./ICameraBase"; import Defaults from "./utils/Defaults"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface IOrbitCamera extends ICameraBase { targetId: Nullable<string>; enableZoom: boolean; enableFly: boolean; autoRotate: boolean | number; } export declare const orbitCameraSchema: Required<ExtractProps<IOrbitCamera>>; export declare const orbitCameraDefaults: Defaults<IOrbitCamera>;