DeviceOrientationControls.d.ts 321 B

1234567891011121314151617181920212223
  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. }