animationPropertiesOverride.js 667 B

123456789101112131415161718192021
  1. import { Animation } from "../Animations/animation.js";
  2. /**
  3. * Class used to override all child animations of a given target
  4. */
  5. export class AnimationPropertiesOverride {
  6. constructor() {
  7. /**
  8. * Gets or sets a value indicating if animation blending must be used
  9. */
  10. this.enableBlending = false;
  11. /**
  12. * Gets or sets the blending speed to use when enableBlending is true
  13. */
  14. this.blendingSpeed = 0.01;
  15. /**
  16. * Gets or sets the default loop mode to use
  17. */
  18. this.loopMode = Animation.ANIMATIONLOOPMODE_CYCLE;
  19. }
  20. }
  21. //# sourceMappingURL=animationPropertiesOverride.js.map