Fixed some of the easing functions but still not sure with RAT_GIANT doesn't move.

This commit is contained in:
Zed A. Shaw 2025-03-20 04:25:15 -04:00
parent a53f81715d
commit acbf384e2a
3 changed files with 13 additions and 6 deletions

View file

@ -4,7 +4,12 @@
namespace ease {
enum Style {
NONE, SINE, OUT_CIRC, OUT_BOUNCE, IN_OUT_BACK, FUCKFACE
NONE=0,
SINE=1,
OUT_CIRC=2,
OUT_BOUNCE=3,
IN_OUT_BACK=4,
FUCKFACE
};
inline double sine(double x) {