This commit is contained in:
Igor Timofeev 2019-01-19 17:56:00 +03:00
parent 9bfcfcc8ae
commit eb14491d68

32
Libraries/Sides.lua Normal file
View File

@ -0,0 +1,32 @@
return {
[0] = "bottom",
[1] = "top",
[2] = "back",
[3] = "front",
[4] = "right",
[5] = "left",
[6] = "unknown",
bottom = 0,
top = 1,
back = 2,
front = 3,
right = 4,
left = 5,
down = 0,
up = 1,
north = 2,
south = 3,
west = 4,
east = 5,
negy = 0,
posy = 1,
negz = 2,
posz = 3,
negx = 4,
posx = 5,
forward = 3
}