GearVRController.d.ts 204 B

12345678910111213
  1. import {
  2. Object3D
  3. } from '../../../../src/Three';
  4. export class GearVRController extends Object3D {
  5. constructor( id: number );
  6. getTouchpadState(): boolean;
  7. getGamepad(): object;
  8. update(): void;
  9. }