Fixed some of the easing functions but still not sure with RAT_GIANT doesn't move.
This commit is contained in:
parent
a53f81715d
commit
acbf384e2a
3 changed files with 13 additions and 6 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue