playcanvas
Version:
PlayCanvas WebGL game engine
19 lines (18 loc) • 322 B
TypeScript
/**
* A stepped interpolation scheme.
*
* @category Animation
*/
export const INTERPOLATION_STEP: 0;
/**
* A linear interpolation scheme.
*
* @category Animation
*/
export const INTERPOLATION_LINEAR: 1;
/**
* A cubic spline interpolation scheme.
*
* @category Animation
*/
export const INTERPOLATION_CUBIC: 2;