VRButton.d.ts 243 B

1234567891011
  1. import {
  2. WebGLRenderer
  3. } from '../../../src/Three';
  4. export interface WebXROptions {
  5. referenceSpaceType: string;
  6. }
  7. export namespace VRButton {
  8. export function createButton( renderer: WebGLRenderer, options?: WebXROptions ): HTMLElement;
  9. }