animationKey.js 597 B

123456789101112131415
  1. /**
  2. * Enum for the animation key frame interpolation type
  3. */
  4. export var AnimationKeyInterpolation;
  5. (function (AnimationKeyInterpolation) {
  6. /**
  7. * Use tangents to interpolate between start and end values.
  8. */
  9. AnimationKeyInterpolation[AnimationKeyInterpolation["NONE"] = 0] = "NONE";
  10. /**
  11. * Do not interpolate between keys and use the start key value only. Tangents are ignored
  12. */
  13. AnimationKeyInterpolation[AnimationKeyInterpolation["STEP"] = 1] = "STEP";
  14. })(AnimationKeyInterpolation || (AnimationKeyInterpolation = {}));
  15. //# sourceMappingURL=animationKey.js.map