ViveController.d.ts 250 B

12345678910111213
  1. import {
  2. Matrix4,
  3. Object3D
  4. } from '../../../src/Three';
  5. export class ViveController extends Object3D {
  6. constructor(id: number);
  7. standingMatrix: Matrix4;
  8. getButtonState(button: string): boolean;
  9. getGamepad(): object;
  10. update(): void;
  11. }