separate cardinal directions from up and down

This commit is contained in:
2026-04-25 13:35:34 +02:00
parent 471921c774
commit a591c9da6f
4 changed files with 85 additions and 24 deletions

View File

@@ -1,27 +1,57 @@
{
"variants": {
"facing=north": {
"facing_horiz=north,facing_verti=1": {
"model": "neocomputers:block/screen"
},
"facing=east": {
"facing_horiz=east,facing_verti=1": {
"model": "neocomputers:block/screen",
"y": 90
},
"facing=west": {
"facing_horiz=west,facing_verti=1": {
"model": "neocomputers:block/screen",
"y": -90
},
"facing=south": {
"facing_horiz=south,facing_verti=1": {
"model": "neocomputers:block/screen",
"y": 180
},
"facing=up": {
"facing_horiz=north,facing_verti=0": {
"model": "neocomputers:block/screen",
"x": 90
},
"facing_horiz=east,facing_verti=0": {
"model": "neocomputers:block/screen",
"x": 90,
"y": 90
},
"facing_horiz=west,facing_verti=0": {
"model": "neocomputers:block/screen",
"x": 90,
"y": -90
},
"facing_horiz=south,facing_verti=0": {
"model": "neocomputers:block/screen",
"x": 90,
"y": 180
},
"facing_horiz=north,facing_verti=2": {
"model": "neocomputers:block/screen",
"x": -90
},
"facing=down": {
"facing_horiz=east,facing_verti=2": {
"model": "neocomputers:block/screen",
"x": 90
"x": -90,
"y": 90
},
"facing_horiz=west,facing_verti=2": {
"model": "neocomputers:block/screen",
"x": -90,
"y": -90
},
"facing_horiz=south,facing_verti=2": {
"model": "neocomputers:block/screen",
"x": -90,
"y": 180
}
}
}