@animech-public/playcanvas
Version:
PlayCanvas WebGL game engine
26 lines (22 loc) • 450 B
JavaScript
/**
* A stepped interpolation scheme.
*
* @type {number}
* @category Animation
*/
const INTERPOLATION_STEP = 0;
/**
* A linear interpolation scheme.
*
* @type {number}
* @category Animation
*/
const INTERPOLATION_LINEAR = 1;
/**
* A cubic spline interpolation scheme.
*
* @type {number}
* @category Animation
*/
const INTERPOLATION_CUBIC = 2;
export { INTERPOLATION_CUBIC, INTERPOLATION_LINEAR, INTERPOLATION_STEP };