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>
18 lines
300 B
Lua
18 lines
300 B
Lua
--!strict
|
|
|
|
return {
|
|
A_BUTTON = 0x8000,
|
|
B_BUTTON = 0x4000,
|
|
L_TRIG = 0x0020,
|
|
R_TRIG = 0x0010,
|
|
Z_TRIG = 0x2000,
|
|
START_BUTTON = 0x1000,
|
|
U_JPAD = 0x0800,
|
|
L_JPAD = 0x0200,
|
|
R_JPAD = 0x0100,
|
|
D_JPAD = 0x0400,
|
|
U_CBUTTONS = 0x0008,
|
|
L_CBUTTONS = 0x0002,
|
|
R_CBUTTONS = 0x0001,
|
|
D_CBUTTONS = 0x0004,
|
|
}
|