sm64-roblox-liberty-prime/client/Enums/Action/Groups.lua
Max ba0e5364bb Major restructuring and bug fixes.
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>
2023-07-07 22:01:02 -05:00

15 lines
332 B
Lua

--!strict
return {
-- Group Flags
STATIONARY = bit32.lshift(0, 6),
MOVING = bit32.lshift(1, 6),
AIRBORNE = bit32.lshift(2, 6),
SUBMERGED = bit32.lshift(3, 6),
CUTSCENE = bit32.lshift(4, 6),
AUTOMATIC = bit32.lshift(5, 6),
OBJECT = bit32.lshift(6, 6),
-- Mask for capturing these Flags
GROUP_MASK = 0b_000000111000000,
}