summit/frontend/node_modules/three-stdlib/webxr/XRHandMeshModel.d.ts

10 lines
326 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
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 };