babylon.interpolateValueAction.d.ts 507 B

12345678910111213
  1. declare module BABYLON {
  2. class InterpolateValueAction extends Action {
  3. public propertyPath: string;
  4. public value: any;
  5. public duration: number;
  6. public stopOtherAnimations: boolean;
  7. private _target;
  8. private _property;
  9. constructor(triggerOptions: any, target: any, propertyPath: string, value: any, duration?: number, condition?: Condition, stopOtherAnimations?: boolean);
  10. public _prepare(): void;
  11. public execute(): void;
  12. }
  13. }