1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/node_modules/three/examples/jsm/webxr/XRHandModelFactory.d.ts
2023-12-11 11:59:56 -03:00

25 lines
382 B
TypeScript

import {
Group,
Object3D,
} from '../../../src/Three';
export class XRHandModel extends Object3D {
constructor();
motionController: any;
}
export class XRHandModelFactory {
constructor();
path: string;
createHandModel(
controller: Group,
profile?: 'spheres' | 'boxes' | 'oculus',
options?: { model?: 'lowpoly', primitive?: 'sphere' | 'box' }
): XRHandModel;
}