mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
25 lines
382 B
TypeScript
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;
|
|
|
|
}
|