Add constants for the 8 main facing values to Lua. Fixes #4490
This commit is contained in:
10
mods/common/lua/facing.lua
Normal file
10
mods/common/lua/facing.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
Facing = { }
|
||||
|
||||
Facing.North = { 0, "Int32" }
|
||||
Facing.NorthWest = { 32, "Int32" }
|
||||
Facing.West = { 64, "Int32" }
|
||||
Facing.SouthWest = { 96, "Int32" }
|
||||
Facing.South = { 128, "Int32" }
|
||||
Facing.SouthEast = { 160, "Int32" }
|
||||
Facing.East = { 192, "Int32" }
|
||||
Facing.NorthEast = { 224, "Int32" }
|
||||
Reference in New Issue
Block a user