ba0e5364bb
Moved a lot of things around, fixed a lot of bugs, made the animations and sounds public. Special thanks to CuckyDev for helping me track down all the small problems that were lingering, and for fixing a major issue with the simulation rate. There's still some stuff to fix and improve, but now this should be more portable and useable by the wider community! 🎉
Co-Authored-By: Regan Green <cuckydev@gmail.com>
13 lines
164 B
Lua
13 lines
164 B
Lua
--!strict
|
|
|
|
return {
|
|
NONE = 0,
|
|
LANDED = 1,
|
|
HIT_WALL = 2,
|
|
GRABBED_LEDGE = 3,
|
|
GRABBED_CEILING = 4,
|
|
HIT_LAVA_WALL = 6,
|
|
|
|
CHECK_LEDGE_GRAB = 1,
|
|
CHECK_HANG = 2,
|
|
}
|