playcanvas
Version:
PlayCanvas WebGL game engine
21 lines (19 loc) • 427 B
JavaScript
/**
* A stepped interpolation scheme.
*
* @type {number}
* @category Animation
*/ var INTERPOLATION_STEP = 0;
/**
* A linear interpolation scheme.
*
* @type {number}
* @category Animation
*/ var INTERPOLATION_LINEAR = 1;
/**
* A cubic spline interpolation scheme.
*
* @type {number}
* @category Animation
*/ var INTERPOLATION_CUBIC = 2;
export { INTERPOLATION_CUBIC, INTERPOLATION_LINEAR, INTERPOLATION_STEP };