Files
avz-site/node_modules/three-stdlib/webxr/XRHandMeshModel.d.ts
T
2026-05-30 19:59:39 -03:00

10 lines
326 B
TypeScript

import { Object3D } from 'three';
declare class XRHandMeshModel {
controller: Object3D;
handModel: Object3D;
bones: Object3D[];
constructor(handModel: Object3D, controller: Object3D, path: string | undefined, handedness: string, customModelPath?: string);
updateMesh(): void;
}
export { XRHandMeshModel };