UNPKG

@inweb/viewer-three

Version:

JavaScript library for rendering CAD and BIM files in a browser using Three.js

18 lines (17 loc) 577 B
import { type IDragger } from "@inweb/viewer-core"; import type { Viewer } from "../Viewer"; import { WalkControls } from "../controls/WalkControls"; export declare class WalkDragger implements IDragger { protected viewer: Viewer; controls: WalkControls; private joyStickControls; constructor(viewer: Viewer); dispose(): void; updateControls: () => void; updateControlsCamera: () => void; controlsChange: () => void; walkspeedChange: (event: any) => void; viewerRender: () => void; viewerZoom: () => void; animate: () => void; }