WebVR.d.ts 241 B

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