@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
15 lines • 597 B
JavaScript
/**
* Enum for the animation key frame interpolation type
*/
export var AnimationKeyInterpolation;
(function (AnimationKeyInterpolation) {
/**
* Use tangents to interpolate between start and end values.
*/
AnimationKeyInterpolation[AnimationKeyInterpolation["NONE"] = 0] = "NONE";
/**
* Do not interpolate between keys and use the start key value only. Tangents are ignored
*/
AnimationKeyInterpolation[AnimationKeyInterpolation["STEP"] = 1] = "STEP";
})(AnimationKeyInterpolation || (AnimationKeyInterpolation = {}));
//# sourceMappingURL=animationKey.js.map