UNPKG

@animech-public/playcanvas

Version:
26 lines (22 loc) 450 B
/** * 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 };