UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

18 lines (16 loc) 379 B
/** * A stepped interpolation scheme. * * @category Animation */ const INTERPOLATION_STEP = 0; /** * A linear interpolation scheme. * * @category Animation */ const INTERPOLATION_LINEAR = 1; /** * A cubic spline interpolation scheme. * * @category Animation */ const INTERPOLATION_CUBIC = 2; export { INTERPOLATION_CUBIC, INTERPOLATION_LINEAR, INTERPOLATION_STEP };