@pmndrs/xr
Version:
VR/AR for threejs
12 lines (11 loc) • 435 B
TypeScript
import { Object3D } from 'three';
import { XRControllerModelOptions } from '../controller/model.js';
import { XRControllerState } from '../input.js';
/**
* Component for rendering a 3D model for the XRController
* @param state: XRControllerState
* @param options: XRControllerModelOptions
*/
export declare class XRControllerModel extends Object3D {
constructor(state: XRControllerState, options?: XRControllerModelOptions);
}