UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

7 lines (6 loc) 242 B
import { AnimationCurve } from "../AnimationCurve.js"; import { Keyframe } from "../Keyframe.js"; export const CURVE_EASE_OUT = Object.freeze(AnimationCurve.from([ Keyframe.from(0, 0, Math.PI, 1), Keyframe.from(1, 1, 0, 0), ]))