@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
13 lines (12 loc) • 447 B
TypeScript
import { CoreWebXRControllerOptions } from '../Common';
export declare enum WebXRVRFeature {
LOCAL_FLOOR = "local-floor",
BOUNDED_FLOOR = "bounded-floor",
HAND_TRACKING = "hand-tracking",
LAYERS = "layers"
}
export declare const WEBXR_VR_FEATURES: WebXRVRFeature[];
export interface CoreWebXRVRControllerOptions extends CoreWebXRControllerOptions {
requiredFeatures: WebXRVRFeature[];
optionalFeatures: WebXRVRFeature[];
}