Ease
pixi-wheels / index / Ease
Type Alias: Ease
type Ease = string | EaseFn;
Defined in: utils/easing.ts:14
An ease, as the name of a built-in curve or a function.
Names follow the GSAP vocabulary so a designer can hand you a string
('power3.out', 'sine.inOut', 'back.out(1.4)'), but nothing here
depends on GSAP: every curve is a plain function, which is what lets the
engine run deterministically under a fake ticker in tests.