babylon.tools.d.ts 610 B

1234567891011121314
  1. /// <reference path="../babylon.d.ts" />
  2. declare module BABYLON.Tools {
  3. function QueueNewFrame(func: Function): void;
  4. function RequestFullscreen(element: HTMLElement): void;
  5. function ExitFullscreen(): void;
  6. var BaseUrl: string;
  7. function LoadFile(url: string, callback: Function, progressCallback: Function): void;
  8. function WithinEpsilon(a: number, b: number);
  9. function DeepCopy(source: Object, destination: Object, doNotCopyList: string[], mustCopyList: string[]);
  10. function GetFps(): number;
  11. function GetDeltaTime(): number;
  12. function _MeasureFps(): void;
  13. }