animationPropertiesOverride.d.ts 449 B

1234567891011121314151617
  1. /**
  2. * Class used to override all child animations of a given target
  3. */
  4. export declare class AnimationPropertiesOverride {
  5. /**
  6. * Gets or sets a value indicating if animation blending must be used
  7. */
  8. enableBlending: boolean;
  9. /**
  10. * Gets or sets the blending speed to use when enableBlending is true
  11. */
  12. blendingSpeed: number;
  13. /**
  14. * Gets or sets the default loop mode to use
  15. */
  16. loopMode: number;
  17. }