DeviceOrientationControls.d.ts 330 B

12345678910111213141516171819202122
  1. import {
  2. Camera
  3. } from '../../../src/Three';
  4. export class DeviceOrientationControls {
  5. constructor(object: Camera);
  6. object: Camera;
  7. // API
  8. alphaOffset: number;
  9. deviceOrientation: any;
  10. enabled: boolean;
  11. screenOrientation: number;
  12. connect(): void;
  13. disconnect(): void;
  14. dispose(): void;
  15. update(): void;
  16. }