DefinitelyTyped/three/three-vrcontrols.d.ts
2017-02-08 10:53:02 +08:00

25 lines
673 B
TypeScript

// Type definitions for three.js (VRControls.js)
// Project: https://github.com/mrdoob/three.js/blob/master/examples/js/controls/VRControls.js
// Definitions by: Toshiya Nakakura <https://github.com/nakakura>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="three" />
/// <reference types="webvr-api" />
declare namespace THREE {
export class VRControls {
constructor(camera: Camera, callback?: (param: string) => void);
/**
* Update VR Instance Tracking
*/
update(): void;
zeroSensor(): void;
scale: number;
setVRDisplay(display: VRDisplay): void;
}
}