Fix y-axis rotation reversed
This commit is contained in:
parent
5aa83372b5
commit
1a522befd0
@ -23,10 +23,15 @@ def blankRotationTable():
|
|||||||
class BlockRotations(object):
|
class BlockRotations(object):
|
||||||
mappings = {
|
mappings = {
|
||||||
'y': {
|
'y': {
|
||||||
'north': 'east',
|
'north': 'west',
|
||||||
'east': 'south',
|
'west': 'south',
|
||||||
'south': 'west',
|
'south': 'east',
|
||||||
'west': 'north',
|
'east': 'north',
|
||||||
|
'down_x': 'down_z',
|
||||||
|
'down_z': 'down_x',
|
||||||
|
'up_x': 'up_z',
|
||||||
|
'up_z': 'up_x',
|
||||||
|
|
||||||
},
|
},
|
||||||
'x': {
|
'x': {
|
||||||
'up': 'south',
|
'up': 'south',
|
||||||
@ -59,15 +64,15 @@ class BlockRotations(object):
|
|||||||
}
|
}
|
||||||
|
|
||||||
railShapes = {
|
railShapes = {
|
||||||
'ascending_north': 'ascending_east',
|
'ascending_north': 'ascending_west',
|
||||||
'ascending_east': 'ascending_south',
|
'ascending_west': 'ascending_south',
|
||||||
'ascending_south': 'ascending_west',
|
'ascending_south': 'ascending_east',
|
||||||
'ascending_west': 'ascending_north',
|
'ascending_east': 'ascending_north',
|
||||||
'east_west': 'north_south',
|
'east_west': 'north_south',
|
||||||
'north_east': 'south_east',
|
'north_east': 'north_west',
|
||||||
'south_east': 'south_west',
|
'north_west': 'south_west',
|
||||||
'south_west': 'north_west',
|
'south_west': 'south_east',
|
||||||
'north_west': 'north_east',
|
'south_east': 'north_east',
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user