@phaserjs/phaser
Version:
22 lines (21 loc) • 858 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
import { BezierInterpolation } from "./BezierInterpolation";
import { CatmullRomInterpolation } from "./CatmullRomInterpolation";
import { CubicBezierInterpolation } from "./CubicBezierInterpolation";
import { LinearInterpolation } from "./LinearInterpolation";
import { QuadraticBezierInterpolation } from "./QuadraticBezierInterpolation";
import { SmoothStepInterpolation } from "./SmoothStepInterpolation";
import { SmootherStepInterpolation } from "./SmootherStepInterpolation";
export {
BezierInterpolation,
CatmullRomInterpolation,
CubicBezierInterpolation,
LinearInterpolation,
QuadraticBezierInterpolation,
SmoothStepInterpolation,
SmootherStepInterpolation
};