UNPKG

@pmndrs/handle

Version:

framework agnostic expandable handle implementation for threejs

10 lines (9 loc) 409 B
import { Camera } from 'three'; import { HandlesContext } from '../context.js'; import { HandlesProperties } from '../index.js'; import { RegisteredHandle } from '../registered.js'; export declare class FreeRotateHandle extends RegisteredHandle { constructor(context: HandlesContext, tagPrefix?: string); update(camera: Camera): void; bind(config?: HandlesProperties): (() => void) | undefined; }