babylon.animatable.d.ts 509 B

12345678910111213141516171819
  1. /// <reference path="../babylon.d.ts" />
  2. declare module BABYLON {
  3. class _Animatable {
  4. target: Object;
  5. fromFrame: number;
  6. toFrame: number;
  7. loopAnimation: boolean;
  8. animationStartDate: Date;
  9. speedRatio: number;
  10. onAnimationEnd: Function;
  11. constructor(target: Object, from: number, to: number, loop: boolean, speedRatio: number, onAnimationEnd: Function);
  12. animationStarted: boolean;
  13. _animate(delay: number): boolean;
  14. }
  15. }