playcanvas
Version:
PlayCanvas WebGL game engine
22 lines (21 loc) • 391 B
TypeScript
/**
* A stepped interpolation scheme.
*
* @type {number}
* @category Animation
*/
export const INTERPOLATION_STEP: number;
/**
* A linear interpolation scheme.
*
* @type {number}
* @category Animation
*/
export const INTERPOLATION_LINEAR: number;
/**
* A cubic spline interpolation scheme.
*
* @type {number}
* @category Animation
*/
export const INTERPOLATION_CUBIC: number;