add vrcontrols definition

This commit is contained in:
Toshiya Nakakura
2015-07-07 14:38:02 +09:00
committed by Toshiya Nakakura
parent 304a251979
commit 17894fdec8
3 changed files with 39 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// 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/borisyankov/DefinitelyTyped
/// <reference path="./three.d.ts" />
declare module THREE {
export class VRControls {
constructor(camera: Camera, callback?: (param: string)=>void);
/**
* Update VR Instance Tracking
*/
update(): void;
zeroSensor(): void;
scale: number;
}
}