- Pushed surfaces around by fractions of a pixel to cover up misaligned geometry from mc's model rendering
This commit is contained in:
simibubi 2023-05-15 01:12:38 +02:00
parent 03feeb71ef
commit 9c0c058fc0
78 changed files with 680 additions and 641 deletions

View file

@ -249,7 +249,7 @@ public class AllShapes {
BELT_COLLISION_MASK = cuboid(0, 0, 0, 16, 19, 16), BELT_COLLISION_MASK = cuboid(0, 0, 0, 16, 19, 16),
SCHEMATICANNON_SHAPE = shape(1, 0, 1, 15, 8, 15).add(0.5, 8, 0.5, 15.5, 11, 15.5) SCHEMATICANNON_SHAPE = shape(1, 0, 1, 15, 8, 15).add(0.5, 8, 0.5, 15.5, 11, 15.5)
.build(), .build(),
PULLEY_MAGNET = shape(3, 0, 3, 13, 2, 13).add(FOUR_VOXEL_POLE.get(UP)) PULLEY_MAGNET = shape(3, 0, 3, 13, 3, 13).add(FOUR_VOXEL_POLE.get(UP))
.build(), .build(),
SPOUT = shape(1, 2, 1, 15, 14, 15).add(2, 0, 2, 14, 16, 14) SPOUT = shape(1, 2, 1, 15, 14, 15).add(2, 0, 2, 14, 16, 14)
.build(), .build(),

View file

@ -150,7 +150,7 @@ public class SequencedGearshiftScreen extends AbstractSimiScreen {
AllGuiTextures toDraw = AllGuiTextures.SEQUENCER_EMPTY; AllGuiTextures toDraw = AllGuiTextures.SEQUENCER_EMPTY;
int yOffset = toDraw.height * row; int yOffset = toDraw.height * row;
toDraw.render(ms, x, y + 14 + yOffset, this); toDraw.render(ms, x, y + 16 + yOffset, this);
} }
for (int row = 0; row < instructions.capacity(); row++) { for (int row = 0; row < instructions.capacity(); row++) {

View file

@ -47,7 +47,7 @@ public class BeltTunnelInstance extends BlockEntityInstance<BeltTunnelBlockEntit
for (int segment = 0; segment <= 3; segment++) { for (int segment = 0; segment <= 3; segment++) {
float intensity = segment == 3 ? 1.5f : segment + 1; float intensity = segment == 3 ? 1.5f : segment + 1;
float segmentOffset = -3 / 16f * segment; float segmentOffset = -3.05f / 16f * segment + 0.075f / 16f;
FlapData key = model.createInstance(); FlapData key = model.createInstance();

View file

@ -52,6 +52,8 @@ public class BeltTunnelRenderer extends SmartBlockEntityRenderer<BeltTunnelBlock
.rotateY(horizontalAngle) .rotateY(horizontalAngle)
.unCentre(); .unCentre();
ms.translate(0.075f / 16f, 0, 0);
for (int segment = 0; segment <= 3; segment++) { for (int segment = 0; segment <= 3; segment++) {
ms.pushPose(); ms.pushPose();
float intensity = segment == 3 ? 1.5f : segment + 1; float intensity = segment == 3 ? 1.5f : segment + 1;
@ -68,7 +70,7 @@ public class BeltTunnelRenderer extends SmartBlockEntityRenderer<BeltTunnelBlock
.renderInto(ms, vb); .renderInto(ms, vb);
ms.popPose(); ms.popPose();
ms.translate(-3 / 16f, 0, 0); ms.translate(-3.05f / 16f, 0, 0);
} }
ms.popPose(); ms.popPose();
} }

View file

@ -43,7 +43,7 @@ public class FunnelInstance extends BlockEntityInstance<FunnelBlockEntity> imple
for (int segment = 0; segment <= 3; segment++) { for (int segment = 0; segment <= 3; segment++) {
float intensity = segment == 3 ? 1.5f : segment + 1; float intensity = segment == 3 ? 1.5f : segment + 1;
float segmentOffset = -3 / 16f * segment; float segmentOffset = -3.05f / 16f * segment + 0.075f / 16f;
FlapData key = model.createInstance(); FlapData key = model.createInstance();

View file

@ -49,7 +49,7 @@ public class FunnelRenderer extends SmartBlockEntityRenderer<FunnelBlockEntity>
msr.centre() msr.centre()
.rotateY(horizontalAngle) .rotateY(horizontalAngle)
.unCentre(); .unCentre();
ms.translate(0, 0, -be.getFlapOffset()); ms.translate(0.075f, 0, -be.getFlapOffset());
for (int segment = 0; segment <= 3; segment++) { for (int segment = 0; segment <= 3; segment++) {
ms.pushPose(); ms.pushPose();
@ -68,7 +68,7 @@ public class FunnelRenderer extends SmartBlockEntityRenderer<FunnelBlockEntity>
.renderInto(ms, vb); .renderInto(ms, vb);
ms.popPose(); ms.popPose();
ms.translate(-3 / 16f, 0, 0); ms.translate(-3.05f / 16f, 0, 0);
} }
ms.popPose(); ms.popPose();
} }

View file

@ -1,65 +1,66 @@
{ {
"credit": "Made with Blockbench",
"textures": { "textures": {
"particle": "#side",
"gearbox": "#back", "gearbox": "#back",
"particle": "#side",
"bearing_side": "#side" "bearing_side": "#side"
}, },
"elements": [ "elements": [
{ {
"name": "Side", "name": "Side",
"from": [ 0, 0, 0 ], "from": [0, 0, 0],
"to": [ 2, 12, 16 ], "to": [2, 12, 16],
"faces": { "faces": {
"north": { "texture": "#bearing_side", "uv": [ 14, 4, 16, 16 ] }, "north": {"uv": [14, 4, 16, 16], "texture": "#bearing_side"},
"east": { "texture": "#bearing_side", "uv": [ 0, 4, 16, 16 ] }, "east": {"uv": [0, 4, 16, 16], "texture": "#bearing_side"},
"south": { "texture": "#bearing_side", "uv": [ 0, 4, 2, 16 ] }, "south": {"uv": [0, 4, 2, 16], "texture": "#bearing_side"},
"west": { "texture": "#bearing_side", "uv": [ 0, 4, 16, 16 ] }, "west": {"uv": [0, 4, 16, 16], "texture": "#bearing_side"},
"up": { "texture": "#gearbox", "uv": [ 0, 0, 2, 16 ] }, "up": {"uv": [0, 0, 2, 16], "texture": "#gearbox"},
"down": { "texture": "#gearbox", "uv": [ 0, 0, 2, 16 ] } "down": {"uv": [0, 0, 2, 16], "texture": "#gearbox"}
} }
}, },
{ {
"name": "Side", "name": "Side",
"from": [ 14, 0, 0 ], "from": [14, 0, 0],
"to": [ 16, 12, 16 ], "to": [16, 12, 16],
"faces": { "faces": {
"north": { "texture": "#bearing_side", "uv": [ 0, 4, 2, 16 ] }, "north": {"uv": [0, 4, 2, 16], "texture": "#bearing_side"},
"east": { "texture": "#bearing_side", "uv": [ 0, 4, 16, 16 ] }, "east": {"uv": [0, 4, 16, 16], "texture": "#bearing_side"},
"south": { "texture": "#bearing_side", "uv": [ 14, 4, 16, 16 ] }, "south": {"uv": [14, 4, 16, 16], "texture": "#bearing_side"},
"west": { "texture": "#bearing_side", "uv": [ 0, 4, 16, 16 ] }, "west": {"uv": [0, 4, 16, 16], "texture": "#bearing_side"},
"up": { "texture": "#gearbox", "uv": [ 14, 0, 16, 16 ] }, "up": {"uv": [14, 0, 16, 16], "texture": "#gearbox"},
"down": { "texture": "#gearbox", "uv": [ 14, 0, 16, 16 ] } "down": {"uv": [14, 0, 16, 16], "texture": "#gearbox"}
} }
}, },
{ {
"name": "Side", "name": "Side",
"from": [ 2, 0, 0 ], "from": [2, 0, 0],
"to": [ 14, 12, 2 ], "to": [14, 12, 2],
"faces": { "faces": {
"north": { "texture": "#bearing_side", "uv": [ 2, 4, 14, 16 ] }, "north": {"uv": [2, 4, 14, 16], "texture": "#bearing_side"},
"south": { "texture": "#bearing_side", "uv": [ 2, 4, 14, 16 ] }, "south": {"uv": [2, 4, 14, 16], "texture": "#bearing_side"},
"up": { "texture": "#gearbox", "uv": [ 2, 0, 14, 2 ] }, "up": {"uv": [2, 0, 14, 2], "texture": "#gearbox"},
"down": { "texture": "#gearbox", "uv": [ 2, 14, 14, 16 ] } "down": {"uv": [2, 14, 14, 16], "texture": "#gearbox"}
} }
}, },
{ {
"name": "Side", "name": "Side",
"from": [ 2, 0, 14 ], "from": [2, 0, 14],
"to": [ 14, 12, 16 ], "to": [14, 12, 16],
"faces": { "faces": {
"north": { "texture": "#bearing_side", "uv": [ 2, 4, 14, 16 ] }, "north": {"uv": [2, 4, 14, 16], "texture": "#bearing_side"},
"south": { "texture": "#bearing_side", "uv": [ 2, 4, 14, 16 ] }, "south": {"uv": [2, 4, 14, 16], "texture": "#bearing_side"},
"up": { "texture": "#gearbox", "uv": [ 2, 14, 14, 16 ] }, "up": {"uv": [2, 14, 14, 16], "texture": "#gearbox"},
"down": { "texture": "#gearbox", "uv": [ 2, 0, 14, 2 ] } "down": {"uv": [2, 0, 14, 2], "texture": "#gearbox"}
} }
}, },
{ {
"name": "Core", "name": "Core",
"from": [ 2, 1, 2 ], "from": [2, 0.95, 2],
"to": [ 14, 12, 14 ], "to": [14, 12, 14],
"faces": { "faces": {
"up": { "texture": "#gearbox", "uv": [ 2, 2, 14, 14 ] }, "up": {"uv": [2, 2, 14, 14], "texture": "#gearbox"},
"down": { "texture": "#gearbox", "uv": [ 2, 2, 14, 14 ] } "down": {"uv": [2, 2, 14, 14], "texture": "#gearbox"}
} }
} }
] ]

View file

@ -48,7 +48,7 @@
}, },
{ {
"from": [1.95, -3, 6], "from": [1.95, -3, 6],
"to": [14.05, 10, 0], "to": [14.05, 10.05, 0],
"faces": { "faces": {
"east": {"uv": [13, 6, 16, 12.5], "rotation": 180, "texture": "#base"}, "east": {"uv": [13, 6, 16, 12.5], "rotation": 180, "texture": "#base"},
"west": {"uv": [13, 8.5, 16, 16], "texture": "#base"}, "west": {"uv": [13, 8.5, 16, 16], "texture": "#base"},
@ -68,8 +68,8 @@
}, },
{ {
"name": "MidExtension", "name": "MidExtension",
"from": [2, -2, 6], "from": [1.95, -2, 6],
"to": [14, 14, 10], "to": [14.05, 14.05, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 6]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 6]},
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 6], "rotation": 270, "texture": "#base"}, "north": {"uv": [0, 0, 8, 6], "rotation": 270, "texture": "#base"},

View file

@ -73,8 +73,8 @@
}, },
{ {
"name": "Internal", "name": "Internal",
"from": [1.95, -3, 19], "from": [1.9, -3, 19],
"to": [14.05, 10, 13], "to": [14.1, 10.05, 13],
"rotation": {"angle": -22.5, "axis": "x", "origin": [0, -3, 13]}, "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -3, 13]},
"faces": { "faces": {
"east": {"uv": [13, 16, 16, 9.5], "rotation": 180, "texture": "#base"}, "east": {"uv": [13, 16, 16, 9.5], "rotation": 180, "texture": "#base"},

View file

@ -73,8 +73,8 @@
}, },
{ {
"name": "Internal", "name": "Internal",
"from": [1.95, -3, 19], "from": [1.9, -3, 19],
"to": [14.05, 10, 13], "to": [14.1, 10.05, 13],
"rotation": {"angle": -22.5, "axis": "x", "origin": [0, -3, 13]}, "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -3, 13]},
"faces": { "faces": {
"east": {"uv": [13, 6, 16, 12.5], "rotation": 180, "texture": "#base"}, "east": {"uv": [13, 6, 16, 12.5], "rotation": 180, "texture": "#base"},

View file

@ -48,7 +48,7 @@
}, },
{ {
"from": [1.95, -3, 14], "from": [1.95, -3, 14],
"to": [14.05, 10, 8], "to": [14.05, 10.05, 8],
"faces": { "faces": {
"east": {"uv": [13, 16, 16, 9.5], "rotation": 180, "texture": "#base"}, "east": {"uv": [13, 16, 16, 9.5], "rotation": 180, "texture": "#base"},
"west": {"uv": [13, 12.5, 16, 6], "texture": "#base"}, "west": {"uv": [13, 12.5, 16, 6], "texture": "#base"},
@ -93,8 +93,8 @@
} }
}, },
{ {
"from": [1, -2, 14], "from": [0.95, -2, 14],
"to": [15, 15, 15], "to": [15.05, 15.05, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [9, 6, 22]}, "rotation": {"angle": 0, "axis": "y", "origin": [9, 6, 22]},
"faces": { "faces": {
"east": {"uv": [7, 7.5, 7.5, 16], "texture": "#back"}, "east": {"uv": [7, 7.5, 7.5, 16], "texture": "#back"},

View file

@ -6,8 +6,8 @@
"elements": [ "elements": [
{ {
"name": "F4", "name": "F4",
"from": [11, -3, 9], "from": [10.975, -3, 8.95],
"to": [14, 10, 10], "to": [14.025, 10.05, 9.95],
"rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]}, "rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]},
"faces": { "faces": {
"north": {"uv": [6, 8, 7.5, 14.5], "texture": "#4"}, "north": {"uv": [6, 8, 7.5, 14.5], "texture": "#4"},

View file

@ -6,8 +6,8 @@
"elements": [ "elements": [
{ {
"name": "F4", "name": "F4",
"from": [11, -3, 1], "from": [10.975, -3, 0.95],
"to": [14, 10, 2], "to": [14.025, 10.05, 1.95],
"rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]}, "rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]},
"faces": { "faces": {
"north": {"uv": [6, 8, 7.5, 14.5], "texture": "#4"}, "north": {"uv": [6, 8, 7.5, 14.5], "texture": "#4"},

View file

@ -22,8 +22,8 @@
}, },
{ {
"name": "inner X", "name": "inner X",
"from": [0, -5, 14], "from": [0, -5, 14.05],
"to": [16, 16, 2], "to": [16, 16, 1.95],
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"}, "north": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"},
"south": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"} "south": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"}
@ -41,8 +41,8 @@
}, },
{ {
"name": "inner rim", "name": "inner rim",
"from": [0, 10, 0], "from": [0, 10.05, 0],
"to": [16, 12, 16], "to": [16, 12.05, 16],
"faces": { "faces": {
"down": {"uv": [0, 0, 16, 16], "texture": "#frame"} "down": {"uv": [0, 0, 16, 16], "texture": "#frame"}
} }

View file

@ -22,8 +22,8 @@
}, },
{ {
"name": "inner X", "name": "inner X",
"from": [0, -5, 14], "from": [0, -5, 14.05],
"to": [16, 16, 2], "to": [16, 16, 1.95],
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 10.5], "texture": "#direction"}, "north": {"uv": [0, 0, 8, 10.5], "texture": "#direction"},
"south": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"} "south": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"}
@ -31,8 +31,8 @@
}, },
{ {
"name": "inner Z", "name": "inner Z",
"from": [14, -5, 0], "from": [14.05, -5, 0],
"to": [2, 16, 16], "to": [1.95, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 24]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 24]},
"faces": { "faces": {
"east": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"}, "east": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"},
@ -41,8 +41,8 @@
}, },
{ {
"name": "inner rim", "name": "inner rim",
"from": [0, 10, 0], "from": [0, 10.05, 0],
"to": [16, 12, 16], "to": [16, 12.05, 16],
"faces": { "faces": {
"down": {"uv": [0, 0, 16, 16], "texture": "#frame"} "down": {"uv": [0, 0, 16, 16], "texture": "#frame"}
} }

View file

@ -22,8 +22,8 @@
}, },
{ {
"name": "inner X", "name": "inner X",
"from": [0, -5, 14], "from": [0, -5, 14.05],
"to": [16, 16, 2], "to": [16, 16, 1.95],
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"}, "north": {"uv": [0, 0, 8, 10.5], "texture": "#tunnel"},
"south": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"} "south": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"}
@ -31,8 +31,8 @@
}, },
{ {
"name": "inner Z", "name": "inner Z",
"from": [14, -5, 0], "from": [14.05, -5, 0],
"to": [2, 16, 16], "to": [1.95, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 24]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 24]},
"faces": { "faces": {
"east": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"}, "east": {"uv": [0, 5.5, 8, 16], "rotation": 180, "texture": "#direction"},
@ -41,8 +41,8 @@
}, },
{ {
"name": "inner rim", "name": "inner rim",
"from": [0, 10, 0], "from": [0, 10.05, 0],
"to": [16, 12, 16], "to": [16, 12.05, 16],
"faces": { "faces": {
"down": {"uv": [0, 0, 16, 16], "texture": "#frame"} "down": {"uv": [0, 0, 16, 16], "texture": "#frame"}
} }

View file

@ -21,8 +21,8 @@
}, },
{ {
"name": "inner X", "name": "inner X",
"from": [0, -5, 14], "from": [0, -5, 14.05],
"to": [16, 16, 2], "to": [16, 16, 1.95],
"faces": { "faces": {
"north": {"uv": [8, 0, 16, 10.5], "texture": "#tunnel"}, "north": {"uv": [8, 0, 16, 10.5], "texture": "#tunnel"},
"south": {"uv": [8, 0, 16, 10.5], "texture": "#tunnel"} "south": {"uv": [8, 0, 16, 10.5], "texture": "#tunnel"}
@ -40,8 +40,8 @@
}, },
{ {
"name": "inner rim", "name": "inner rim",
"from": [0, 10, 0], "from": [0, 10.05, 0],
"to": [16, 12, 16], "to": [16, 12.05, 16],
"faces": { "faces": {
"down": {"uv": [0, 4, 8, 12], "texture": "#direction"} "down": {"uv": [0, 4, 8, 12], "texture": "#direction"}
} }

View file

@ -42,7 +42,7 @@
}, },
{ {
"from": [2, 5, 7], "from": [2, 5, 7],
"to": [14, 13, 15], "to": [14, 13.05, 15],
"faces": { "faces": {
"north": {"uv": [1, 14, 7, 10.05], "rotation": 180, "texture": "#4"}, "north": {"uv": [1, 14, 7, 10.05], "rotation": 180, "texture": "#4"},
"up": {"uv": [1, 13.5, 7, 9.55], "texture": "#4"}, "up": {"uv": [1, 13.5, 7, 9.55], "texture": "#4"},

View file

@ -75,7 +75,7 @@
}, },
{ {
"from": [2, 5, 7], "from": [2, 5, 7],
"to": [14, 13, 15], "to": [14, 13.05, 15],
"faces": { "faces": {
"north": {"uv": [1, 14, 7, 10], "rotation": 180, "texture": "#4"}, "north": {"uv": [1, 14, 7, 10], "rotation": 180, "texture": "#4"},
"up": {"uv": [1, 13.5, 7, 9.5], "texture": "#4"}, "up": {"uv": [1, 13.5, 7, 9.5], "texture": "#4"},

View file

@ -18,17 +18,17 @@
"to": [16, 16, 2], "to": [16, 16, 2],
"faces": { "faces": {
"north": {"uv": [0, 16, 16, 0], "rotation": 90, "texture": "#6"}, "north": {"uv": [0, 16, 16, 0], "rotation": 90, "texture": "#6"},
"east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#gearbox_top"}, "east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#5"},
"south": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#gearbox_top"}, "south": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#gearbox_top"},
"west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#gearbox_top"}, "west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#andesite_casing_short"},
"up": {"uv": [0, 14, 16, 16], "rotation": 180, "texture": "#andesite_casing_short"}, "up": {"uv": [0, 14, 16, 16], "rotation": 180, "texture": "#andesite_casing_short"},
"down": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"} "down": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [1, 2, 2], "from": [0.95, 2, 2],
"to": [15, 14, 12], "to": [15.05, 14, 12],
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 14], "rotation": 270, "texture": "#gearbox"}, "north": {"uv": [0, 0, 12, 14], "rotation": 270, "texture": "#gearbox"},
"east": {"uv": [2, 4, 14, 14], "rotation": 270, "texture": "#gearbox"}, "east": {"uv": [2, 4, 14, 14], "rotation": 270, "texture": "#gearbox"},
@ -41,9 +41,9 @@
"from": [0, 0, 2], "from": [0, 0, 2],
"to": [16, 2, 12], "to": [16, 2, 12],
"faces": { "faces": {
"east": {"uv": [16, 0, 14, 10], "rotation": 270, "texture": "#gearbox_top"}, "east": {"uv": [0, 4, 2, 14], "rotation": 270, "texture": "#andesite_casing_short"},
"south": {"uv": [0, 0, 16, 2], "texture": "#andesite_casing_short"}, "south": {"uv": [0, 0, 16, 2], "texture": "#andesite_casing_short"},
"west": {"uv": [14, 0, 16, 10], "rotation": 90, "texture": "#gearbox_top"}, "west": {"uv": [14, 4, 16, 14], "rotation": 90, "texture": "#andesite_casing_short"},
"up": {"uv": [0, 0, 16, 10], "rotation": 180, "texture": "#gearbox_top"}, "up": {"uv": [0, 0, 16, 10], "rotation": 180, "texture": "#gearbox_top"},
"down": {"uv": [0, 4, 16, 14], "texture": "#5"} "down": {"uv": [0, 4, 16, 14], "texture": "#5"}
} }
@ -53,9 +53,9 @@
"from": [0, 14, 2], "from": [0, 14, 2],
"to": [16, 16, 12], "to": [16, 16, 12],
"faces": { "faces": {
"east": {"uv": [14, 0, 16, 10], "rotation": 270, "texture": "#gearbox_top"}, "east": {"uv": [14, 4, 16, 14], "rotation": 270, "texture": "#andesite_casing_short"},
"south": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#andesite_casing_short"}, "south": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#andesite_casing_short"},
"west": {"uv": [16, 0, 14, 10], "rotation": 90, "texture": "#gearbox_top"}, "west": {"uv": [0, 4, 2, 14], "rotation": 90, "texture": "#andesite_casing_short"},
"up": {"uv": [0, 4, 16, 14], "rotation": 180, "texture": "#5"}, "up": {"uv": [0, 4, 16, 14], "rotation": 180, "texture": "#5"},
"down": {"uv": [0, 0, 16, 10], "texture": "#gearbox_top"} "down": {"uv": [0, 0, 16, 10], "texture": "#gearbox_top"}
} }

View file

@ -21,14 +21,14 @@
"east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#andesite_casing_short"}, "east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#andesite_casing_short"},
"south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#gearbox_top"}, "south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#gearbox_top"},
"west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#andesite_casing_short"}, "west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#andesite_casing_short"},
"up": {"uv": [0, 14, 16, 16], "rotation": 180, "texture": "#gearbox_top"}, "up": {"uv": [0, 14, 16, 16], "rotation": 180, "texture": "#andesite_casing_short"},
"down": {"uv": [0, 14, 16, 16], "texture": "#gearbox_top"} "down": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [2, 1, 2], "from": [2, 0.95, 2],
"to": [14, 15, 12], "to": [14, 15.05, 12],
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 14], "texture": "#gearbox"}, "north": {"uv": [0, 0, 12, 14], "texture": "#gearbox"},
"south": {"uv": [2, 1, 14, 15], "texture": "#7"}, "south": {"uv": [2, 1, 14, 15], "texture": "#7"},
@ -44,8 +44,8 @@
"east": {"uv": [0, 4, 16, 14], "rotation": 270, "texture": "#5"}, "east": {"uv": [0, 4, 16, 14], "rotation": 270, "texture": "#5"},
"south": {"uv": [0, 0, 16, 2], "rotation": 270, "texture": "#andesite_casing_short"}, "south": {"uv": [0, 0, 16, 2], "rotation": 270, "texture": "#andesite_casing_short"},
"west": {"uv": [0, 0, 16, 10], "rotation": 90, "texture": "#gearbox_top"}, "west": {"uv": [0, 0, 16, 10], "rotation": 90, "texture": "#gearbox_top"},
"up": {"uv": [16, 0, 14, 10], "rotation": 180, "texture": "#gearbox_top"}, "up": {"uv": [0, 4, 2, 14], "rotation": 180, "texture": "#andesite_casing_short"},
"down": {"uv": [14, 0, 16, 10], "texture": "#gearbox_top"} "down": {"uv": [14, 4, 16, 14], "texture": "#andesite_casing_short"}
} }
}, },
{ {
@ -56,8 +56,8 @@
"east": {"uv": [0, 0, 16, 10], "rotation": 270, "texture": "#gearbox_top"}, "east": {"uv": [0, 0, 16, 10], "rotation": 270, "texture": "#gearbox_top"},
"south": {"uv": [0, 0, 16, 2], "rotation": 90, "texture": "#andesite_casing_short"}, "south": {"uv": [0, 0, 16, 2], "rotation": 90, "texture": "#andesite_casing_short"},
"west": {"uv": [0, 4, 16, 14], "rotation": 90, "texture": "#5"}, "west": {"uv": [0, 4, 16, 14], "rotation": 90, "texture": "#5"},
"up": {"uv": [14, 2, 16, 12], "rotation": 180, "texture": "#gearbox_top"}, "up": {"uv": [14, 4, 16, 14], "rotation": 180, "texture": "#andesite_casing_short"},
"down": {"uv": [16, 0, 14, 10], "texture": "#gearbox_top"} "down": {"uv": [0, 4, 2, 14], "texture": "#andesite_casing_short"}
} }
} }
], ],

View file

@ -22,8 +22,8 @@
} }
}, },
{ {
"from": [1, 11, 1], "from": [0.95, 11, 0.95],
"to": [15, 13, 15], "to": [15.05, 13, 15.05],
"rotation": {"angle": 0, "axis": "y", "origin": [9, -2, 9]}, "rotation": {"angle": 0, "axis": "y", "origin": [9, -2, 9]},
"faces": { "faces": {
"north": {"uv": [1, 14, 15, 16], "texture": "#2"}, "north": {"uv": [1, 14, 15, 16], "texture": "#2"},

View file

@ -11,7 +11,7 @@
{ {
"name": "Center", "name": "Center",
"from": [2, 0, 2], "from": [2, 0, 2],
"to": [14, 15, 14], "to": [14, 15.05, 14],
"faces": { "faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#0"}, "up": {"uv": [2, 2, 14, 14], "texture": "#0"},
"down": {"uv": [2, 2, 14, 14], "texture": "#3"} "down": {"uv": [2, 2, 14, 14], "texture": "#3"}

View file

@ -22,8 +22,8 @@
} }
}, },
{ {
"from": [1.9, 16, 1.9], "from": [1.95, 16, 1.95],
"to": [14.1, 0, 14.1], "to": [14.05, 0, 14.05],
"faces": { "faces": {
"north": {"uv": [2, 0, 14, 16], "rotation": 180, "texture": "#fan_side"}, "north": {"uv": [2, 0, 14, 16], "rotation": 180, "texture": "#fan_side"},
"east": {"uv": [2, 0, 14, 16], "rotation": 180, "texture": "#fan_side"}, "east": {"uv": [2, 0, 14, 16], "rotation": 180, "texture": "#fan_side"},
@ -32,16 +32,16 @@
} }
}, },
{ {
"from": [2, 1, 2], "from": [1.95, 0.95, 1.95],
"to": [14, 8, 14], "to": [14.05, 8.05, 14.05],
"faces": { "faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#back"}, "up": {"uv": [2, 2, 14, 14], "texture": "#back"},
"down": {"uv": [2, 2, 14, 14], "texture": "#back"} "down": {"uv": [2, 2, 14, 14], "texture": "#back"}
} }
}, },
{ {
"from": [2, 15, 2], "from": [2, 14.95, 2],
"to": [14, 15, 14], "to": [14, 15.1, 14],
"faces": { "faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#fan_casing"}, "up": {"uv": [2, 2, 14, 14], "texture": "#fan_casing"},
"down": {"uv": [2, 2, 14, 14], "texture": "#fan_casing"} "down": {"uv": [2, 2, 14, 14], "texture": "#fan_casing"}

View file

@ -16,7 +16,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"}, "north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
"east": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "north"}, "east": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "north"},
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"} "south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"}
} }
}, },
@ -26,7 +26,7 @@
"to": [16, 16, 4], "to": [16, 16, 4],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"}, "east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"},
"south": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "east"}, "south": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "east"},
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"} "west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"}
} }
}, },
@ -37,7 +37,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"}, "north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"},
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"}, "south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "south"} "west": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "south"}
} }
}, },
{ {
@ -45,15 +45,15 @@
"from": [0, 4, 12], "from": [0, 4, 12],
"to": [1, 16, 16], "to": [1, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "west"}, "north": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "west"},
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"}, "east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"},
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"} "west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 4, 1], "from": [4, 4, 0.95],
"to": [12, 16, 1], "to": [12, 16, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"}, "north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"},
@ -62,8 +62,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 4], "from": [15.05, 4, 4],
"to": [15, 16, 12], "to": [15.05, 16, 12],
"faces": { "faces": {
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"}, "east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"},
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"} "west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"}
@ -71,8 +71,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 4, 15], "from": [4, 4, 15.05],
"to": [12, 16, 15], "to": [12, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"}, "north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"},
"south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"} "south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"}
@ -80,8 +80,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 4], "from": [0.95, 4, 4],
"to": [1, 16, 12], "to": [0.95, 16, 12],
"faces": { "faces": {
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"}, "east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"},
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"} "west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"}
@ -95,7 +95,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"}, "north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"},
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"}, "south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
"west": {"uv": [3, 0, 4, 12], "texture": "#1", "cullface": "north"} "west": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "north"}
} }
}, },
{ {
@ -103,7 +103,7 @@
"from": [15, 4, 12], "from": [15, 4, 12],
"to": [16, 16, 16], "to": [16, 16, 16],
"faces": { "faces": {
"north": {"uv": [3, 0, 4, 12], "texture": "#1", "cullface": "east"}, "north": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "east"},
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"}, "east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"},
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"} "west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"}
} }
@ -114,7 +114,7 @@
"to": [4, 16, 16], "to": [4, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"}, "north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
"east": {"uv": [3, 0, 4, 12], "texture": "#1", "cullface": "south"}, "east": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "south"},
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"} "south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"}
} }
}, },
@ -124,7 +124,7 @@
"to": [1, 16, 4], "to": [1, 16, 4],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"}, "east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"},
"south": {"uv": [3, 0, 4, 12], "texture": "#1", "cullface": "west"}, "south": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "west"},
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"} "west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"}
} }
}, },

View file

@ -15,14 +15,14 @@
"to": [16, 16, 12], "to": [16, 16, 12],
"faces": { "faces": {
"east": {"uv": [4, 0, 16, 12], "texture": "#1"}, "east": {"uv": [4, 0, 16, 12], "texture": "#1"},
"south": {"uv": [12, 0, 13, 12], "texture": "#1"}, "south": {"uv": [4, 0, 5, 12], "texture": "#1"},
"west": {"uv": [0, 0, 12, 12], "texture": "#1"} "west": {"uv": [0, 0, 12, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 4, 1], "from": [0, 4, 0.95],
"to": [4, 16, 1], "to": [4, 16, 0.95],
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 16], "texture": "#3"}, "north": {"uv": [0, 4, 4, 16], "texture": "#3"},
"south": {"uv": [4, 4, 8, 16], "texture": "#3"} "south": {"uv": [4, 4, 8, 16], "texture": "#3"}
@ -30,8 +30,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 12], "from": [15.05, 4, 12],
"to": [15, 16, 16], "to": [15.05, 16, 16],
"faces": { "faces": {
"east": {"uv": [4, 4, 8, 16], "texture": "#3"}, "east": {"uv": [4, 4, 8, 16], "texture": "#3"},
"west": {"uv": [0, 4, 4, 16], "texture": "#3"} "west": {"uv": [0, 4, 4, 16], "texture": "#3"}
@ -44,7 +44,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 12], "texture": "#1"}, "north": {"uv": [0, 0, 12, 12], "texture": "#1"},
"south": {"uv": [4, 0, 16, 12], "texture": "#1"}, "south": {"uv": [4, 0, 16, 12], "texture": "#1"},
"west": {"uv": [3, 0, 4, 12], "texture": "#1"} "west": {"uv": [11, 0, 12, 12], "texture": "#1"}
} }
}, },
{ {

View file

@ -15,14 +15,14 @@
"to": [12, 16, 1], "to": [12, 16, 1],
"faces": { "faces": {
"north": {"uv": [4, 0, 16, 12], "texture": "#1"}, "north": {"uv": [4, 0, 16, 12], "texture": "#1"},
"east": {"uv": [12, 0, 13, 12], "texture": "#1"}, "east": {"uv": [4, 0, 5, 12], "texture": "#1"},
"south": {"uv": [0, 0, 12, 12], "texture": "#1"} "south": {"uv": [0, 0, 12, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 12], "from": [0.95, 4, 12],
"to": [1, 16, 16], "to": [0.95, 16, 16],
"faces": { "faces": {
"east": {"uv": [4, 4, 8, 16], "texture": "#3"}, "east": {"uv": [4, 4, 8, 16], "texture": "#3"},
"west": {"uv": [0, 4, 4, 16], "texture": "#3"} "west": {"uv": [0, 4, 4, 16], "texture": "#3"}
@ -30,8 +30,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 4, 1], "from": [12, 4, 0.95],
"to": [16, 16, 1], "to": [16, 16, 0.95],
"faces": { "faces": {
"north": {"uv": [4, 4, 8, 16], "texture": "#3"}, "north": {"uv": [4, 4, 8, 16], "texture": "#3"},
"south": {"uv": [0, 4, 4, 16], "texture": "#3"} "south": {"uv": [0, 4, 4, 16], "texture": "#3"}
@ -43,7 +43,7 @@
"to": [1, 16, 12], "to": [1, 16, 12],
"faces": { "faces": {
"east": {"uv": [4, 0, 16, 12], "texture": "#1"}, "east": {"uv": [4, 0, 16, 12], "texture": "#1"},
"south": {"uv": [3, 0, 4, 12], "texture": "#1"}, "south": {"uv": [11, 0, 12, 12], "texture": "#1"},
"west": {"uv": [0, 0, 12, 12], "texture": "#1"} "west": {"uv": [0, 0, 12, 12], "texture": "#1"}
} }
}, },

View file

@ -16,13 +16,13 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 12], "texture": "#1"}, "north": {"uv": [0, 0, 12, 12], "texture": "#1"},
"south": {"uv": [4, 0, 16, 12], "texture": "#1"}, "south": {"uv": [4, 0, 16, 12], "texture": "#1"},
"west": {"uv": [12, 0, 13, 12], "texture": "#1"} "west": {"uv": [4, 0, 5, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 0], "from": [15.05, 4, 0],
"to": [15, 16, 4], "to": [15.05, 16, 4],
"faces": { "faces": {
"east": {"uv": [0, 4, 4, 16], "texture": "#3"}, "east": {"uv": [0, 4, 4, 16], "texture": "#3"},
"west": {"uv": [4, 4, 8, 16], "texture": "#3"} "west": {"uv": [4, 4, 8, 16], "texture": "#3"}
@ -30,8 +30,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 4, 15], "from": [0, 4, 15.05],
"to": [4, 16, 15], "to": [4, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 16], "texture": "#3"}, "north": {"uv": [0, 4, 4, 16], "texture": "#3"},
"south": {"uv": [4, 4, 8, 16], "texture": "#3"} "south": {"uv": [4, 4, 8, 16], "texture": "#3"}
@ -42,7 +42,7 @@
"from": [15, 4, 4], "from": [15, 4, 4],
"to": [16, 16, 16], "to": [16, 16, 16],
"faces": { "faces": {
"north": {"uv": [3, 0, 4, 12], "texture": "#1"}, "north": {"uv": [11, 0, 12, 12], "texture": "#1"},
"east": {"uv": [0, 0, 12, 12], "texture": "#1"}, "east": {"uv": [0, 0, 12, 12], "texture": "#1"},
"west": {"uv": [4, 0, 16, 12], "texture": "#1"} "west": {"uv": [4, 0, 16, 12], "texture": "#1"}
} }

View file

@ -14,15 +14,15 @@
"from": [0, 4, 4], "from": [0, 4, 4],
"to": [1, 16, 16], "to": [1, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 13, 12], "texture": "#1"}, "north": {"uv": [4, 0, 5, 12], "texture": "#1"},
"east": {"uv": [0, 0, 12, 12], "texture": "#1"}, "east": {"uv": [0, 0, 12, 12], "texture": "#1"},
"west": {"uv": [4, 0, 16, 12], "texture": "#1"} "west": {"uv": [4, 0, 16, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 4, 15], "from": [12, 4, 15.05],
"to": [16, 16, 15], "to": [16, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [4, 4, 8, 16], "texture": "#3"}, "north": {"uv": [4, 4, 8, 16], "texture": "#3"},
"south": {"uv": [0, 4, 4, 16], "texture": "#3"} "south": {"uv": [0, 4, 4, 16], "texture": "#3"}
@ -30,8 +30,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 0], "from": [0.95, 4, 0],
"to": [1, 16, 4], "to": [0.95, 16, 4],
"faces": { "faces": {
"east": {"uv": [0, 4, 4, 16], "texture": "#3"}, "east": {"uv": [0, 4, 4, 16], "texture": "#3"},
"west": {"uv": [4, 4, 8, 16], "texture": "#3"} "west": {"uv": [4, 4, 8, 16], "texture": "#3"}
@ -43,7 +43,7 @@
"to": [12, 16, 16], "to": [12, 16, 16],
"faces": { "faces": {
"north": {"uv": [4, 0, 16, 12], "texture": "#1"}, "north": {"uv": [4, 0, 16, 12], "texture": "#1"},
"east": {"uv": [3, 0, 4, 12], "texture": "#1"}, "east": {"uv": [11, 0, 12, 12], "texture": "#1"},
"south": {"uv": [0, 0, 12, 12], "texture": "#1"} "south": {"uv": [0, 0, 12, 12], "texture": "#1"}
} }
}, },

View file

@ -14,7 +14,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"}, "north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "north"}, "east": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "north"},
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"} "south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"}
} }
}, },
@ -24,7 +24,7 @@
"to": [16, 16, 4], "to": [16, 16, 4],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"}, "east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "east"}, "south": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "east"},
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"} "west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}
} }
}, },
@ -35,7 +35,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"}, "north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"},
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"}, "south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "south"} "west": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "south"}
} }
}, },
{ {
@ -43,15 +43,15 @@
"from": [0, 0, 12], "from": [0, 0, 12],
"to": [1, 16, 16], "to": [1, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "west"}, "north": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "west"},
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"}, "east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"},
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"} "west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 0, 1], "from": [4, 0, 0.95],
"to": [12, 16, 1], "to": [12, 16, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"}, "north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"},
@ -60,8 +60,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 4], "from": [15.05, 0, 4],
"to": [15, 16, 12], "to": [15.05, 16, 12],
"faces": { "faces": {
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"}, "east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"},
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"} "west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"}
@ -69,8 +69,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 0, 15], "from": [4, 0, 15.05],
"to": [12, 16, 15], "to": [12, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"}, "north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"},
"south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"} "south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"}
@ -78,8 +78,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 4], "from": [0.95, 0, 4],
"to": [1, 16, 12], "to": [0.95, 16, 12],
"faces": { "faces": {
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"}, "east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"},
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"} "west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"}
@ -93,7 +93,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"}, "north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"},
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"}, "south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
"west": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "north"} "west": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "north"}
} }
}, },
{ {
@ -101,7 +101,7 @@
"from": [15, 0, 12], "from": [15, 0, 12],
"to": [16, 16, 16], "to": [16, 16, 16],
"faces": { "faces": {
"north": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "east"}, "north": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "east"},
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}, "east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"},
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"} "west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"}
} }
@ -112,7 +112,7 @@
"to": [4, 16, 16], "to": [4, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"}, "north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
"east": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "south"}, "east": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "south"},
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"} "south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"}
} }
}, },
@ -122,7 +122,7 @@
"to": [1, 16, 4], "to": [1, 16, 4],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}, "east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"},
"south": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "west"}, "south": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "west"},
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"} "west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"}
} }
} }
@ -131,6 +131,7 @@
{ {
"name": "tank", "name": "tank",
"origin": [8, 8, -23], "origin": [8, 8, -23],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
} }
] ]

View file

@ -13,14 +13,14 @@
"to": [16, 16, 12], "to": [16, 16, 12],
"faces": { "faces": {
"east": {"uv": [4, 0, 16, 16], "texture": "#1"}, "east": {"uv": [4, 0, 16, 16], "texture": "#1"},
"south": {"uv": [12, 0, 13, 16], "texture": "#1"}, "south": {"uv": [4, 0, 5, 16], "texture": "#1"},
"west": {"uv": [0, 0, 12, 16], "texture": "#1"} "west": {"uv": [0, 0, 12, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 0, 1], "from": [0, 0, 0.95],
"to": [4, 16, 1], "to": [4, 16, 0.95],
"faces": { "faces": {
"north": {"uv": [8, 0, 12, 16], "texture": "#3"}, "north": {"uv": [8, 0, 12, 16], "texture": "#3"},
"south": {"uv": [12, 0, 16, 16], "texture": "#3"} "south": {"uv": [12, 0, 16, 16], "texture": "#3"}
@ -28,8 +28,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 12], "from": [15.05, 0, 12],
"to": [15, 16, 16], "to": [15.05, 16, 16],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 16], "texture": "#3"}, "east": {"uv": [12, 0, 16, 16], "texture": "#3"},
"west": {"uv": [8, 0, 12, 16], "texture": "#3"} "west": {"uv": [8, 0, 12, 16], "texture": "#3"}
@ -42,7 +42,7 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 16], "texture": "#1"}, "north": {"uv": [0, 0, 12, 16], "texture": "#1"},
"south": {"uv": [4, 0, 16, 16], "texture": "#1"}, "south": {"uv": [4, 0, 16, 16], "texture": "#1"},
"west": {"uv": [3, 0, 4, 16], "texture": "#1"} "west": {"uv": [11, 0, 12, 16], "texture": "#1"}
} }
} }
], ],
@ -50,6 +50,7 @@
{ {
"name": "tank", "name": "tank",
"origin": [8, 8, -23], "origin": [8, 8, -23],
"color": 0,
"children": [0, 1, 2, 3] "children": [0, 1, 2, 3]
} }
] ]

View file

@ -13,14 +13,14 @@
"to": [12, 16, 1], "to": [12, 16, 1],
"faces": { "faces": {
"north": {"uv": [4, 0, 16, 16], "texture": "#1"}, "north": {"uv": [4, 0, 16, 16], "texture": "#1"},
"east": {"uv": [12, 0, 13, 16], "texture": "#1"}, "east": {"uv": [4, 0, 5, 16], "texture": "#1"},
"south": {"uv": [0, 0, 12, 16], "texture": "#1"} "south": {"uv": [0, 0, 12, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 12], "from": [0.95, 0, 12],
"to": [1, 16, 16], "to": [0.95, 16, 16],
"faces": { "faces": {
"east": {"uv": [12, 0, 16, 16], "texture": "#3"}, "east": {"uv": [12, 0, 16, 16], "texture": "#3"},
"west": {"uv": [8, 0, 12, 16], "texture": "#3"} "west": {"uv": [8, 0, 12, 16], "texture": "#3"}
@ -28,8 +28,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 0, 1], "from": [12, 0, 0.95],
"to": [16, 16, 1], "to": [16, 16, 0.95],
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#3"}, "north": {"uv": [12, 0, 16, 16], "texture": "#3"},
"south": {"uv": [8, 0, 12, 16], "texture": "#3"} "south": {"uv": [8, 0, 12, 16], "texture": "#3"}
@ -41,7 +41,7 @@
"to": [1, 16, 12], "to": [1, 16, 12],
"faces": { "faces": {
"east": {"uv": [4, 0, 16, 16], "texture": "#1"}, "east": {"uv": [4, 0, 16, 16], "texture": "#1"},
"south": {"uv": [3, 0, 4, 16], "texture": "#1"}, "south": {"uv": [11, 0, 12, 16], "texture": "#1"},
"west": {"uv": [0, 0, 12, 16], "texture": "#1"} "west": {"uv": [0, 0, 12, 16], "texture": "#1"}
} }
} }
@ -50,6 +50,7 @@
{ {
"name": "tank", "name": "tank",
"origin": [8, 8, -23], "origin": [8, 8, -23],
"color": 0,
"children": [0, 1, 2, 3] "children": [0, 1, 2, 3]
} }
] ]

View file

@ -14,13 +14,13 @@
"faces": { "faces": {
"north": {"uv": [0, 0, 12, 16], "texture": "#1"}, "north": {"uv": [0, 0, 12, 16], "texture": "#1"},
"south": {"uv": [4, 0, 16, 16], "texture": "#1"}, "south": {"uv": [4, 0, 16, 16], "texture": "#1"},
"west": {"uv": [12, 0, 13, 16], "texture": "#1"} "west": {"uv": [4, 0, 5, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 0], "from": [15.05, 0, 0],
"to": [15, 16, 4], "to": [15.05, 16, 4],
"faces": { "faces": {
"east": {"uv": [8, 0, 12, 16], "texture": "#3"}, "east": {"uv": [8, 0, 12, 16], "texture": "#3"},
"west": {"uv": [12, 0, 16, 16], "texture": "#3"} "west": {"uv": [12, 0, 16, 16], "texture": "#3"}
@ -28,8 +28,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 0, 15], "from": [0, 0, 15.05],
"to": [4, 16, 15], "to": [4, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [8, 0, 12, 16], "texture": "#3"}, "north": {"uv": [8, 0, 12, 16], "texture": "#3"},
"south": {"uv": [12, 0, 16, 16], "texture": "#3"} "south": {"uv": [12, 0, 16, 16], "texture": "#3"}
@ -40,7 +40,7 @@
"from": [15, 0, 4], "from": [15, 0, 4],
"to": [16, 16, 16], "to": [16, 16, 16],
"faces": { "faces": {
"north": {"uv": [3, 0, 4, 16], "texture": "#1"}, "north": {"uv": [11, 0, 12, 16], "texture": "#1"},
"east": {"uv": [0, 0, 12, 16], "texture": "#1"}, "east": {"uv": [0, 0, 12, 16], "texture": "#1"},
"west": {"uv": [4, 0, 16, 16], "texture": "#1"} "west": {"uv": [4, 0, 16, 16], "texture": "#1"}
} }
@ -50,6 +50,7 @@
{ {
"name": "tank", "name": "tank",
"origin": [8, 8, -23], "origin": [8, 8, -23],
"color": 0,
"children": [0, 1, 2, 3] "children": [0, 1, 2, 3]
} }
] ]

View file

@ -12,15 +12,15 @@
"from": [0, 0, 4], "from": [0, 0, 4],
"to": [1, 16, 16], "to": [1, 16, 16],
"faces": { "faces": {
"north": {"uv": [12, 0, 13, 16], "texture": "#1"}, "north": {"uv": [4, 0, 5, 16], "texture": "#1"},
"east": {"uv": [0, 0, 12, 16], "texture": "#1"}, "east": {"uv": [0, 0, 12, 16], "texture": "#1"},
"west": {"uv": [4, 0, 16, 16], "texture": "#1"} "west": {"uv": [4, 0, 16, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 0, 15], "from": [12, 0, 15.05],
"to": [16, 16, 15], "to": [16, 16, 15.05],
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#3"}, "north": {"uv": [12, 0, 16, 16], "texture": "#3"},
"south": {"uv": [8, 0, 12, 16], "texture": "#3"} "south": {"uv": [8, 0, 12, 16], "texture": "#3"}
@ -28,8 +28,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 0], "from": [0.95, 0, 0],
"to": [1, 16, 4], "to": [0.95, 16, 4],
"faces": { "faces": {
"east": {"uv": [8, 0, 12, 16], "texture": "#3"}, "east": {"uv": [8, 0, 12, 16], "texture": "#3"},
"west": {"uv": [12, 0, 16, 16], "texture": "#3"} "west": {"uv": [12, 0, 16, 16], "texture": "#3"}
@ -41,7 +41,7 @@
"to": [12, 16, 16], "to": [12, 16, 16],
"faces": { "faces": {
"north": {"uv": [4, 0, 16, 16], "texture": "#1"}, "north": {"uv": [4, 0, 16, 16], "texture": "#1"},
"east": {"uv": [3, 0, 4, 16], "texture": "#1"}, "east": {"uv": [11, 0, 12, 16], "texture": "#1"},
"south": {"uv": [0, 0, 12, 16], "texture": "#1"} "south": {"uv": [0, 0, 12, 16], "texture": "#1"}
} }
} }
@ -50,6 +50,7 @@
{ {
"name": "tank", "name": "tank",
"origin": [8, 8, -23], "origin": [8, 8, -23],
"color": 0,
"children": [0, 1, 2, 3] "children": [0, 1, 2, 3]
} }
] ]

View file

@ -30,7 +30,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"}, "north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
"east": {"uv": [12, 4, 13, 12], "texture": "#1", "cullface": "north"}, "east": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "north"},
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"} "south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"}
} }
}, },
@ -40,7 +40,7 @@
"to": [16, 12, 4], "to": [16, 12, 4],
"faces": { "faces": {
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"}, "east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"},
"south": {"uv": [12, 4, 13, 12], "texture": "#1", "cullface": "east"}, "south": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "east"},
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"} "west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"}
} }
}, },
@ -51,7 +51,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"}, "north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"},
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"}, "south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 4, 13, 12], "texture": "#1", "cullface": "south"} "west": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "south"}
} }
}, },
{ {
@ -59,15 +59,15 @@
"from": [0, 4, 12], "from": [0, 4, 12],
"to": [1, 12, 16], "to": [1, 12, 16],
"faces": { "faces": {
"north": {"uv": [12, 4, 13, 12], "texture": "#1", "cullface": "west"}, "north": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "west"},
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"}, "east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"},
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"} "west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 4, 1], "from": [4, 4, 0.95],
"to": [12, 12, 1], "to": [12, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"}, "north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"},
@ -76,8 +76,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 4], "from": [15.05, 4, 4],
"to": [15, 12, 12], "to": [15.05, 12, 12],
"faces": { "faces": {
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"}, "east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"},
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"} "west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"}
@ -85,8 +85,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 4, 15], "from": [4, 4, 15.05],
"to": [12, 12, 15], "to": [12, 12, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"}, "north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"},
"south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"} "south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"}
@ -94,8 +94,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 4], "from": [0.95, 4, 4],
"to": [1, 12, 12], "to": [0.95, 12, 12],
"faces": { "faces": {
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"}, "east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"},
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"} "west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"}
@ -109,7 +109,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"}, "north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"},
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"}, "south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
"west": {"uv": [3, 4, 4, 12], "texture": "#1", "cullface": "north"} "west": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "north"}
} }
}, },
{ {
@ -117,7 +117,7 @@
"from": [15, 4, 12], "from": [15, 4, 12],
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [3, 4, 4, 12], "texture": "#1", "cullface": "east"}, "north": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "east"},
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"}, "east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"},
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"} "west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"}
} }
@ -128,7 +128,7 @@
"to": [4, 12, 16], "to": [4, 12, 16],
"faces": { "faces": {
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"}, "north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
"east": {"uv": [3, 4, 4, 12], "texture": "#1", "cullface": "south"}, "east": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "south"},
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"} "south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"}
} }
}, },
@ -138,7 +138,7 @@
"to": [1, 12, 4], "to": [1, 12, 4],
"faces": { "faces": {
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"}, "east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"},
"south": {"uv": [3, 4, 4, 12], "texture": "#1", "cullface": "west"}, "south": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "west"},
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"} "west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"}
} }
}, },

View file

@ -16,14 +16,14 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 4, 16, 12], "texture": "#1"}, "east": {"uv": [4, 4, 16, 12], "texture": "#1"},
"south": {"uv": [12, 4, 13, 12], "texture": "#1"}, "south": {"uv": [4, 4, 5, 12], "texture": "#1"},
"west": {"uv": [0, 4, 12, 12], "texture": "#1"} "west": {"uv": [0, 4, 12, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 4, 1], "from": [0, 4, 0.95],
"to": [4, 12, 1], "to": [4, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 8], "texture": "#5"}, "north": {"uv": [0, 0, 4, 8], "texture": "#5"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 12], "from": [15.05, 4, 12],
"to": [15, 12, 16], "to": [15.05, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 0, 8, 8], "texture": "#5"}, "east": {"uv": [4, 0, 8, 8], "texture": "#5"},
@ -48,7 +48,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 12, 12], "texture": "#1"}, "north": {"uv": [0, 4, 12, 12], "texture": "#1"},
"south": {"uv": [4, 4, 16, 12], "texture": "#1"}, "south": {"uv": [4, 4, 16, 12], "texture": "#1"},
"west": {"uv": [3, 4, 4, 12], "texture": "#1"} "west": {"uv": [11, 4, 12, 12], "texture": "#1"}
} }
}, },
{ {

View file

@ -16,14 +16,14 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 4, 16, 12], "texture": "#1"}, "north": {"uv": [4, 4, 16, 12], "texture": "#1"},
"east": {"uv": [12, 4, 13, 12], "texture": "#1"}, "east": {"uv": [4, 4, 5, 12], "texture": "#1"},
"south": {"uv": [0, 4, 12, 12], "texture": "#1"} "south": {"uv": [0, 4, 12, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 12], "from": [0.95, 4, 12],
"to": [1, 12, 16], "to": [0.95, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 0, 8, 8], "texture": "#5"}, "east": {"uv": [4, 0, 8, 8], "texture": "#5"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 4, 1], "from": [12, 4, 0.95],
"to": [16, 12, 1], "to": [16, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 0, 8, 8], "texture": "#5"}, "north": {"uv": [4, 0, 8, 8], "texture": "#5"},
@ -47,7 +47,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 4, 16, 12], "texture": "#1"}, "east": {"uv": [4, 4, 16, 12], "texture": "#1"},
"south": {"uv": [3, 4, 4, 12], "texture": "#1"}, "south": {"uv": [11, 4, 12, 12], "texture": "#1"},
"west": {"uv": [0, 4, 12, 12], "texture": "#1"} "west": {"uv": [0, 4, 12, 12], "texture": "#1"}
} }
}, },

View file

@ -17,13 +17,13 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 12, 12], "texture": "#1"}, "north": {"uv": [0, 4, 12, 12], "texture": "#1"},
"south": {"uv": [4, 4, 16, 12], "texture": "#1"}, "south": {"uv": [4, 4, 16, 12], "texture": "#1"},
"west": {"uv": [12, 4, 13, 12], "texture": "#1"} "west": {"uv": [4, 4, 5, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 4, 0], "from": [15.05, 4, 0],
"to": [15, 12, 4], "to": [15.05, 12, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [0, 0, 4, 8], "texture": "#5"}, "east": {"uv": [0, 0, 4, 8], "texture": "#5"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 4, 15], "from": [0, 4, 15.05],
"to": [4, 12, 15], "to": [4, 12, 15.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 8], "texture": "#5"}, "north": {"uv": [0, 0, 4, 8], "texture": "#5"},
@ -46,7 +46,7 @@
"to": [16, 12, 16], "to": [16, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [3, 4, 4, 12], "texture": "#1"}, "north": {"uv": [11, 4, 12, 12], "texture": "#1"},
"east": {"uv": [0, 4, 12, 12], "texture": "#1"}, "east": {"uv": [0, 4, 12, 12], "texture": "#1"},
"west": {"uv": [4, 4, 16, 12], "texture": "#1"} "west": {"uv": [4, 4, 16, 12], "texture": "#1"}
} }

View file

@ -15,15 +15,15 @@
"to": [1, 12, 16], "to": [1, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [12, 4, 13, 12], "texture": "#1"}, "north": {"uv": [4, 4, 5, 12], "texture": "#1"},
"east": {"uv": [0, 4, 12, 12], "texture": "#1"}, "east": {"uv": [0, 4, 12, 12], "texture": "#1"},
"west": {"uv": [4, 4, 16, 12], "texture": "#1"} "west": {"uv": [4, 4, 16, 12], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 4, 15], "from": [12, 4, 15.05],
"to": [16, 12, 15], "to": [16, 12, 15.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 0, 8, 8], "texture": "#5"}, "north": {"uv": [4, 0, 8, 8], "texture": "#5"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 4, 0], "from": [0.95, 4, 0],
"to": [1, 12, 4], "to": [0.95, 12, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [0, 0, 4, 8], "texture": "#5"}, "east": {"uv": [0, 0, 4, 8], "texture": "#5"},
@ -47,7 +47,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 4, 16, 12], "texture": "#1"}, "north": {"uv": [4, 4, 16, 12], "texture": "#1"},
"east": {"uv": [3, 4, 4, 12], "texture": "#1"}, "east": {"uv": [11, 4, 12, 12], "texture": "#1"},
"south": {"uv": [0, 4, 12, 12], "texture": "#1"} "south": {"uv": [0, 4, 12, 12], "texture": "#1"}
} }
}, },

View file

@ -30,7 +30,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"}, "north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "north"}, "east": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "north"},
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"} "south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"}
} }
}, },
@ -40,7 +40,7 @@
"to": [16, 12, 4], "to": [16, 12, 4],
"faces": { "faces": {
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"}, "east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "east"}, "south": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "east"},
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"} "west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"}
} }
}, },
@ -51,7 +51,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"}, "north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"},
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"}, "south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "south"} "west": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "south"}
} }
}, },
{ {
@ -59,15 +59,15 @@
"from": [0, 0, 12], "from": [0, 0, 12],
"to": [1, 12, 16], "to": [1, 12, 16],
"faces": { "faces": {
"north": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "west"}, "north": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "west"},
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"}, "east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"},
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"} "west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 0, 1], "from": [4, 0, 0.95],
"to": [12, 12, 1], "to": [12, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"}, "north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"},
@ -76,8 +76,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 4], "from": [15.05, 0, 4],
"to": [15, 12, 12], "to": [15.05, 12, 12],
"faces": { "faces": {
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"}, "east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"},
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"} "west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"}
@ -85,8 +85,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [4, 0, 15], "from": [4, 0, 15.05],
"to": [12, 12, 15], "to": [12, 12, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"}, "north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"},
"south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"} "south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"}
@ -94,8 +94,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 4], "from": [0.95, 0, 4],
"to": [1, 12, 12], "to": [0.95, 12, 12],
"faces": { "faces": {
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"}, "east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"},
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"} "west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"}
@ -109,7 +109,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"}, "north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"},
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"}, "south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
"west": {"uv": [3, 4, 4, 16], "texture": "#1", "cullface": "north"} "west": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "north"}
} }
}, },
{ {
@ -117,7 +117,7 @@
"from": [15, 0, 12], "from": [15, 0, 12],
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [3, 4, 4, 16], "texture": "#1", "cullface": "east"}, "north": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "east"},
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"}, "east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"},
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"} "west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"}
} }
@ -128,7 +128,7 @@
"to": [4, 12, 16], "to": [4, 12, 16],
"faces": { "faces": {
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"}, "north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
"east": {"uv": [3, 4, 4, 16], "texture": "#1", "cullface": "south"}, "east": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "south"},
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"} "south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"}
} }
}, },
@ -138,7 +138,7 @@
"to": [1, 12, 4], "to": [1, 12, 4],
"faces": { "faces": {
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"}, "east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"},
"south": {"uv": [3, 4, 4, 16], "texture": "#1", "cullface": "west"}, "south": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "west"},
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"} "west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"}
} }
} }

View file

@ -16,14 +16,14 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 4, 16, 16], "texture": "#1"}, "east": {"uv": [4, 4, 16, 16], "texture": "#1"},
"south": {"uv": [12, 4, 13, 16], "texture": "#1"}, "south": {"uv": [4, 4, 5, 16], "texture": "#1"},
"west": {"uv": [0, 4, 12, 16], "texture": "#1"} "west": {"uv": [0, 4, 12, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 0, 1], "from": [0, 0, 0.95],
"to": [4, 12, 1], "to": [4, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 12], "texture": "#3"}, "north": {"uv": [0, 0, 4, 12], "texture": "#3"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 12], "from": [15.05, 0, 12],
"to": [15, 12, 16], "to": [15.05, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 0, 8, 12], "texture": "#3"}, "east": {"uv": [4, 0, 8, 12], "texture": "#3"},
@ -48,7 +48,7 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 12, 16], "texture": "#1"}, "north": {"uv": [0, 4, 12, 16], "texture": "#1"},
"south": {"uv": [4, 4, 16, 16], "texture": "#1"}, "south": {"uv": [4, 4, 16, 16], "texture": "#1"},
"west": {"uv": [3, 4, 4, 16], "texture": "#1"} "west": {"uv": [11, 4, 12, 16], "texture": "#1"}
} }
}, },
{ {

View file

@ -16,14 +16,14 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 4, 16, 16], "texture": "#1"}, "north": {"uv": [4, 4, 16, 16], "texture": "#1"},
"east": {"uv": [12, 4, 13, 16], "texture": "#1"}, "east": {"uv": [4, 4, 5, 16], "texture": "#1"},
"south": {"uv": [0, 4, 12, 16], "texture": "#1"} "south": {"uv": [0, 4, 12, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 12], "from": [0.95, 0, 12],
"to": [1, 12, 16], "to": [0.95, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 0, 8, 12], "texture": "#3"}, "east": {"uv": [4, 0, 8, 12], "texture": "#3"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 0, 1], "from": [12, 0, 0.95],
"to": [16, 12, 1], "to": [16, 12, 0.95],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 0, 8, 12], "texture": "#3"}, "north": {"uv": [4, 0, 8, 12], "texture": "#3"},
@ -47,7 +47,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [4, 4, 16, 16], "texture": "#1"}, "east": {"uv": [4, 4, 16, 16], "texture": "#1"},
"south": {"uv": [3, 4, 4, 16], "texture": "#1"}, "south": {"uv": [11, 4, 12, 16], "texture": "#1"},
"west": {"uv": [0, 4, 12, 16], "texture": "#1"} "west": {"uv": [0, 4, 12, 16], "texture": "#1"}
} }
}, },

View file

@ -17,13 +17,13 @@
"faces": { "faces": {
"north": {"uv": [0, 4, 12, 16], "texture": "#1"}, "north": {"uv": [0, 4, 12, 16], "texture": "#1"},
"south": {"uv": [4, 4, 16, 16], "texture": "#1"}, "south": {"uv": [4, 4, 16, 16], "texture": "#1"},
"west": {"uv": [12, 4, 13, 16], "texture": "#1"} "west": {"uv": [4, 4, 5, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [15, 0, 0], "from": [15.05, 0, 0],
"to": [15, 12, 4], "to": [15.05, 12, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [0, 0, 4, 12], "texture": "#3"}, "east": {"uv": [0, 0, 4, 12], "texture": "#3"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [0, 0, 15], "from": [0, 0, 15.05],
"to": [4, 12, 15], "to": [4, 12, 15.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 12], "texture": "#3"}, "north": {"uv": [0, 0, 4, 12], "texture": "#3"},
@ -46,7 +46,7 @@
"to": [16, 12, 16], "to": [16, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [3, 4, 4, 16], "texture": "#1"}, "north": {"uv": [11, 4, 12, 16], "texture": "#1"},
"east": {"uv": [0, 4, 12, 16], "texture": "#1"}, "east": {"uv": [0, 4, 12, 16], "texture": "#1"},
"west": {"uv": [4, 4, 16, 16], "texture": "#1"} "west": {"uv": [4, 4, 16, 16], "texture": "#1"}
} }

View file

@ -15,15 +15,15 @@
"to": [1, 12, 16], "to": [1, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [12, 4, 13, 16], "texture": "#1"}, "north": {"uv": [4, 4, 5, 16], "texture": "#1"},
"east": {"uv": [0, 4, 12, 16], "texture": "#1"}, "east": {"uv": [0, 4, 12, 16], "texture": "#1"},
"west": {"uv": [4, 4, 16, 16], "texture": "#1"} "west": {"uv": [4, 4, 16, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [12, 0, 15], "from": [12, 0, 15.05],
"to": [16, 12, 15], "to": [16, 12, 15.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 0, 8, 12], "texture": "#3"}, "north": {"uv": [4, 0, 8, 12], "texture": "#3"},
@ -32,8 +32,8 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [1, 0, 0], "from": [0.95, 0, 0],
"to": [1, 12, 4], "to": [0.95, 12, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"east": {"uv": [0, 0, 4, 12], "texture": "#3"}, "east": {"uv": [0, 0, 4, 12], "texture": "#3"},
@ -47,7 +47,7 @@
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
"faces": { "faces": {
"north": {"uv": [4, 4, 16, 16], "texture": "#1"}, "north": {"uv": [4, 4, 16, 16], "texture": "#1"},
"east": {"uv": [3, 4, 4, 16], "texture": "#1"}, "east": {"uv": [11, 4, 12, 16], "texture": "#1"},
"south": {"uv": [0, 4, 12, 16], "texture": "#1"} "south": {"uv": [0, 4, 12, 16], "texture": "#1"}
} }
}, },

View file

@ -73,7 +73,7 @@
}, },
{ {
"from": [1.9, 0, 18], "from": [1.9, 0, 18],
"to": [14.1, 10, 12], "to": [14.1, 10.05, 12],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 12]}, "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 12]},
"faces": { "faces": {
"east": {"uv": [13, 6, 16, 11], "rotation": 180, "texture": "#base"}, "east": {"uv": [13, 6, 16, 11], "rotation": 180, "texture": "#base"},

View file

@ -23,33 +23,33 @@
} }
}, },
{ {
"from": [1, 5, 2], "from": [0.95, 5, 2],
"to": [2, 10, 14], "to": [1.95, 10, 14],
"rotation": {"angle": 22.5, "axis": "z", "origin": [2, 10, 8]}, "rotation": {"angle": 22.5, "axis": "z", "origin": [1.95, 10, 8]},
"faces": { "faces": {
"east": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "east": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [14, 5, 2], "from": [14.05, 5, 2],
"to": [15, 10, 14], "to": [15.05, 10, 14],
"rotation": {"angle": -22.5, "axis": "z", "origin": [14, 10, 8]}, "rotation": {"angle": -22.5, "axis": "z", "origin": [14.05, 10, 8]},
"faces": { "faces": {
"west": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "west": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [2, 5, 14], "from": [2, 5, 14.05],
"to": [14, 10, 15], "to": [14, 10, 15.05],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8, 10, 14]}, "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 10, 14.05]},
"faces": { "faces": {
"north": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "north": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [2, 5, 1], "from": [2, 5, 0.95],
"to": [14, 10, 2], "to": [14, 10, 1.95],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 10, 2]}, "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 10, 1.95]},
"faces": { "faces": {
"south": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "south": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }

View file

@ -23,33 +23,33 @@
} }
}, },
{ {
"from": [1, 5, 2], "from": [0.95, 5, 2],
"to": [2, 10, 14], "to": [1.95, 10, 14],
"rotation": {"angle": 22.5, "axis": "z", "origin": [2, 10, 8]}, "rotation": {"angle": 22.5, "axis": "z", "origin": [1.95, 10, 8]},
"faces": { "faces": {
"east": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "east": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [14, 5, 2], "from": [14.05, 5, 2],
"to": [15, 10, 14], "to": [15.05, 10, 14],
"rotation": {"angle": -22.5, "axis": "z", "origin": [14, 10, 8]}, "rotation": {"angle": -22.5, "axis": "z", "origin": [14.05, 10, 8]},
"faces": { "faces": {
"west": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "west": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [2, 5, 14], "from": [2, 5, 14.05],
"to": [14, 10, 15], "to": [14, 10, 15.05],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8, 10, 14]}, "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 10, 14.05]},
"faces": { "faces": {
"north": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "north": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }
}, },
{ {
"from": [2, 5, 1], "from": [2, 5, 0.95],
"to": [14, 10, 2], "to": [14, 10, 1.95],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 10, 2]}, "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 10, 1.95]},
"faces": { "faces": {
"south": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"} "south": {"uv": [12, 0, 14.5, 6], "rotation": 90, "texture": "#base"}
} }

View file

@ -6,8 +6,8 @@
"elements": [ "elements": [
{ {
"name": "F4", "name": "F4",
"from": [11, 0, 9], "from": [10.975, 0, 9],
"to": [14, 10, 10], "to": [14.025, 10, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]}, "rotation": {"angle": 0, "axis": "y", "origin": [-24.5, -7.5, 9]},
"faces": { "faces": {
"north": {"uv": [6, 9.5, 7.5, 14.5], "texture": "#4"}, "north": {"uv": [6, 9.5, 7.5, 14.5], "texture": "#4"},

View file

@ -52,8 +52,8 @@
}, },
{ {
"name": "Core", "name": "Core",
"from": [1, 1, 2], "from": [0.95, 1, 2],
"to": [15, 15, 12], "to": [15.2, 15, 12],
"faces": { "faces": {
"north": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#opening"}, "north": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#opening"},
"east": {"uv": [1, 4, 15, 14], "rotation": 270, "texture": "#opening"}, "east": {"uv": [1, 4, 15, 14], "rotation": 270, "texture": "#opening"},

View file

@ -52,8 +52,8 @@
}, },
{ {
"name": "Core", "name": "Core",
"from": [1, 1, 2], "from": [1, 0.95, 2],
"to": [15, 15, 12], "to": [15, 15.05, 12],
"faces": { "faces": {
"north": {"uv": [0, 0, 0, 0], "rotation": 180, "texture": "#opening"}, "north": {"uv": [0, 0, 0, 0], "rotation": 180, "texture": "#opening"},
"east": {"uv": [0, 0, 0, 0], "rotation": 270, "texture": "#opening"}, "east": {"uv": [0, 0, 0, 0], "rotation": 270, "texture": "#opening"},

View file

@ -8,8 +8,8 @@
"elements": [ "elements": [
{ {
"name": "GaugeBody", "name": "GaugeBody",
"from": [2, 2, 1], "from": [1.95, 2, 0.95],
"to": [14, 14, 15], "to": [14.05, 14, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 10, 6, 16], "texture": "#2"}, "north": {"uv": [0, 10, 6, 16], "texture": "#2"},
"east": {"uv": [9, 10, 16, 16], "texture": "#2"}, "east": {"uv": [9, 10, 16, 16], "texture": "#2"},

View file

@ -8,8 +8,8 @@
"elements": [ "elements": [
{ {
"name": "GaugeBody", "name": "GaugeBody",
"from": [2, 2, 1], "from": [2, 1.95, 0.95],
"to": [14, 14, 15], "to": [14, 14.05, 15.05],
"faces": { "faces": {
"north": {"uv": [0, 10, 6, 16], "texture": "#2"}, "north": {"uv": [0, 10, 6, 16], "texture": "#2"},
"east": {"uv": [9, 10, 16, 16], "texture": "#2"}, "east": {"uv": [9, 10, 16, 16], "texture": "#2"},

View file

@ -22,8 +22,8 @@
}, },
{ {
"name": "Core", "name": "Core",
"from": [1, 2, 1], "from": [0.95, 2, 0.95],
"to": [15, 14, 15], "to": [15.05, 14, 15.05],
"faces": { "faces": {
"north": {"uv": [1, 2, 15, 14], "texture": "#1"}, "north": {"uv": [1, 2, 15, 14], "texture": "#1"},
"east": {"uv": [1, 2, 15, 14], "texture": "#1"}, "east": {"uv": [1, 2, 15, 14], "texture": "#1"},

View file

@ -11,8 +11,8 @@
"elements": [ "elements": [
{ {
"name": "Body", "name": "Body",
"from": [2, 1, 2], "from": [2, 0.95, 2],
"to": [14, 9, 14], "to": [14, 9.05, 14],
"faces": { "faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#4"}, "up": {"uv": [2, 2, 14, 14], "texture": "#4"},
"down": {"uv": [2, 2, 14, 14], "rotation": 180, "texture": "#gearbox"} "down": {"uv": [2, 2, 14, 14], "rotation": 180, "texture": "#gearbox"}

View file

@ -27,25 +27,11 @@
"to": [11, 11, 12], "to": [11, 11, 12],
"rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 8]}, "rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 8]},
"faces": { "faces": {
"east": {"uv": [0, 0, 6, 3], "rotation": 270, "texture": "#10"}, "east": {"uv": [1, 1, 7, 4], "rotation": 270, "texture": "#10"},
"south": {"uv": [5, 0, 11, 6], "texture": "#2"}, "south": {"uv": [5, 0, 11, 6], "texture": "#2"},
"west": {"uv": [0, 0, 6, 3], "rotation": 90, "texture": "#10"}, "west": {"uv": [1, 1, 7, 4], "rotation": 90, "texture": "#10"},
"up": {"uv": [0, 0, 6, 3], "rotation": 180, "texture": "#10"}, "up": {"uv": [1, 1, 7, 4], "rotation": 180, "texture": "#10"},
"down": {"uv": [0, 0, 6, 3], "texture": "#10"} "down": {"uv": [1, 1, 7, 4], "texture": "#10"}
}
},
{
"name": "Top",
"from": [6, 11, 9],
"to": [10, 13, 13],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 2], "texture": "#10"},
"east": {"uv": [0, 1, 4, 3], "texture": "#10"},
"south": {"uv": [0, 0, 2, 4], "rotation": 90, "texture": "#10"},
"west": {"uv": [0, 1, 4, 3], "texture": "#10"},
"up": {"uv": [0, 0, 4, 4], "rotation": 90, "texture": "#10"},
"down": {"uv": [0, 0, 4, 4], "texture": "#10"}
} }
}, },
{ {
@ -55,39 +41,53 @@
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 2], "texture": "#10"}, "north": {"uv": [0, 0, 4, 2], "texture": "#10"},
"east": {"uv": [0, 1, 4, 3], "rotation": 180, "texture": "#10"}, "east": {"uv": [0, 3, 4, 1], "rotation": 180, "texture": "#10"},
"south": {"uv": [0, 0, 2, 4], "rotation": 90, "texture": "#10"}, "south": {"uv": [16, 4, 14, 0], "rotation": 90, "texture": "#10"},
"west": {"uv": [0, 1, 4, 3], "rotation": 180, "texture": "#10"}, "west": {"uv": [4, 3, 0, 1], "rotation": 180, "texture": "#10"},
"up": {"uv": [0, 0, 4, 4], "texture": "#10"}, "up": {"uv": [0, 0, 4, 4], "texture": "#10"},
"down": {"uv": [0, 0, 4, 4], "rotation": 90, "texture": "#10"} "down": {"uv": [4, 4, 0, 0], "rotation": 90, "texture": "#10"}
} }
}, },
{ {
"name": "Left", "name": "Bottom",
"from": [3, 6, 9],
"to": [5, 10, 13],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 2, 4], "texture": "#10"},
"east": {"uv": [0, 0, 4, 4], "texture": "#10"},
"south": {"uv": [0, 0, 2, 4], "texture": "#10"},
"west": {"uv": [0, 0, 4, 4], "texture": "#10"},
"up": {"uv": [0, 1, 4, 3], "rotation": 270, "texture": "#10"},
"down": {"uv": [0, 1, 4, 3], "rotation": 270, "texture": "#10"}
}
},
{
"name": "Right",
"from": [11, 6, 9], "from": [11, 6, 9],
"to": [13, 10, 13], "to": [13, 10, 13],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 2, 4], "texture": "#10"}, "north": {"uv": [0, 0, 4, 2], "rotation": 90, "texture": "#10"},
"east": {"uv": [0, 0, 4, 4], "texture": "#10"}, "east": {"uv": [4, 4, 0, 0], "texture": "#10"},
"south": {"uv": [0, 0, 2, 4], "texture": "#10"}, "south": {"uv": [16, 4, 14, 0], "texture": "#10"},
"west": {"uv": [0, 0, 4, 4], "texture": "#10"}, "west": {"uv": [0, 0, 4, 4], "rotation": 270, "texture": "#10"},
"up": {"uv": [0, 1, 4, 3], "rotation": 90, "texture": "#10"}, "up": {"uv": [0, 3, 4, 1], "rotation": 90, "texture": "#10"},
"down": {"uv": [0, 1, 4, 3], "rotation": 90, "texture": "#10"} "down": {"uv": [4, 3, 0, 1], "rotation": 90, "texture": "#10"}
}
},
{
"name": "Bottom",
"from": [6, 11, 9],
"to": [10, 13, 13],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 2], "rotation": 180, "texture": "#10"},
"east": {"uv": [4, 3, 0, 1], "texture": "#10"},
"south": {"uv": [16, 4, 14, 0], "rotation": 270, "texture": "#10"},
"west": {"uv": [0, 3, 4, 1], "texture": "#10"},
"up": {"uv": [4, 4, 0, 0], "rotation": 270, "texture": "#10"},
"down": {"uv": [0, 0, 4, 4], "rotation": 180, "texture": "#10"}
}
},
{
"name": "Bottom",
"from": [3, 6, 9],
"to": [5, 10, 13],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 2], "rotation": 270, "texture": "#10"},
"east": {"uv": [0, 0, 4, 4], "rotation": 90, "texture": "#10"},
"south": {"uv": [16, 4, 14, 0], "rotation": 180, "texture": "#10"},
"west": {"uv": [4, 4, 0, 0], "rotation": 180, "texture": "#10"},
"up": {"uv": [4, 3, 0, 1], "rotation": 270, "texture": "#10"},
"down": {"uv": [0, 3, 4, 1], "rotation": 270, "texture": "#10"}
} }
}, },
{ {

View file

@ -26,8 +26,8 @@
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [2, 2, 1], "from": [2, 2, 0.95],
"to": [14, 12, 15], "to": [14, 12, 15.05],
"faces": { "faces": {
"north": {"uv": [2, 4, 14, 14], "texture": "#2"}, "north": {"uv": [2, 4, 14, 14], "texture": "#2"},
"south": {"uv": [2, 4, 14, 14], "texture": "#2"}, "south": {"uv": [2, 4, 14, 14], "texture": "#2"},
@ -41,7 +41,7 @@
"faces": { "faces": {
"north": {"uv": [14, 4, 16, 14], "texture": "#0"}, "north": {"uv": [14, 4, 16, 14], "texture": "#0"},
"east": {"uv": [0, 4, 16, 14], "texture": "#0"}, "east": {"uv": [0, 4, 16, 14], "texture": "#0"},
"south": {"uv": [16, 4, 14, 14], "texture": "#0"}, "south": {"uv": [0, 4, 2, 14], "texture": "#0"},
"west": {"uv": [0, 4, 16, 14], "texture": "#0"}, "west": {"uv": [0, 4, 16, 14], "texture": "#0"},
"up": {"uv": [0, 2, 16, 0], "rotation": 270, "texture": "#0"} "up": {"uv": [0, 2, 16, 0], "rotation": 270, "texture": "#0"}
} }
@ -51,7 +51,7 @@
"from": [14, 2, 0], "from": [14, 2, 0],
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [16, 4, 14, 14], "texture": "#0"}, "north": {"uv": [0, 4, 2, 14], "texture": "#0"},
"east": {"uv": [0, 4, 16, 14], "texture": "#0"}, "east": {"uv": [0, 4, 16, 14], "texture": "#0"},
"south": {"uv": [14, 4, 16, 14], "texture": "#0"}, "south": {"uv": [14, 4, 16, 14], "texture": "#0"},
"west": {"uv": [0, 4, 16, 14], "texture": "#0"}, "west": {"uv": [0, 4, 16, 14], "texture": "#0"},

View file

@ -26,8 +26,8 @@
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [1, 2, 2], "from": [0.95, 2, 2],
"to": [15, 12, 14], "to": [15.05, 12, 14],
"faces": { "faces": {
"east": {"uv": [2, 4, 14, 14], "texture": "#2"}, "east": {"uv": [2, 4, 14, 14], "texture": "#2"},
"west": {"uv": [2, 4, 14, 14], "texture": "#2"}, "west": {"uv": [2, 4, 14, 14], "texture": "#2"},
@ -42,7 +42,7 @@
"north": {"uv": [0, 4, 16, 14], "texture": "#0"}, "north": {"uv": [0, 4, 16, 14], "texture": "#0"},
"east": {"uv": [14, 4, 16, 14], "texture": "#0"}, "east": {"uv": [14, 4, 16, 14], "texture": "#0"},
"south": {"uv": [0, 4, 16, 14], "texture": "#0"}, "south": {"uv": [0, 4, 16, 14], "texture": "#0"},
"west": {"uv": [16, 4, 14, 14], "texture": "#0"}, "west": {"uv": [0, 4, 2, 14], "texture": "#0"},
"up": {"uv": [0, 2, 16, 0], "texture": "#0"} "up": {"uv": [0, 2, 16, 0], "texture": "#0"}
} }
}, },
@ -52,7 +52,7 @@
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [0, 4, 16, 14], "texture": "#0"}, "north": {"uv": [0, 4, 16, 14], "texture": "#0"},
"east": {"uv": [16, 4, 14, 14], "texture": "#0"}, "east": {"uv": [0, 4, 2, 14], "texture": "#0"},
"south": {"uv": [0, 4, 16, 14], "texture": "#0"}, "south": {"uv": [0, 4, 16, 14], "texture": "#0"},
"west": {"uv": [14, 4, 16, 14], "texture": "#0"}, "west": {"uv": [14, 4, 16, 14], "texture": "#0"},
"up": {"uv": [0, 0, 16, 2], "texture": "#0"} "up": {"uv": [0, 0, 16, 2], "texture": "#0"}

View file

@ -6,6 +6,7 @@
"1": "create:block/piston_bottom", "1": "create:block/piston_bottom",
"2": "create:block/gearbox", "2": "create:block/gearbox",
"3": "create:block/piston_inner", "3": "create:block/piston_inner",
"4": "create:block/andesite_casing",
"particle": "create:block/andesite_casing_piston" "particle": "create:block/andesite_casing_piston"
}, },
"elements": [ "elements": [
@ -18,14 +19,14 @@
"east": {"uv": [0, 14, 16, 16], "texture": "#0"}, "east": {"uv": [0, 14, 16, 16], "texture": "#0"},
"south": {"uv": [0, 14, 16, 16], "texture": "#0"}, "south": {"uv": [0, 14, 16, 16], "texture": "#0"},
"west": {"uv": [0, 14, 16, 16], "texture": "#0"}, "west": {"uv": [0, 14, 16, 16], "texture": "#0"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0"}, "up": {"uv": [0, 0, 16, 16], "texture": "#4"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} "down": {"uv": [0, 0, 16, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [2, 2, 1], "from": [2, 2, 0.95],
"to": [14, 12, 15], "to": [14, 12, 15.05],
"faces": { "faces": {
"north": {"uv": [2, 4, 14, 14], "texture": "#2"}, "north": {"uv": [2, 4, 14, 14], "texture": "#2"},
"south": {"uv": [2, 4, 14, 14], "texture": "#2"}, "south": {"uv": [2, 4, 14, 14], "texture": "#2"},
@ -40,7 +41,7 @@
"faces": { "faces": {
"north": {"uv": [14, 4, 16, 14], "texture": "#0"}, "north": {"uv": [14, 4, 16, 14], "texture": "#0"},
"east": {"uv": [0, 4, 16, 14], "texture": "#0"}, "east": {"uv": [0, 4, 16, 14], "texture": "#0"},
"south": {"uv": [16, 4, 14, 14], "texture": "#0"}, "south": {"uv": [0, 4, 2, 14], "texture": "#0"},
"west": {"uv": [0, 4, 16, 14], "texture": "#0"}, "west": {"uv": [0, 4, 16, 14], "texture": "#0"},
"up": {"uv": [0, 2, 16, 0], "rotation": 270, "texture": "#0"} "up": {"uv": [0, 2, 16, 0], "rotation": 270, "texture": "#0"}
} }
@ -50,7 +51,7 @@
"from": [14, 2, 0], "from": [14, 2, 0],
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [16, 4, 14, 14], "texture": "#0"}, "north": {"uv": [0, 4, 2, 14], "texture": "#0"},
"east": {"uv": [0, 4, 16, 14], "texture": "#0"}, "east": {"uv": [0, 4, 16, 14], "texture": "#0"},
"south": {"uv": [14, 4, 16, 14], "texture": "#0"}, "south": {"uv": [14, 4, 16, 14], "texture": "#0"},
"west": {"uv": [0, 4, 16, 14], "texture": "#0"}, "west": {"uv": [0, 4, 16, 14], "texture": "#0"},

View file

@ -6,6 +6,7 @@
"1": "create:block/piston_bottom", "1": "create:block/piston_bottom",
"2": "create:block/gearbox", "2": "create:block/gearbox",
"3": "create:block/piston_inner", "3": "create:block/piston_inner",
"4": "create:block/andesite_casing",
"particle": "create:block/andesite_casing_piston" "particle": "create:block/andesite_casing_piston"
}, },
"elements": [ "elements": [
@ -18,14 +19,14 @@
"east": {"uv": [0, 14, 16, 16], "texture": "#0"}, "east": {"uv": [0, 14, 16, 16], "texture": "#0"},
"south": {"uv": [0, 14, 16, 16], "texture": "#0"}, "south": {"uv": [0, 14, 16, 16], "texture": "#0"},
"west": {"uv": [0, 14, 16, 16], "texture": "#0"}, "west": {"uv": [0, 14, 16, 16], "texture": "#0"},
"up": {"uv": [0, 0, 16, 16], "texture": "#2"}, "up": {"uv": [0, 0, 16, 16], "texture": "#4"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} "down": {"uv": [0, 0, 16, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [1, 2, 2], "from": [0.95, 2, 2],
"to": [15, 12, 14], "to": [15.05, 12, 14],
"faces": { "faces": {
"east": {"uv": [2, 4, 14, 14], "texture": "#2"}, "east": {"uv": [2, 4, 14, 14], "texture": "#2"},
"west": {"uv": [2, 4, 14, 14], "texture": "#2"}, "west": {"uv": [2, 4, 14, 14], "texture": "#2"},
@ -40,7 +41,7 @@
"north": {"uv": [0, 4, 16, 14], "texture": "#0"}, "north": {"uv": [0, 4, 16, 14], "texture": "#0"},
"east": {"uv": [14, 4, 16, 14], "texture": "#0"}, "east": {"uv": [14, 4, 16, 14], "texture": "#0"},
"south": {"uv": [0, 4, 16, 14], "texture": "#0"}, "south": {"uv": [0, 4, 16, 14], "texture": "#0"},
"west": {"uv": [16, 4, 14, 14], "texture": "#0"}, "west": {"uv": [0, 4, 2, 14], "texture": "#0"},
"up": {"uv": [0, 2, 16, 0], "texture": "#0"} "up": {"uv": [0, 2, 16, 0], "texture": "#0"}
} }
}, },
@ -50,7 +51,7 @@
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [0, 4, 16, 14], "texture": "#0"}, "north": {"uv": [0, 4, 16, 14], "texture": "#0"},
"east": {"uv": [16, 4, 14, 14], "texture": "#0"}, "east": {"uv": [0, 4, 2, 14], "texture": "#0"},
"south": {"uv": [0, 4, 16, 14], "texture": "#0"}, "south": {"uv": [0, 4, 16, 14], "texture": "#0"},
"west": {"uv": [14, 4, 16, 14], "texture": "#0"}, "west": {"uv": [14, 4, 16, 14], "texture": "#0"},
"up": {"uv": [0, 0, 16, 2], "texture": "#0"} "up": {"uv": [0, 0, 16, 2], "texture": "#0"}

View file

@ -16,18 +16,18 @@
"from": [0, 0, 0], "from": [0, 0, 0],
"to": [16, 2, 16], "to": [16, 2, 16],
"faces": { "faces": {
"north": {"uv": [0, 14, 16, 16], "texture": "#0"}, "north": {"uv": [0, 14, 16, 16], "texture": "#6"},
"east": {"uv": [0, 14, 16, 16], "texture": "#0"}, "east": {"uv": [0, 14, 16, 16], "texture": "#6"},
"south": {"uv": [0, 14, 16, 16], "texture": "#0"}, "south": {"uv": [0, 14, 16, 16], "texture": "#6"},
"west": {"uv": [0, 14, 16, 16], "texture": "#0"}, "west": {"uv": [0, 14, 16, 16], "texture": "#6"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0"}, "up": {"uv": [0, 0, 16, 16], "texture": "#0"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} "down": {"uv": [0, 0, 16, 16], "texture": "#1"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [2, 2, 1], "from": [2, 2, 0.95],
"to": [14, 12, 15], "to": [14, 12, 15.05],
"faces": { "faces": {
"north": {"uv": [2, 4, 14, 14], "texture": "#2"}, "north": {"uv": [2, 4, 14, 14], "texture": "#2"},
"south": {"uv": [2, 4, 14, 14], "texture": "#2"}, "south": {"uv": [2, 4, 14, 14], "texture": "#2"},
@ -39,9 +39,9 @@
"from": [0, 2, 0], "from": [0, 2, 0],
"to": [2, 12, 16], "to": [2, 12, 16],
"faces": { "faces": {
"north": {"uv": [14, 0, 16, 10], "texture": "#0"}, "north": {"uv": [14, 4, 16, 14], "texture": "#6"},
"east": {"uv": [0, 4, 16, 14], "texture": "#6"}, "east": {"uv": [0, 4, 16, 14], "texture": "#6"},
"south": {"uv": [0, 0, 2, 10], "texture": "#0"}, "south": {"uv": [0, 4, 2, 14], "texture": "#6"},
"west": {"uv": [0, 4, 16, 14], "texture": "#6"} "west": {"uv": [0, 4, 16, 14], "texture": "#6"}
} }
}, },
@ -50,9 +50,9 @@
"from": [14, 2, 0], "from": [14, 2, 0],
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [0, 0, 2, 10], "texture": "#0"}, "north": {"uv": [0, 4, 2, 14], "texture": "#6"},
"east": {"uv": [0, 4, 16, 14], "texture": "#6"}, "east": {"uv": [0, 4, 16, 14], "texture": "#6"},
"south": {"uv": [14, 0, 16, 10], "texture": "#0"}, "south": {"uv": [14, 4, 16, 14], "texture": "#6"},
"west": {"uv": [0, 4, 16, 14], "texture": "#6"} "west": {"uv": [0, 4, 16, 14], "texture": "#6"}
} }
}, },

View file

@ -24,8 +24,8 @@
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [1, 2, 2], "from": [0.95, 2, 2],
"to": [15, 12, 14], "to": [15.05, 12, 14],
"faces": { "faces": {
"east": {"uv": [2, 4, 14, 14], "texture": "#2"}, "east": {"uv": [2, 4, 14, 14], "texture": "#2"},
"west": {"uv": [2, 4, 14, 14], "texture": "#2"} "west": {"uv": [2, 4, 14, 14], "texture": "#2"}
@ -48,7 +48,7 @@
"to": [16, 12, 16], "to": [16, 12, 16],
"faces": { "faces": {
"north": {"uv": [0, 4, 16, 14], "texture": "#0"}, "north": {"uv": [0, 4, 16, 14], "texture": "#0"},
"east": {"uv": [16, 4, 14, 14], "texture": "#0"}, "east": {"uv": [0, 4, 2, 14], "texture": "#0"},
"south": {"uv": [0, 4, 16, 14], "texture": "#0"}, "south": {"uv": [0, 4, 16, 14], "texture": "#0"},
"west": {"uv": [14, 4, 16, 14], "texture": "#0"} "west": {"uv": [14, 4, 16, 14], "texture": "#0"}
} }

View file

@ -2,8 +2,8 @@
"credit": "Made with Blockbench", "credit": "Made with Blockbench",
"textures": { "textures": {
"4": "create:block/mechanical_press_side", "4": "create:block/mechanical_press_side",
"gearbox_top": "create:block/gearbox_top",
"particle": "create:block/mechanical_press_side", "particle": "create:block/mechanical_press_side",
"gearbox_top": "create:block/gearbox_top",
"gearbox": "create:block/gearbox", "gearbox": "create:block/gearbox",
"mechanical_press_top": "create:block/mechanical_press_top", "mechanical_press_top": "create:block/mechanical_press_top",
"mechanical_press_bottom": "create:block/mechanical_press_bottom" "mechanical_press_bottom": "create:block/mechanical_press_bottom"
@ -24,8 +24,8 @@
}, },
{ {
"name": "Core", "name": "Core",
"from": [2, 4, 1], "from": [2, 4, 0.95],
"to": [14, 14, 15], "to": [14, 14, 15.05],
"faces": { "faces": {
"north": {"uv": [2, 2, 14, 12], "texture": "#gearbox"}, "north": {"uv": [2, 2, 14, 12], "texture": "#gearbox"},
"south": {"uv": [2, 2, 14, 12], "texture": "#gearbox"}, "south": {"uv": [2, 2, 14, 12], "texture": "#gearbox"},

View file

@ -1,5 +1,5 @@
{ {
"__comment": "Model generated using MrCrayfish's Model Creator (https://mrcrayfish.com/tools?id=mc)", "credit": "Model generated using MrCrayfish's Model Creator (https://mrcrayfish.com/tools?id=mc)",
"textures": { "textures": {
"mechanical_press_head": "create:block/mechanical_press_head", "mechanical_press_head": "create:block/mechanical_press_head",
"mechanical_press_pole": "create:block/mechanical_press_pole" "mechanical_press_pole": "create:block/mechanical_press_pole"
@ -7,80 +7,80 @@
"elements": [ "elements": [
{ {
"name": "Pole1Core", "name": "Pole1Core",
"from": [ 6, 4, 6 ], "from": [5.95, 4, 6],
"to": [ 10, 14, 10 ], "to": [10.05, 14, 10],
"faces": { "faces": {
"east": { "texture": "#mechanical_press_pole", "uv": [ 6, 6, 10, 16 ] }, "east": {"uv": [6, 6, 10, 16], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 6, 6, 10, 16 ] } "west": {"uv": [6, 6, 10, 16], "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Pole2Core", "name": "Pole2Core",
"from": [ 6, 14, 6 ], "from": [5.95, 14, 6],
"to": [ 10, 27, 10 ], "to": [10.05, 27, 10],
"faces": { "faces": {
"east": { "texture": "#mechanical_press_pole", "uv": [ 6, 0, 10, 13 ] }, "east": {"uv": [6, 0, 10, 13], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 6, 0, 10, 13 ] }, "west": {"uv": [6, 0, 10, 13], "texture": "#mechanical_press_pole"},
"up": { "texture": "#mechanical_press_pole", "uv": [ 11, 1, 15, 5 ], "rotation": 180 } "up": {"uv": [11, 1, 15, 5], "rotation": 180, "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Pole1Side", "name": "Pole1Side",
"from": [ 5, 4, 5 ], "from": [5, 4, 5],
"to": [ 11, 14, 6 ], "to": [11, 14, 6],
"faces": { "faces": {
"north": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 6, 16 ] }, "north": {"uv": [0, 6, 6, 16], "texture": "#mechanical_press_pole"},
"east": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 1, 16 ] }, "east": {"uv": [0, 6, 1, 16], "texture": "#mechanical_press_pole"},
"south": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 6, 16 ] }, "south": {"uv": [0, 6, 6, 16], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 5, 6, 6, 16 ] } "west": {"uv": [5, 6, 6, 16], "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Pole1Side", "name": "Pole1Side",
"from": [ 5, 4, 10 ], "from": [5, 4, 10],
"to": [ 11, 14, 11 ], "to": [11, 14, 11],
"faces": { "faces": {
"north": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 6, 16 ] }, "north": {"uv": [0, 6, 6, 16], "texture": "#mechanical_press_pole"},
"east": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 1, 16 ] }, "east": {"uv": [0, 6, 1, 16], "texture": "#mechanical_press_pole"},
"south": { "texture": "#mechanical_press_pole", "uv": [ 0, 6, 6, 16 ] }, "south": {"uv": [0, 6, 6, 16], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 5, 6, 6, 16 ] } "west": {"uv": [5, 6, 6, 16], "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Pole2Side", "name": "Pole2Side",
"from": [ 5, 14, 10 ], "from": [5, 14, 10],
"to": [ 11, 27, 11 ], "to": [11, 27, 11],
"faces": { "faces": {
"north": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 6, 13 ] }, "north": {"uv": [0, 0, 6, 13], "texture": "#mechanical_press_pole"},
"east": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 1, 13 ] }, "east": {"uv": [0, 0, 1, 13], "texture": "#mechanical_press_pole"},
"south": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 6, 13 ] }, "south": {"uv": [0, 0, 6, 13], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 5, 0, 6, 13 ] }, "west": {"uv": [5, 0, 6, 13], "texture": "#mechanical_press_pole"},
"up": { "texture": "#mechanical_press_pole", "uv": [ 10, 0, 16, 1 ], "rotation": 180 } "up": {"uv": [10, 0, 16, 1], "rotation": 180, "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Pole2Side", "name": "Pole2Side",
"from": [ 5, 14, 5 ], "from": [5, 14, 5],
"to": [ 11, 27, 6 ], "to": [11, 27, 6],
"faces": { "faces": {
"north": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 6, 13 ] }, "north": {"uv": [0, 0, 6, 13], "texture": "#mechanical_press_pole"},
"east": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 1, 13 ] }, "east": {"uv": [0, 0, 1, 13], "texture": "#mechanical_press_pole"},
"south": { "texture": "#mechanical_press_pole", "uv": [ 0, 0, 6, 13 ] }, "south": {"uv": [0, 0, 6, 13], "texture": "#mechanical_press_pole"},
"west": { "texture": "#mechanical_press_pole", "uv": [ 5, 0, 6, 13 ] }, "west": {"uv": [5, 0, 6, 13], "texture": "#mechanical_press_pole"},
"up": { "texture": "#mechanical_press_pole", "uv": [ 10, 5, 16, 6 ], "rotation": 180 } "up": {"uv": [10, 5, 16, 6], "rotation": 180, "texture": "#mechanical_press_pole"}
} }
}, },
{ {
"name": "Head", "name": "Head",
"from": [ 3, 0, 3 ], "from": [3, 0, 3],
"to": [ 13, 4, 13 ], "to": [13, 4, 13],
"faces": { "faces": {
"north": { "texture": "#mechanical_press_head", "uv": [ 1, 0, 11, 4 ] }, "north": {"uv": [1, 0, 11, 4], "texture": "#mechanical_press_head"},
"east": { "texture": "#mechanical_press_head", "uv": [ 1, 0, 11, 4 ] }, "east": {"uv": [1, 0, 11, 4], "texture": "#mechanical_press_head"},
"south": { "texture": "#mechanical_press_head", "uv": [ 1, 0, 11, 4 ] }, "south": {"uv": [1, 0, 11, 4], "texture": "#mechanical_press_head"},
"west": { "texture": "#mechanical_press_head", "uv": [ 1, 0, 11, 4 ] }, "west": {"uv": [1, 0, 11, 4], "texture": "#mechanical_press_head"},
"up": { "texture": "#mechanical_press_head", "uv": [ 1, 5, 11, 15 ], "rotation": 180 }, "up": {"uv": [1, 5, 11, 15], "rotation": 180, "texture": "#mechanical_press_head"},
"down": { "texture": "#mechanical_press_head", "uv": [ 1, 5, 11, 15 ], "rotation": 180 } "down": {"uv": [1, 5, 11, 15], "rotation": 180, "texture": "#mechanical_press_head"}
} }
} }
] ]

View file

@ -50,7 +50,7 @@
{ {
"name": "Inner", "name": "Inner",
"from": [0, 2, 2], "from": [0, 2, 2],
"to": [16, 14, 11], "to": [16, 14, 11.025],
"faces": { "faces": {
"east": {"uv": [2, 6, 14, 15], "rotation": 90, "texture": "#andesite_casing_short"}, "east": {"uv": [2, 6, 14, 15], "rotation": 90, "texture": "#andesite_casing_short"},
"south": {"uv": [0, 2, 16, 14], "texture": "#slit"}, "south": {"uv": [0, 2, 16, 14], "texture": "#slit"},
@ -70,8 +70,8 @@
}, },
{ {
"name": "Back", "name": "Back",
"from": [2, 2, 1], "from": [2, 2, 0.95],
"to": [14, 14, 2], "to": [14, 14, 1.95],
"faces": { "faces": {
"north": {"uv": [2, 2, 14, 14], "texture": "#gearbox"} "north": {"uv": [2, 2, 14, 14], "texture": "#gearbox"}
} }

View file

@ -1,71 +1,71 @@
{ {
"__comment": "Model generated using MrCrayfish's Model Creator (https://mrcrayfish.com/tools?id=mc)", "credit": "Model generated using MrCrayfish's Model Creator (https://mrcrayfish.com/tools?id=mc)",
"textures": { "textures": {
"gearbox_top": "create:block/gearbox_top", "gearbox_top": "create:block/gearbox_top",
"gearbox": "create:block/gearbox", "gearbox": "create:block/gearbox",
"andesite_casing_short": "create:block/andesite_casing_short", "andesite_casing_short": "create:block/andesite_casing_short",
"mechanical_saw_top": "create:block/mechanical_saw_top", "particle": "create:block/mechanical_saw_top",
"particle": "create:block/mechanical_saw_top" "mechanical_saw_top": "create:block/mechanical_saw_top"
}, },
"elements": [ "elements": [
{ {
"name": "Bottom", "name": "Bottom",
"from": [ 0, 0, 0 ], "from": [0, 0, 0],
"to": [ 16, 2, 16 ], "to": [16, 2, 16],
"faces": { "faces": {
"north": { "texture": "#gearbox_top", "uv": [ 0, 14, 16, 16 ] }, "north": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"},
"east": { "texture": "#andesite_casing_short", "uv": [ 0, 14, 16, 16 ] }, "east": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"},
"south": { "texture": "#gearbox_top", "uv": [ 0, 14, 16, 16 ] }, "south": {"uv": [0, 14, 16, 16], "texture": "#gearbox_top"},
"west": { "texture": "#andesite_casing_short", "uv": [ 0, 14, 16, 16 ] }, "west": {"uv": [0, 14, 16, 16], "texture": "#andesite_casing_short"},
"up": { "texture": "#gearbox_top", "uv": [ 0, 0, 16, 16 ] }, "up": {"uv": [0, 0, 16, 16], "texture": "#gearbox_top"},
"down": { "texture": "#gearbox_top", "uv": [ 0, 0, 16, 16 ] } "down": {"uv": [0, 0, 16, 16], "texture": "#gearbox_top"}
} }
}, },
{ {
"name": "Inner", "name": "Inner",
"from": [ 2, 2, 1 ], "from": [2, 2, 0.95],
"to": [ 14, 12, 15 ], "to": [14, 12, 15.05],
"faces": { "faces": {
"north": { "texture": "#gearbox", "uv": [ 2, 4, 14, 14 ] }, "north": {"uv": [2, 4, 14, 14], "texture": "#gearbox"},
"south": { "texture": "#gearbox", "uv": [ 2, 4, 14, 14 ] }, "south": {"uv": [2, 4, 14, 14], "texture": "#gearbox"},
"up": { "texture": "#mechanical_saw_top", "uv": [ 2, 1, 14, 15 ] }, "up": {"uv": [2, 1, 14, 15], "texture": "#mechanical_saw_top"},
"down": { "texture": "#gearbox", "uv": [ 0, 0, 12, 14 ] } "down": {"uv": [0, 0, 12, 14], "texture": "#gearbox"}
} }
}, },
{ {
"name": "Side", "name": "Side",
"from": [ 0, 2, 0 ], "from": [0, 2, 0],
"to": [ 2, 12, 16 ], "to": [2, 12, 16],
"faces": { "faces": {
"north": { "texture": "#gearbox_top", "uv": [ 14, 0, 16, 10 ] }, "north": {"uv": [14, 4, 16, 14], "texture": "#andesite_casing_short"},
"east": { "texture": "#gearbox_top", "uv": [ 0, 0, 16, 10 ] }, "east": {"uv": [0, 0, 16, 10], "texture": "#gearbox_top"},
"south": { "texture": "#gearbox_top", "uv": [ 0, 0, 2, 10 ] }, "south": {"uv": [0, 4, 2, 14], "texture": "#andesite_casing_short"},
"west": { "texture": "#andesite_casing_short", "uv": [ 0, 4, 16, 14 ] }, "west": {"uv": [0, 4, 16, 14], "texture": "#andesite_casing_short"},
"up": { "texture": "#gearbox_top", "uv": [ 0, 0, 16, 2 ], "rotation": 270 } "up": {"uv": [0, 0, 16, 2], "rotation": 270, "texture": "#gearbox_top"}
} }
}, },
{ {
"name": "Side2", "name": "Side2",
"from": [ 14, 2, 0 ], "from": [14, 2, 0],
"to": [ 16, 12, 16 ], "to": [16, 12, 16],
"faces": { "faces": {
"north": { "texture": "#gearbox_top", "uv": [ 0, 0, 2, 10 ] }, "north": {"uv": [0, 4, 2, 14], "texture": "#andesite_casing_short"},
"east": { "texture": "#andesite_casing_short", "uv": [ 0, 4, 16, 14 ] }, "east": {"uv": [0, 4, 16, 14], "texture": "#andesite_casing_short"},
"south": { "texture": "#gearbox_top", "uv": [ 14, 0, 16, 10 ] }, "south": {"uv": [14, 4, 16, 14], "texture": "#andesite_casing_short"},
"west": { "texture": "#gearbox_top", "uv": [ 0, 0, 16, 10 ] }, "west": {"uv": [0, 0, 16, 10], "texture": "#gearbox_top"},
"up": { "texture": "#gearbox_top", "uv": [ 0, 14, 16, 16 ], "rotation": 270 } "up": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#gearbox_top"}
} }
}, },
{ {
"name": "Top", "name": "Top",
"from": [ 0, 12, 2 ], "from": [0, 12, 1.95],
"to": [ 16, 13, 14 ], "to": [16, 13, 14.05],
"faces": { "faces": {
"north": { "texture": "#mechanical_saw_top", "uv": [ 0, 13, 16, 14 ] }, "north": {"uv": [16, 2, 0, 3], "texture": "#mechanical_saw_top"},
"east": { "texture": "#mechanical_saw_top", "uv": [ 0, 3, 1, 13 ], "rotation": 90 }, "east": {"uv": [0, 2, 1, 14], "rotation": 90, "texture": "#mechanical_saw_top"},
"south": { "texture": "#mechanical_saw_top", "uv": [ 0, 2, 16, 3 ] }, "south": {"uv": [0, 13, 16, 14], "texture": "#mechanical_saw_top"},
"west": { "texture": "#mechanical_saw_top", "uv": [ 15, 3, 16, 13 ], "rotation": 270 }, "west": {"uv": [15, 2, 16, 14], "rotation": 270, "texture": "#mechanical_saw_top"},
"up": { "texture": "#mechanical_saw_top", "uv": [ 0, 2, 16, 14 ] } "up": {"uv": [0, 2, 16, 14], "texture": "#mechanical_saw_top"}
} }
} }
] ]

View file

@ -10,8 +10,8 @@
"elements": [ "elements": [
{ {
"name": "Center", "name": "Center",
"from": [2, 1, 2], "from": [2, 0.95, 2],
"to": [14, 15, 14], "to": [14, 15.05, 14],
"faces": { "faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#0"}, "up": {"uv": [2, 2, 14, 14], "texture": "#0"},
"down": {"uv": [2, 2, 14, 14], "texture": "#3"} "down": {"uv": [2, 2, 14, 14], "texture": "#3"}

View file

@ -4,6 +4,7 @@
"textures": { "textures": {
"3": "create:block/gearbox_top", "3": "create:block/gearbox_top",
"4": "create:block/gearbox", "4": "create:block/gearbox",
"5": "create:block/andesite_casing",
"6": "create:block/pulley_top", "6": "create:block/pulley_top",
"particle": "create:block/pulley_rope" "particle": "create:block/pulley_rope"
}, },
@ -197,7 +198,7 @@
"east": {"uv": [2, 1, 14, 3], "rotation": 180, "texture": "#6"}, "east": {"uv": [2, 1, 14, 3], "rotation": 180, "texture": "#6"},
"west": {"uv": [2, 13, 14, 15], "texture": "#6"}, "west": {"uv": [2, 13, 14, 15], "texture": "#6"},
"up": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#6"}, "up": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#6"},
"down": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#6"} "down": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#5"}
} }
} }
] ]

View file

@ -8,6 +8,7 @@
"4": "create:block/gearbox", "4": "create:block/gearbox",
"5": "create:block/pulley_rope", "5": "create:block/pulley_rope",
"6": "create:block/pulley_magnet", "6": "create:block/pulley_magnet",
"7": "create:block/andesite_casing",
"8": "create:block/pulley_top", "8": "create:block/pulley_top",
"particle": "create:block/pulley_top" "particle": "create:block/pulley_top"
}, },
@ -82,17 +83,31 @@
{ {
"name": "magnet", "name": "magnet",
"from": [3.1, 0, 3], "from": [3.1, 0, 3],
"to": [13.1, 2, 13], "to": [13.1, 3, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [24, 23, -8]}, "rotation": {"angle": 0, "axis": "y", "origin": [24, 23, -8]},
"faces": { "faces": {
"north": {"uv": [0, 10, 10, 12], "texture": "#6"}, "north": {"uv": [0, 10, 10, 13], "texture": "#6"},
"east": {"uv": [0, 10, 10, 12], "texture": "#6"}, "east": {"uv": [0, 10, 10, 13], "texture": "#6"},
"south": {"uv": [0, 10, 10, 12], "texture": "#6"}, "south": {"uv": [0, 10, 10, 13], "texture": "#6"},
"west": {"uv": [0, 10, 10, 12], "texture": "#6"}, "west": {"uv": [0, 10, 10, 13], "texture": "#6"},
"up": {"uv": [0, 0, 10, 10], "texture": "#6"}, "up": {"uv": [0, 0, 10, 10], "texture": "#6"},
"down": {"uv": [0, 0, 10, 10], "texture": "#6"} "down": {"uv": [0, 0, 10, 10], "texture": "#6"}
} }
}, },
{
"name": "magnet",
"from": [5.1, 2, 5],
"to": [11.1, 4, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [24, 23, -8]},
"faces": {
"north": {"uv": [0, 13, 6, 15], "texture": "#6"},
"east": {"uv": [0, 13, 6, 15], "texture": "#6"},
"south": {"uv": [0, 13, 6, 15], "texture": "#6"},
"west": {"uv": [0, 13, 6, 15], "texture": "#6"},
"up": {"uv": [2, 2, 8, 8], "texture": "#6"},
"down": {"uv": [2, 2, 8, 8], "texture": "#6"}
}
},
{ {
"name": "side", "name": "side",
"from": [2, 2, 14], "from": [2, 2, 14],
@ -282,7 +297,7 @@
"east": {"uv": [2, 1, 14, 3], "rotation": 180, "texture": "#8"}, "east": {"uv": [2, 1, 14, 3], "rotation": 180, "texture": "#8"},
"west": {"uv": [2, 13, 14, 15], "texture": "#8"}, "west": {"uv": [2, 13, 14, 15], "texture": "#8"},
"up": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#8"}, "up": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#8"},
"down": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#8"} "down": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#7"}
} }
} }
], ],
@ -331,9 +346,8 @@
"name": "rope_half_magnet", "name": "rope_half_magnet",
"origin": [8, 8, 8], "origin": [8, 8, 8],
"color": 0, "color": 0,
"children": [4, 5] "children": [4, 5, 6]
}, },
6,
7, 7,
8, 8,
9, 9,
@ -347,6 +361,7 @@
17, 17,
18, 18,
19, 19,
20 20,
21
] ]
} }

View file

@ -2,14 +2,15 @@
"credit": "Made with Blockbench", "credit": "Made with Blockbench",
"parent": "block/block", "parent": "block/block",
"textures": { "textures": {
"1": "create:block/chute_large",
"6": "create:block/pulley_magnet", "6": "create:block/pulley_magnet",
"particle": "create:block/pulley_magnet" "particle": "create:block/pulley_magnet"
}, },
"elements": [ "elements": [
{ {
"name": "rope", "name": "rope",
"from": [6, 2, 6], "from": [5.95, 2, 5.95],
"to": [10, 16, 10], "to": [10.05, 16, 10.05],
"rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]},
"faces": { "faces": {
"north": {"uv": [12, 0, 16, 14], "texture": "#6"}, "north": {"uv": [12, 0, 16, 14], "texture": "#6"},
@ -22,16 +23,29 @@
{ {
"name": "magnet", "name": "magnet",
"from": [3, 0, 3], "from": [3, 0, 3],
"to": [13, 2, 13], "to": [13, 3, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]},
"faces": { "faces": {
"north": {"uv": [0, 10, 10, 12], "texture": "#6"}, "north": {"uv": [0, 10, 10, 13], "texture": "#6"},
"east": {"uv": [0, 10, 10, 12], "texture": "#6"}, "east": {"uv": [0, 10, 10, 13], "texture": "#6"},
"south": {"uv": [0, 10, 10, 12], "texture": "#6"}, "south": {"uv": [0, 10, 10, 13], "texture": "#6"},
"west": {"uv": [0, 10, 10, 12], "texture": "#6"}, "west": {"uv": [0, 10, 10, 13], "texture": "#6"},
"up": {"uv": [0, 0, 10, 10], "texture": "#6"}, "up": {"uv": [0, 0, 10, 10], "texture": "#6"},
"down": {"uv": [0, 0, 10, 10], "texture": "#6"} "down": {"uv": [0, 0, 10, 10], "texture": "#6"}
} }
},
{
"name": "magnet",
"from": [4.95, 3, 4.95],
"to": [11.05, 5, 11.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]},
"faces": {
"north": {"uv": [0, 13, 6, 15], "texture": "#6"},
"east": {"uv": [0, 13, 6, 15], "texture": "#6"},
"south": {"uv": [0, 13, 6, 15], "texture": "#6"},
"west": {"uv": [0, 13, 6, 15], "texture": "#6"},
"up": {"uv": [10.5, 11, 13.5, 14], "texture": "#1"}
}
} }
] ]
} }

View file

@ -8,8 +8,8 @@
"elements": [ "elements": [
{ {
"name": "rope", "name": "rope",
"from": [6, 0, 6], "from": [5.95, 0, 5.95],
"to": [10, 16, 10], "to": [10.05, 16, 10.05],
"rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#5"}, "north": {"uv": [0, 0, 4, 16], "texture": "#5"},

View file

@ -8,8 +8,8 @@
"elements": [ "elements": [
{ {
"name": "rope", "name": "rope",
"from": [6, 0, 6], "from": [5.95, 0, 5.95],
"to": [10, 8, 10], "to": [10.05, 8, 10.05],
"rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]},
"faces": { "faces": {
"north": {"uv": [0, 8, 4, 16], "texture": "#5"}, "north": {"uv": [0, 8, 4, 16], "texture": "#5"},

View file

@ -2,14 +2,15 @@
"credit": "Made with Blockbench", "credit": "Made with Blockbench",
"parent": "block/block", "parent": "block/block",
"textures": { "textures": {
"1": "create:block/chute_large",
"6": "create:block/pulley_magnet", "6": "create:block/pulley_magnet",
"particle": "create:block/pulley_magnet" "particle": "create:block/pulley_magnet"
}, },
"elements": [ "elements": [
{ {
"name": "rope", "name": "rope",
"from": [6, 2, 6], "from": [5.95, 2, 5.95],
"to": [10, 8, 10], "to": [10.05, 8, 10.05],
"rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8]},
"faces": { "faces": {
"north": {"uv": [12, 8, 16, 14], "texture": "#6"}, "north": {"uv": [12, 8, 16, 14], "texture": "#6"},
@ -22,16 +23,29 @@
{ {
"name": "magnet", "name": "magnet",
"from": [3, 0, 3], "from": [3, 0, 3],
"to": [13, 2, 13], "to": [13, 3, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]},
"faces": { "faces": {
"north": {"uv": [0, 10, 10, 12], "texture": "#6"}, "north": {"uv": [0, 10, 10, 13], "texture": "#6"},
"east": {"uv": [0, 10, 10, 12], "texture": "#6"}, "east": {"uv": [0, 10, 10, 13], "texture": "#6"},
"south": {"uv": [0, 10, 10, 12], "texture": "#6"}, "south": {"uv": [0, 10, 10, 13], "texture": "#6"},
"west": {"uv": [0, 10, 10, 12], "texture": "#6"}, "west": {"uv": [0, 10, 10, 13], "texture": "#6"},
"up": {"uv": [0, 0, 10, 10], "texture": "#6"}, "up": {"uv": [0, 0, 10, 10], "texture": "#6"},
"down": {"uv": [0, 0, 10, 10], "texture": "#6"} "down": {"uv": [0, 0, 10, 10], "texture": "#6"}
} }
},
{
"name": "magnet",
"from": [4.95, 3, 4.95],
"to": [11.05, 5, 11.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 23, 8]},
"faces": {
"north": {"uv": [0, 13, 6, 15], "texture": "#6"},
"east": {"uv": [0, 13, 6, 15], "texture": "#6"},
"south": {"uv": [0, 13, 6, 15], "texture": "#6"},
"west": {"uv": [0, 13, 6, 15], "texture": "#6"},
"up": {"uv": [10.5, 11, 13.5, 14], "texture": "#1"}
}
} }
] ]
} }

View file

@ -22,8 +22,8 @@
}, },
{ {
"name": "Core", "name": "Core",
"from": [1, 2, 1], "from": [1, 2, 0.95],
"to": [15, 14, 15], "to": [15, 14, 15.05],
"faces": { "faces": {
"north": {"uv": [1, 2, 15, 14], "texture": "#1"}, "north": {"uv": [1, 2, 15, 14], "texture": "#1"},
"south": {"uv": [1, 2, 15, 14], "texture": "#1"} "south": {"uv": [1, 2, 15, 14], "texture": "#1"}

View file

@ -8,8 +8,8 @@
"elements": [ "elements": [
{ {
"name": "Top 1", "name": "Top 1",
"from": [2, 14, 2], "from": [1.95, 14, 1.95],
"to": [14, 16, 14], "to": [14.05, 16, 14.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]}, "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
"faces": { "faces": {
"north": {"uv": [1, 0, 7, 1], "texture": "#0"}, "north": {"uv": [1, 0, 7, 1], "texture": "#0"},
@ -62,54 +62,42 @@
}, },
{ {
"name": "Window", "name": "Window",
"from": [2, 4, 6], "from": [6, 4, 1.95],
"to": [2, 12, 10], "to": [10, 12, 1.95],
"faces": { "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"north": {"uv": [0, 0, 0, 0], "texture": "#0"},
"east": {"uv": [9, 0, 11, 4], "texture": "#0"},
"south": {"uv": [0, 0, 0, 0], "texture": "#0"},
"west": {"uv": [9, 0, 11, 4], "texture": "#0"},
"up": {"uv": [0, 0, 0, 0], "texture": "#0"},
"down": {"uv": [0, 0, 0, 0], "texture": "#0"}
}
},
{
"name": "Window",
"from": [6, 4, 2],
"to": [10, 12, 2],
"faces": { "faces": {
"north": {"uv": [9, 0, 11, 4], "texture": "#0"}, "north": {"uv": [9, 0, 11, 4], "texture": "#0"},
"east": {"uv": [0, 0, 0, 0], "texture": "#0"}, "south": {"uv": [9, 0, 11, 4], "texture": "#0"}
"south": {"uv": [9, 0, 11, 4], "texture": "#0"},
"west": {"uv": [0, 0, 0, 0], "texture": "#0"},
"up": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#0"},
"down": {"uv": [0, 0, 0, 0], "rotation": 270, "texture": "#0"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [14, 4, 6], "from": [14.05, 4, 6],
"to": [14, 12, 10], "to": [14.05, 12, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [0, 0, 0, 0], "texture": "#0"},
"east": {"uv": [9, 0, 11, 4], "texture": "#0"}, "east": {"uv": [9, 0, 11, 4], "texture": "#0"},
"south": {"uv": [0, 0, 0, 0], "texture": "#0"}, "west": {"uv": [9, 0, 11, 4], "texture": "#0"}
"west": {"uv": [9, 0, 11, 4], "texture": "#0"},
"up": {"uv": [0, 0, 0, 0], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 0, 0], "rotation": 180, "texture": "#0"}
} }
}, },
{ {
"name": "Window", "name": "Window",
"from": [6, 4, 14], "from": [6, 4, 14.05],
"to": [10, 12, 14], "to": [10, 12, 14.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [9, 0, 11, 4], "texture": "#0"}, "north": {"uv": [9, 0, 11, 4], "texture": "#0"},
"east": {"uv": [0, 0, 0, 0], "texture": "#0"}, "south": {"uv": [9, 0, 11, 4], "texture": "#0"}
"south": {"uv": [9, 0, 11, 4], "texture": "#0"}, }
"west": {"uv": [0, 0, 0, 0], "texture": "#0"}, },
"up": {"uv": [0, 0, 0, 0], "rotation": 270, "texture": "#0"}, {
"down": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#0"} "name": "Window",
"from": [1.95, 4, 6],
"to": [1.95, 12, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"east": {"uv": [9, 0, 11, 4], "texture": "#0"},
"west": {"uv": [9, 0, 11, 4], "texture": "#0"}
} }
}, },
{ {

View file

@ -7,9 +7,8 @@
}, },
"elements": [ "elements": [
{ {
"from": [2, 1, 2], "from": [1.95, 1, 1.95],
"to": [14, 0, 14], "to": [14.05, 0, 14.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [2, 0, 14, 1], "rotation": 180, "texture": "#0"}, "north": {"uv": [2, 0, 14, 1], "rotation": 180, "texture": "#0"},
"east": {"uv": [0, 2, 1, 14], "rotation": 90, "texture": "#0"}, "east": {"uv": [0, 2, 1, 14], "rotation": 90, "texture": "#0"},
@ -19,9 +18,8 @@
} }
}, },
{ {
"from": [2, 16, 2], "from": [1.95, 16, 1.95],
"to": [14, 15, 14], "to": [14.05, 15, 14.05],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": { "faces": {
"north": {"uv": [2, 0, 14, 1], "texture": "#0"}, "north": {"uv": [2, 0, 14, 1], "texture": "#0"},
"east": {"uv": [15, 2, 16, 14], "rotation": 90, "texture": "#0"}, "east": {"uv": [15, 2, 16, 14], "rotation": 90, "texture": "#0"},
@ -33,7 +31,6 @@
{ {
"from": [2, 2, 2], "from": [2, 2, 2],
"to": [14, 14, 14], "to": [14, 14, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": { "faces": {
"north": {"uv": [6, 6, 10, 10], "rotation": 180, "texture": "#0"}, "north": {"uv": [6, 6, 10, 10], "rotation": 180, "texture": "#0"},
"east": {"uv": [6, 6, 10, 10], "rotation": 90, "texture": "#0"}, "east": {"uv": [6, 6, 10, 10], "rotation": 90, "texture": "#0"},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 B

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 161 B