Roof models improved. Conditional recipe tag dependency handling fixed (issue #120).
This commit is contained in:
parent
3ac2f301de
commit
45fed1f374
40 changed files with 400 additions and 343 deletions
|
@ -32,7 +32,6 @@
|
|||
"engineersdecor.config.without_light_sources": "Without lights",
|
||||
"engineersdecor.config.without_mob_chair_sitting": "Without chair mob sitting",
|
||||
"engineersdecor.config.without_panzer_glass": "Without panzer glass",
|
||||
"engineersdecor.config.without_passive_fluid_accumulator": "Without fluid accumulator",
|
||||
"engineersdecor.config.without_poles": "Without poles",
|
||||
"engineersdecor.config.without_rebar_concrete": "Without rebar concrete",
|
||||
"engineersdecor.config.without_recipes": "Without recipes",
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
"engineersdecor.config.without_light_sources": "Без светильников",
|
||||
"engineersdecor.config.without_mob_chair_sitting": "Без стульев для сидения для существ",
|
||||
"engineersdecor.config.without_panzer_glass": "Без бронированного стекла",
|
||||
"engineersdecor.config.without_passive_fluid_accumulator": "Без жидкостного накопителя",
|
||||
"engineersdecor.config.without_poles": "Без столбов",
|
||||
"engineersdecor.config.without_rebar_concrete": "Без железобетона",
|
||||
"engineersdecor.config.without_recipes": "Без рецептов",
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
"engineersdecor.config.without_light_sources": "不要灯",
|
||||
"engineersdecor.config.without_mob_chair_sitting": "椅子不能给其他生物坐",
|
||||
"engineersdecor.config.without_panzer_glass": "不要装甲玻璃",
|
||||
"engineersdecor.config.without_passive_fluid_accumulator": "不要流体积累器",
|
||||
"engineersdecor.config.without_poles": "不要杆",
|
||||
"engineersdecor.config.without_rebar_concrete": "不要强化混凝土",
|
||||
"engineersdecor.config.without_recipes": "不要配方",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
"s": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
|
@ -10,11 +10,11 @@
|
|||
"from": [0, 0, 0],
|
||||
"to": [4, 3.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s"}
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -22,11 +22,11 @@
|
|||
"to": [8, 7.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 8, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [8, 8, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [4, 8, 8, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 8, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 16], "texture": "#s"},
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s"}
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -89,10 +89,10 @@
|
|||
"from": [8, 0, 0],
|
||||
"to": [12, 11.5, 5],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 4.5, 5, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 5], "texture": "#s"},
|
||||
"down": {"uv": [8, 11, 12, 16], "texture": "#s"}
|
||||
"down": {"uv": [8, 11, 12, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -100,7 +100,7 @@
|
|||
"to": [12, 5.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 8]},
|
||||
"faces": {
|
||||
"down": {"uv": [8, 5, 12, 11], "texture": "#s"}
|
||||
"down": {"uv": [8, 5, 12, 11], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -108,10 +108,10 @@
|
|||
"to": [12, 11.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 19]},
|
||||
"faces": {
|
||||
"south": {"uv": [8, 4.5, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [8, 4.5, 12, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [11, 4.5, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 11, 12, 16], "texture": "#s"},
|
||||
"down": {"uv": [8, 0, 12, 5], "texture": "#s"}
|
||||
"down": {"uv": [8, 0, 12, 5], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -119,12 +119,12 @@
|
|||
"to": [16, 15.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s"}
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
"s": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
|
@ -10,11 +10,11 @@
|
|||
"from": [0, 0, 0],
|
||||
"to": [4, 3.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s"}
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -22,22 +22,22 @@
|
|||
"to": [8, 7.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 8, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [8, 8, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [4, 8, 8, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 8, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 16], "texture": "#s"},
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s"}
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 0, 0],
|
||||
"to": [12, 11.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#s"},
|
||||
"south": {"uv": [8, 4, 12, 16], "texture": "#s"},
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [8, 4, 12, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 16], "texture": "#s"},
|
||||
"down": {"uv": [8, 0, 12, 16], "texture": "#s"}
|
||||
"down": {"uv": [8, 0, 12, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -45,12 +45,12 @@
|
|||
"to": [16, 15.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s"}
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
"from": [12, 0, 0],
|
||||
"to": [16, 15.5, 12],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [4, 0.5, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [4, 0.5, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 0.5, 12, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 12], "texture": "#s"},
|
||||
"down": {"uv": [12, 4, 16, 16], "texture": "#s"}
|
||||
"down": {"uv": [12, 4, 16, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -23,11 +23,11 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 16, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [0, 0.5, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 0.5, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 16, 4], "texture": "#s"}
|
||||
"down": {"uv": [0, 0, 16, 4], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -176,9 +176,9 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [8, 4.5, 12, 16], "texture": "#s"},
|
||||
"west": {"uv": [8, 4.5, 12, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 8, 12, 12], "texture": "#s"},
|
||||
"down": {"uv": [0, 4, 12, 8], "texture": "#s"}
|
||||
"down": {"uv": [0, 4, 12, 8], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -187,9 +187,9 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [4, 8.5, 8, 16], "texture": "#s"},
|
||||
"west": {"uv": [4, 8.5, 8, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 4, 8, 8], "texture": "#s"},
|
||||
"down": {"uv": [0, 8, 8, 12], "texture": "#s"}
|
||||
"down": {"uv": [0, 8, 8, 12], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -197,10 +197,10 @@
|
|||
"to": [12, 11.5, 8],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 4.5, 8, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 8], "texture": "#s"},
|
||||
"down": {"uv": [8, 8, 12, 16], "texture": "#s"}
|
||||
"down": {"uv": [8, 8, 12, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -208,10 +208,10 @@
|
|||
"to": [8, 7.5, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s"},
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 8.5, 4, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 4], "texture": "#s"},
|
||||
"down": {"uv": [4, 12, 8, 16], "texture": "#s"}
|
||||
"down": {"uv": [4, 12, 8, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -219,10 +219,10 @@
|
|||
"to": [4, 4, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#s"},
|
||||
"down": {"uv": [0, 12, 4, 16], "texture": "#s"}
|
||||
"down": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
"from": [0, 0, 0],
|
||||
"to": [16, 3.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12.5, 16, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 12.5, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 12.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12.5, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [0, 12.5, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [0, 12.5, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [0, 12.5, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 12.5, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#s"}
|
||||
}
|
||||
|
@ -23,8 +23,8 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 8.5, 12, 12.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 8.5, 12, 12.5], "texture": "#s"},
|
||||
"south": {"uv": [4, 8.5, 16, 12.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 8.5, 12, 12.5], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [4, 8.5, 16, 12.5], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [4, 8.5, 16, 12.5], "texture": "#s"},
|
||||
"up": {"uv": [4, 4, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [4, 0, 16, 12], "texture": "#s"}
|
||||
|
@ -35,8 +35,8 @@
|
|||
"to": [16, 11.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4.5, 8, 8.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 4.5, 8, 8.5], "texture": "#s"},
|
||||
"south": {"uv": [8, 4.5, 16, 8.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 4.5, 8, 8.5], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [8, 4.5, 16, 8.5], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [8, 4.5, 16, 8.5], "texture": "#s"},
|
||||
"up": {"uv": [8, 8, 16, 16], "texture": "#s"}
|
||||
}
|
||||
|
@ -47,8 +47,8 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 4.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 4.5], "texture": "#s"},
|
||||
"south": {"uv": [12, 0.5, 16, 4.5], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 4.5], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 4.5], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 0.5, 16, 4.5], "texture": "#s"},
|
||||
"up": {"uv": [12, 12, 16, 16], "texture": "#s"}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
"s": "engineersdecor:block/roof/dark_shingle_roof"
|
||||
|
@ -9,47 +9,74 @@
|
|||
"from": [0, 0, 0],
|
||||
"to": [4, 3.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s"}
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 0, 0],
|
||||
"to": [8, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 12, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [4, 12, 8, 16], "texture": "#s", "cullface": "south"},
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 4, 0],
|
||||
"to": [8, 7.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 8, 8, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 8, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 16], "texture": "#s"},
|
||||
"down": {"uv": [4, 0, 8, 16], "texture": "#s"}
|
||||
"north": {"uv": [8, 8.5, 12, 12], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [4, 8.5, 8, 12], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 8.5, 16, 12], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 16], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 0, 0],
|
||||
"to": [12, 8, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 8, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [8, 8, 12, 16], "texture": "#s", "cullface": "south"},
|
||||
"down": {"uv": [8, 0, 12, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 8, 0],
|
||||
"to": [12, 11.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#s"},
|
||||
"south": {"uv": [8, 4, 12, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 16], "texture": "#s"},
|
||||
"down": {"uv": [8, 0, 12, 16], "texture": "#s"}
|
||||
"north": {"uv": [4, 4.5, 8, 8], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [8, 4.5, 12, 8], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 4.5, 16, 8], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 16], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 12, 0],
|
||||
"to": [16, 15.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 4], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [0, 0.5, 16, 4], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 4], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 0.5, 16, 4], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 16], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 15.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s"}
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"down": {"uv": [12, 0, 16, 16], "texture": "#s", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"textures": {
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
"s": "engineersdecor:block/roof/dark_shingle_roof"
|
||||
},
|
||||
|
@ -8,8 +8,8 @@
|
|||
"from": [12, 0, 0],
|
||||
"to": [16, 15.5, 12],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [4, 0.5, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [4, 0.5, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 0.5, 12, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 12], "texture": "#s"},
|
||||
|
@ -22,9 +22,9 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 16, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [0, 0.5, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 0.5, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 16, 4], "texture": "#s"}
|
||||
}
|
||||
|
@ -175,7 +175,7 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [8, 4.5, 12, 16], "texture": "#s"},
|
||||
"west": {"uv": [8, 4.5, 12, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 8, 12, 12], "texture": "#s"},
|
||||
"down": {"uv": [0, 4, 12, 8], "texture": "#s"}
|
||||
}
|
||||
|
@ -186,7 +186,7 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [4, 8.5, 8, 16], "texture": "#s"},
|
||||
"west": {"uv": [4, 8.5, 8, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 4, 8, 8], "texture": "#s"},
|
||||
"down": {"uv": [0, 8, 8, 12], "texture": "#s"}
|
||||
}
|
||||
|
@ -196,7 +196,7 @@
|
|||
"to": [12, 11.5, 8],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 4.5, 8, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 8], "texture": "#s"},
|
||||
"down": {"uv": [8, 8, 12, 16], "texture": "#s"}
|
||||
|
@ -207,7 +207,7 @@
|
|||
"to": [8, 7.5, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s"},
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 8.5, 4, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 4], "texture": "#s"},
|
||||
"down": {"uv": [4, 12, 8, 16], "texture": "#s"}
|
||||
|
@ -218,8 +218,8 @@
|
|||
"to": [4, 4, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"west": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#s"},
|
||||
"down": {"uv": [0, 12, 4, 16], "texture": "#s"}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"2": "engineersdecor:block/material/steel_texture",
|
||||
"particle": "engineersdecor:block/roof/dark_shingle_roof",
|
||||
|
@ -11,9 +11,9 @@
|
|||
"from": [0, 0, 0],
|
||||
"to": [4, 3.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s"},
|
||||
"north": {"uv": [12, 12, 16, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [0, 12, 4, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#s", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 4, 16], "texture": "#s"},
|
||||
"down": {"uv": [0, 0, 4, 16], "texture": "#s"}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 8.5, 8, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 8.5, 8, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 8.5, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 12, 8, 16], "texture": "#s"},
|
||||
"down": {"uv": [4, 0, 8, 4], "texture": "#s"}
|
||||
|
@ -35,7 +35,7 @@
|
|||
"to": [8, 7.5, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, -4]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s"},
|
||||
"north": {"uv": [8, 8.5, 12, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [4, 8.5, 8, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 8.5, 4, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 0, 8, 4], "texture": "#s"},
|
||||
|
@ -47,7 +47,7 @@
|
|||
"to": [12, 11.5, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s"},
|
||||
"south": {"uv": [8, 4.5, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [8, 4.5, 12, 16], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 4.5, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 12, 12, 16], "texture": "#s"},
|
||||
"down": {"uv": [8, 0, 12, 4], "texture": "#s"}
|
||||
|
@ -58,7 +58,7 @@
|
|||
"to": [12, 11.5, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -4]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s"},
|
||||
"north": {"uv": [4, 4.5, 8, 16], "texture": "#s", "cullface": "north"},
|
||||
"south": {"uv": [8, 4.5, 12, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 4.5, 4, 16], "texture": "#s"},
|
||||
"up": {"uv": [8, 0, 12, 4], "texture": "#s"},
|
||||
|
@ -67,15 +67,25 @@
|
|||
},
|
||||
{
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [12, 4, 16, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [12, 12, 16, 16], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 12, 0],
|
||||
"to": [16, 15.5, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"south": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 4], "texture": "#s"},
|
||||
"down": {"uv": [12, 12, 16, 16], "texture": "#s"}
|
||||
"north": {"uv": [0, 0.5, 4, 4], "texture": "#s", "cullface": "north"},
|
||||
"east": {"uv": [12, 0.5, 16, 4], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 4], "texture": "#s"},
|
||||
"west": {"uv": [0, 0.5, 4, 4], "texture": "#s"},
|
||||
"up": {"uv": [12, 0, 16, 4], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -83,12 +93,10 @@
|
|||
"to": [16, 4.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 12, 12, 16], "texture": "#s"},
|
||||
"east": {"uv": [4, 12, 12, 16], "texture": "#s"},
|
||||
"south": {"uv": [4, 12, 8, 16], "texture": "#s"},
|
||||
"west": {"uv": [4, 12, 12, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 4, 8, 12], "texture": "#s"},
|
||||
"down": {"uv": [4, 4, 8, 12], "texture": "#s"}
|
||||
"east": {"uv": [4, 11.5, 12, 16], "texture": "#s", "cullface": "east"},
|
||||
"west": {"uv": [4, 11.5, 12, 16], "texture": "#s"},
|
||||
"up": {"uv": [4, 4, 16, 12], "texture": "#s"},
|
||||
"down": {"uv": [4, 4, 16, 12], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -113,7 +121,7 @@
|
|||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 4.25], "texture": "#s"},
|
||||
"east": {"uv": [4, 0.5, 12, 4.25], "texture": "#s"},
|
||||
"east": {"uv": [4, 0.5, 12, 4.25], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 4.25], "texture": "#s"},
|
||||
"west": {"uv": [4, 0.5, 12, 4.25], "texture": "#s"},
|
||||
"up": {"uv": [12, 4, 16, 12], "texture": "#s"},
|
||||
|
@ -122,15 +130,25 @@
|
|||
},
|
||||
{
|
||||
"from": [12, 0, 12],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#s", "cullface": "south"},
|
||||
"down": {"uv": [12, 0, 16, 4], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 12, 12],
|
||||
"to": [16, 15.5, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 16], "texture": "#s"},
|
||||
"south": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"west": {"uv": [12, 0.5, 16, 16], "texture": "#s"},
|
||||
"up": {"uv": [12, 12, 16, 16], "texture": "#s"},
|
||||
"down": {"uv": [12, 0, 16, 4], "texture": "#s"}
|
||||
"north": {"uv": [0, 0.5, 4, 4], "texture": "#s"},
|
||||
"east": {"uv": [0, 0.5, 4, 4], "texture": "#s", "cullface": "east"},
|
||||
"south": {"uv": [12, 0.5, 16, 4], "texture": "#s", "cullface": "south"},
|
||||
"west": {"uv": [12, 0.5, 16, 4], "texture": "#s"},
|
||||
"up": {"uv": [12, 12, 16, 16], "texture": "#s"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -372,7 +390,6 @@
|
|||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 7], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 1, 7], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 1, 7], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 1, 7], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 1, 1], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 1, 1], "texture": "#2"}
|
||||
|
|
|
@ -5,5 +5,6 @@
|
|||
"version": 0,
|
||||
"model": "engineersdecor:manual",
|
||||
"show_progress": false,
|
||||
"show_toasts": false,
|
||||
"landing_text": "Tip in advance: To get a short tooltip help text for a block or device, press the CONTRTOL and SHIFT keys at the same time while hovering. That way you do not need to carry this heavy manual with you all the time. The more detailed descriptions in this book are helpful if the features are new for you, or if you like to read up about background aspects."
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue