From 3ea8e1068eb7e880cdccbd68f6ee76b528ae4664 Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Wed, 2 Aug 2023 00:19:09 +0300 Subject: [PATCH] Item model fix and other misc changes --- .../su/a71/new_soviet/blocks/LampBlock.java | 24 ++- .../su/a71/new_soviet/blocks/TVBlock.java | 13 +- .../models/block/ceiling_fan_off.json | 45 ++++- .../models/block/ceiling_fan_on.json | 2 +- .../assets/new_soviet/models/block/radio.json | 32 +++- .../assets/new_soviet/models/block/siren.json | 36 +++- .../new_soviet/models/block/table_lamp.json | 161 ++++++++++-------- .../assets/new_soviet/models/block/tv.json | 39 ++++- .../block/custom/appliances/fan_static.png | Bin 420 -> 456 bytes .../block/custom/furniture/table_lamp.png | Bin 570 -> 1033 bytes 10 files changed, 245 insertions(+), 107 deletions(-) diff --git a/src/main/java/su/a71/new_soviet/blocks/LampBlock.java b/src/main/java/su/a71/new_soviet/blocks/LampBlock.java index 0c59a76..510799e 100644 --- a/src/main/java/su/a71/new_soviet/blocks/LampBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/LampBlock.java @@ -34,11 +34,8 @@ public class LampBlock extends Block implements Waterloggable { @Nullable public BlockState getPlacementState(ItemPlacementContext ctx) { FluidState fluidState = ctx.getWorld().getFluidState(ctx.getBlockPos()); - Direction[] var3 = ctx.getPlacementDirections(); - int var4 = var3.length; - - for (int var5 = 0; var5 < var4; ++var5) { - Direction direction = var3[var5]; + Direction[] directions = ctx.getPlacementDirections(); + for (Direction direction : directions) { if (direction.getAxis() == Direction.Axis.Y) { BlockState blockState = this.getDefaultState().with(HANGING, direction == Direction.UP); if (blockState.canPlaceAt(ctx.getWorld(), ctx.getBlockPos())) { @@ -46,12 +43,11 @@ public class LampBlock extends Block implements Waterloggable { } } } - return null; } public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { - return (Boolean) state.get(HANGING) ? HANGING_SHAPE : STANDING_SHAPE; + return state.get(HANGING) ? HANGING_SHAPE : STANDING_SHAPE; } protected void appendProperties(StateManager.Builder builder) { @@ -64,11 +60,11 @@ public class LampBlock extends Block implements Waterloggable { } protected static Direction attachedDirection(BlockState state) { - return (Boolean) state.get(HANGING) ? Direction.DOWN : Direction.UP; + return state.get(HANGING) ? Direction.DOWN : Direction.UP; } public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) { - if ((Boolean) state.get(WATERLOGGED)) { + if (state.get(WATERLOGGED)) { world.scheduleFluidTick(pos, Fluids.WATER, Fluids.WATER.getTickRate(world)); } @@ -76,7 +72,7 @@ public class LampBlock extends Block implements Waterloggable { } public FluidState getFluidState(BlockState state) { - return (Boolean) state.get(WATERLOGGED) ? Fluids.WATER.getStill(false) : super.getFluidState(state); + return state.get(WATERLOGGED) ? Fluids.WATER.getStill(false) : super.getFluidState(state); } public boolean canPathfindThrough(BlockState state, BlockView world, BlockPos pos, NavigationType type) { @@ -88,17 +84,17 @@ public class LampBlock extends Block implements Waterloggable { shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.34375, -0.221875, 0.34375, 0.65625, 0.090625, 0.65625)); shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.125, 0.0625, 0.125, 0.875, 0.4375, 0.875)); shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.5, 0.5, 0.125, 0.5, 0.875, 0.875)); - shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.09375, 0.4375, 0.09375, 0.90625, 0.5, 0.15625)); - shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.4375, 0.875, 0.4375, 0.5625, 0.90625, 0.5625)); + shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.125, 0.5, 0.5, 0.875, 0.875, 0.5)); shape.simplify(); return shape; } public static VoxelShape getStandingShape(){ VoxelShape shape = VoxelShapes.empty(); - shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.1875, 0.4375, 0.1875, 0.8125, 1.0625, 0.8125)); - shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.375, 0, 0.375, 0.625, 0.25, 0.625)); shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.4375, 0.25, 0.4375, 0.5625, 0.875, 0.5625)); + shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.375, 0, 0.375, 0.625, 0.25, 0.625)); + shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.25, 0.6875, 0.25, 0.75, 0.9375, 0.75)); + shape = VoxelShapes.union(shape, VoxelShapes.cuboid(0.125, 0.3125, 0.125, 0.875, 0.6875, 0.875)); shape.simplify(); return shape; } diff --git a/src/main/java/su/a71/new_soviet/blocks/TVBlock.java b/src/main/java/su/a71/new_soviet/blocks/TVBlock.java index 379eb20..800987a 100644 --- a/src/main/java/su/a71/new_soviet/blocks/TVBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/TVBlock.java @@ -31,14 +31,11 @@ public class TVBlock extends HorizontalFacingBlock { @Override public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext ctx) { Direction dir = state.get(FACING); - switch(dir) { - case NORTH, SOUTH: - return VoxelShapes.cuboid(0.0f, 0.0f, 0.1875f, 1.0f, 0.8125f, 0.8125f); - case EAST, WEST: - return VoxelShapes.cuboid(0.1875f, 0.0f, 0.0f, 0.8125f, 0.8125f, 1.0f); - default: - return VoxelShapes.fullCube(); - } + return switch (dir) { + case NORTH, SOUTH -> VoxelShapes.cuboid(0.0f, 0.0f, 0.1875f, 1.0f, 0.8125f, 0.8125f); + case EAST, WEST -> VoxelShapes.cuboid(0.1875f, 0.0f, 0.0f, 0.8125f, 0.8125f, 1.0f); + default -> VoxelShapes.fullCube(); + }; } @Override diff --git a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json index 08e77cd..878558a 100644 --- a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json +++ b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json @@ -2,9 +2,9 @@ "credit": "Made with Blockbench", "texture_size": [64, 64], "textures": { - "0": "new_soviet:block/custom/appliances/fan_static", "1": "new_soviet:block/custom/appliances/fan_base", - "particle": "new_soviet:block/custom/appliances/fan_static" + "2": "new_soviet:block/custom/appliances/fan_static", + "particle": "new_soviet:block/custom/appliances/fan_animated" }, "elements": [ { @@ -64,18 +64,53 @@ "from": [-8, 1, -8], "to": [24, 1, 24], "faces": { - "up": {"uv": [16, 16, 0, 0], "texture": "#0"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#0"} + "up": {"uv": [16, 16, 0, 0], "texture": "#2"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#2"} } } ], + "display": { + "thirdperson_righthand": { + "rotation": [0, 0, 180], + "scale": [0.4, 0.4, 0.4] + }, + "thirdperson_lefthand": { + "rotation": [0, 0, 180], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_righthand": { + "rotation": [-46, 0, 180], + "translation": [1.5, 0, 1.25], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [-46, 0, 180], + "translation": [1.5, 0, 1.25], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "scale": [0.4, 0.4, 0.4] + }, + "gui": { + "rotation": [45, 45, 0], + "translation": [0, 1.75, 0], + "scale": [0.6, 0.6, 0.6] + }, + "head": { + "rotation": [0, 0, 180], + "translation": [0, 2.5, 0] + }, + "fixed": { + "rotation": [90, 0, 0], + "translation": [0, 0, 4.75] + } + }, "groups": [ { "name": "root", "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [0, 1, 2, 3, 4] } ] diff --git a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json index 007471b..24e3e19 100644 --- a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json +++ b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json @@ -69,13 +69,13 @@ } } ], + "display": {}, "groups": [ { "name": "root", "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [0, 1, 2, 3, 4] } ] diff --git a/src/main/resources/assets/new_soviet/models/block/radio.json b/src/main/resources/assets/new_soviet/models/block/radio.json index 75646e9..fe9be42 100644 --- a/src/main/resources/assets/new_soviet/models/block/radio.json +++ b/src/main/resources/assets/new_soviet/models/block/radio.json @@ -34,13 +34,42 @@ } } ], + "display": { + "thirdperson_righthand": { + "translation": [0, 2.5, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "translation": [0, 2.5, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "translation": [3, 1.5, 0], + "scale": [0.7, 0.7, 0.7] + }, + "firstperson_lefthand": { + "translation": [2.75, 1.5, 0], + "scale": [0.7, 0.7, 0.7] + }, + "ground": { + "translation": [0, 0.5, 0], + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 1.75, 0], + "scale": [0.9, 0.9, 0.9] + }, + "head": { + "scale": [0, 0, 0] + } + }, "groups": [ { "name": "root", "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [ 0, { @@ -48,7 +77,6 @@ "origin": [-5, 9, 0.5], "color": 1, "nbt": "{}", - "armAnimationEnabled": false, "children": [1] } ] diff --git a/src/main/resources/assets/new_soviet/models/block/siren.json b/src/main/resources/assets/new_soviet/models/block/siren.json index bf5f0bc..aea0420 100644 --- a/src/main/resources/assets/new_soviet/models/block/siren.json +++ b/src/main/resources/assets/new_soviet/models/block/siren.json @@ -72,20 +72,51 @@ } } ], + "display": { + "thirdperson_righthand": { + "translation": [0, 0.75, -4.5], + "scale": [0.55, 0.55, 0.55] + }, + "thirdperson_lefthand": { + "translation": [0, 0.25, -4.5], + "scale": [0.55, 0.55, 0.55] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 24, 0], + "translation": [1, 0.75, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [3, -1.5, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "scale": [0, 0, 0] + }, + "fixed": { + "translation": [0, 0, -6.25] + } + }, "groups": [ { "name": "group", "origin": [8, 8, 8], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [ { "name": "group", "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [0, 1] }, { @@ -93,7 +124,6 @@ "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [2, 3] }, 4 diff --git a/src/main/resources/assets/new_soviet/models/block/table_lamp.json b/src/main/resources/assets/new_soviet/models/block/table_lamp.json index 1ae4a6c..277eb5d 100644 --- a/src/main/resources/assets/new_soviet/models/block/table_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/table_lamp.json @@ -1,115 +1,134 @@ { "credit": "Made with Blockbench", + "parent": "minecraft:block/cube_all", + "texture_size": [64, 64], "textures": { - "0": "new_soviet:block/custom/furniture/table_lamp", + "2": "new_soviet:block/custom/furniture/table_lamp", "particle": "new_soviet:block/custom/furniture/table_lamp" }, "elements": [ { - "from": [3, 7, 3], - "to": [13, 17, 13], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "from": [7, 4, 7], + "to": [9, 14, 9], "faces": { - "north": {"uv": [5, 0, 10, 5], "texture": "#0", "tintindex": 1}, - "east": {"uv": [5, 0, 10, 5], "texture": "#0", "tintindex": 1}, - "south": {"uv": [5, 0, 10, 5], "texture": "#0", "tintindex": 1}, - "west": {"uv": [5, 0, 10, 5], "texture": "#0", "tintindex": 1}, - "up": {"uv": [0, 0, 5, 5], "rotation": 180, "texture": "#0", "tintindex": 1}, - "down": {"uv": [0, 5, 5, 10], "rotation": 180, "texture": "#0", "tintindex": 1} - } - }, - { - "from": [13, 17, 13], - "to": [3, 7, 3], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [5, 0, 10, 5], "rotation": 180, "texture": "#0", "tintindex": 1}, - "east": {"uv": [5, 0, 10, 5], "rotation": 180, "texture": "#0", "tintindex": 1}, - "south": {"uv": [5, 0, 10, 5], "rotation": 180, "texture": "#0", "tintindex": 1}, - "west": {"uv": [5, 0, 10, 5], "rotation": 180, "texture": "#0", "tintindex": 1}, - "up": {"uv": [0, 5, 5, 10], "rotation": 180, "texture": "#0", "tintindex": 1}, - "down": {"uv": [0, 0, 5, 5], "rotation": 180, "texture": "#0", "tintindex": 1} - } - }, - { - "from": [3, 8, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, - "faces": { - "up": {"uv": [5, 5, 10, 10], "rotation": 180, "texture": "#0"}, - "down": {"uv": [5, 5, 10, 10], "rotation": 180, "texture": "#0"} + "north": {"uv": [0.5, 0.5, 1, 3], "texture": "#2"}, + "east": {"uv": [0, 0.5, 0.5, 3], "texture": "#2"}, + "south": {"uv": [1.5, 0.5, 2, 3], "texture": "#2"}, + "west": {"uv": [1, 0.5, 1.5, 3], "texture": "#2"}, + "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"}, + "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"} } }, { "from": [6, 0, 6], "to": [10, 4, 10], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, "faces": { - "north": {"uv": [11, 2, 13, 4], "texture": "#0"}, - "east": {"uv": [11, 2, 13, 4], "texture": "#0"}, - "south": {"uv": [11, 2, 13, 4], "texture": "#0"}, - "west": {"uv": [11, 2, 13, 4], "texture": "#0"}, - "up": {"uv": [11, 0, 13, 2], "rotation": 180, "texture": "#0"}, - "down": {"uv": [12, 3, 13, 3.5], "rotation": 180, "texture": "#0"} + "north": {"uv": [1, 8.5, 2, 9.5], "texture": "#2"}, + "east": {"uv": [0, 8.5, 1, 9.5], "texture": "#2"}, + "south": {"uv": [3, 8.5, 4, 9.5], "texture": "#2"}, + "west": {"uv": [2, 8.5, 3, 9.5], "texture": "#2"}, + "up": {"uv": [2, 8.5, 1, 7.5], "texture": "#2"}, + "down": {"uv": [3, 7.5, 2, 8.5], "texture": "#2"} } }, { - "from": [7, 4, 7], - "to": [9, 14, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "from": [4, 13, 4], + "to": [12, 13, 12], "faces": { - "north": {"uv": [10, 0, 11, 5], "texture": "#0"}, - "east": {"uv": [10, 0, 11, 5], "texture": "#0"}, - "south": {"uv": [10, 0, 11, 5], "texture": "#0"}, - "west": {"uv": [10, 0, 11, 5], "texture": "#0"}, - "up": {"uv": [10, 0, 11, 1], "rotation": 180, "texture": "#0"} + "north": {"uv": [6, 6.5, 8, 6.5], "texture": "#2"}, + "east": {"uv": [4, 6.5, 6, 6.5], "texture": "#2"}, + "south": {"uv": [10, 6.5, 12, 6.5], "texture": "#2"}, + "west": {"uv": [8, 6.5, 10, 6.5], "texture": "#2"}, + "up": {"uv": [8, 6.5, 6, 4.5], "texture": "#2"}, + "down": {"uv": [8, 4.5, 6, 6.5], "texture": "#2"} + } + }, + { + "from": [4, 11, 4], + "to": [12, 15, 12], + "faces": { + "north": {"uv": [2, 6.5, 4, 7.5], "texture": "#2"}, + "east": {"uv": [0, 6.5, 2, 7.5], "texture": "#2"}, + "south": {"uv": [6, 6.5, 8, 7.5], "texture": "#2"}, + "west": {"uv": [4, 6.5, 6, 7.5], "texture": "#2"}, + "up": {"uv": [4, 6.5, 2, 4.5], "texture": "#2"}, + "down": {"uv": [6, 4.5, 4, 6.5], "texture": "#2"} + } + }, + { + "from": [12, 11, 4], + "to": [4, 15, 12], + "faces": { + "north": {"uv": [2, 6.5, 4, 7.5], "texture": "#2"}, + "east": {"uv": [0, 6.5, 2, 7.5], "texture": "#2"}, + "south": {"uv": [6, 6.5, 8, 7.5], "texture": "#2"}, + "west": {"uv": [4, 6.5, 6, 7.5], "texture": "#2"}, + "up": {"uv": [4, 6.5, 2, 4.5], "texture": "#2"}, + "down": {"uv": [6, 4.5, 4, 6.5], "texture": "#2"} + } + }, + { + "from": [2, 5, 2], + "to": [14, 11, 14], + "faces": { + "north": {"uv": [3, 3, 6, 4.5], "texture": "#2"}, + "east": {"uv": [0, 3, 3, 4.5], "texture": "#2"}, + "south": {"uv": [9, 3, 12, 4.5], "texture": "#2"}, + "west": {"uv": [6, 3, 9, 4.5], "texture": "#2"}, + "up": {"uv": [6, 3, 3, 0], "texture": "#2"}, + "down": {"uv": [9, 0, 6, 3], "texture": "#2"} + } + }, + { + "from": [14, 5, 2], + "to": [2, 11, 14], + "faces": { + "north": {"uv": [3, 3, 6, 4.5], "texture": "#2"}, + "east": {"uv": [0, 3, 3, 4.5], "texture": "#2"}, + "south": {"uv": [9, 3, 12, 4.5], "texture": "#2"}, + "west": {"uv": [6, 3, 9, 4.5], "texture": "#2"}, + "up": {"uv": [6, 3, 3, 0], "texture": "#2"}, + "down": {"uv": [9, 0, 6, 3], "texture": "#2"} } } ], "display": { "thirdperson_righthand": { - "rotation": [0, 43, 0], - "translation": [0, 1, 0], - "scale": [0.4, 0.4, 0.4] + "translation": [0, 2, 0], + "scale": [0.6, 0.6, 0.6] }, "thirdperson_lefthand": { - "rotation": [0, 43, 0], - "translation": [0, 1, 0], - "scale": [0.4, 0.4, 0.4] + "translation": [0, 2, 0], + "scale": [0.6, 0.6, 0.6] }, "firstperson_righthand": { - "rotation": [0, 35, 0], - "translation": [12, -0.5, -8.25] + "translation": [2, 0, 0], + "scale": [0.6, 0.6, 0.6] }, "firstperson_lefthand": { - "rotation": [0, 35, 0], - "translation": [12, -0.5, -8.25] + "translation": [2, 0, 0], + "scale": [0.6, 0.6, 0.6] }, "ground": { - "translation": [0, 4.75, 0], - "scale": [0.4, 0.4, 0.4] + "translation": [0, 1.25, 0], + "scale": [0.6, 0.6, 0.6] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0, -1.25, 0], + "rotation": [30, 225, 0], "scale": [0.8, 0.8, 0.8] }, "head": { - "translation": [0, -3, 0], - "scale": [1.4, 1.4, 1.4] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] + "translation": [0, -0.75, 0], + "scale": [0, 0, 0] } }, "groups": [ { - "name": "group", - "origin": [8, 8, 8], + "name": "bone", + "origin": [0, 0, 0], "color": 0, - "children": [0, 1, 2, 3, 4] + "nbt": "{}", + "children": [0, 1, 2, 3, 4, 5, 6] } ] } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tv.json b/src/main/resources/assets/new_soviet/models/block/tv.json index 0a3dbfe..062f0c9 100644 --- a/src/main/resources/assets/new_soviet/models/block/tv.json +++ b/src/main/resources/assets/new_soviet/models/block/tv.json @@ -77,13 +77,48 @@ } } ], + "display": { + "thirdperson_righthand": { + "rotation": [0, 180, 0], + "translation": [0, 1, -1.75], + "scale": [0.4, 0.4, 0.4] + }, + "thirdperson_lefthand": { + "rotation": [0, 180, 0], + "translation": [0, 1, -1.75], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_righthand": { + "rotation": [0, 180, 0], + "translation": [1.75, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "rotation": [0, 180, 0], + "translation": [1.75, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.4, 0.4, 0.4] + }, + "gui": { + "rotation": [0, -135, 0], + "translation": [0, -1.5, 0], + "scale": [0.75, 0.75, 0.75] + }, + "head": { + "scale": [1.5, 1.5, 1.5] + }, + "fixed": { + "translation": [0, 0, -0.25] + } + }, "groups": [ { "name": "root", "origin": [0, 0, 0], "color": 0, "nbt": "{}", - "armAnimationEnabled": false, "children": [ 0, 1, @@ -93,7 +128,6 @@ "origin": [0, 14, 0], "color": 1, "nbt": "{}", - "armAnimationEnabled": false, "children": [3] }, { @@ -101,7 +135,6 @@ "origin": [0, 14, 0], "color": 2, "nbt": "{}", - "armAnimationEnabled": false, "children": [4] } ] diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png index 9af61ca8c59d6f812691c68b7a31d7c5e02c1d4a..41751ab83507989577b460b3d63b39bd2d5c545a 100644 GIT binary patch delta 418 zcmV;T0bTy21IPoAFn<69XF*Lt006O%3;baP00009a7bBm000id000id0mpBsWB>pG zT}ebiR9HvVm$6C%K@f)bd<0Q2a1pc+>?Mtaq_GWlK7@^=wy>~H=Ob9y+1nT-AYw13 zNI(x1l)S>pzs$&7if}u>81lig|6aJ;+4*O8Nnm(=ye`pX=zn5O`ea78m*sk%2Q+AT zoJ=NtGGE28GU;aCaed33fxlvP1DF+ssH#rI9l-bJR8&=`LRrA9TyY0bOg=19KXbV`V0QR?=u`$H+8<)x6K|4MGC@l5XR`^N(s@8dbGdTUV zCEsnteq(DVUVmK5`1v6m9-n6!u2cJi#a1{1y1Rdh8mpcU29v(Ly+?i2ZN&+dMc-d& zfnK*>>b$>n3uNd66WPf;P`d!0tM6Wxeh#=jK1Ed3xFnb;8q(|bG6pP$}wy?hhHh)r9+Rg~9SBpy983BM- zIh%l-FDq?l1T?r^IOI5Uv~LB2eoqbhy>3=Px&!%0LzRCt{2nLTXNKorOSu}oD`Ff>rNe28vPA<6_uEDS8{EJ%ozotc3VF|xBF zBo=16fLe(qu#|*0EL9SUXq?n7N0UZr<;UQjvCpxc;Koj>`z`jn_wIaO@9v#1g9BJ& zjj|`sK^;GyK?uw&Q>9SCwLA9!06)Kf#)T_4eecDk1WhHzq3osEE6-!wBOk!Q5Nm# zfT(i0T|bRVV+N?-K7DkFD}q{-?djbM+)mT|ejh})HDb`HZ(lv@D?^aq2ig7Es`Oo{ zBvD)KPTF-y6*W6P25sUP0Dv|30Kg}^8KeuOfyx^T{A+lS4D{~;KURC|u(VJBd!*f? zEy^Oj%mQxH&%)*onvz0c%{{c*9kkjVr{Qi{q`0&IP1l`$o!mztx{l(~LMn~w z2hSoXE{NS0NFL$wP`DcxuH5v5!qt^L@o+aN98L{pmZ`A#o-E4>98t@%sId6n36O@# zK5qM+v%t=F6#%eRGjaYhftgio)l6u5_kG-Lf8uNfTJBQM_Jb(@e^HoWPe1+y0A^M_ zMsAyK_F|qW`@<|hE(!qDHyVKj@-%KUjP`NJe0clX<4037XFUc{A4=Q)?t@3M{vTwj zD|u2BTj&tKcf%d*oH1x{K}9srKLJI`U4Kky$YoAqC`T3n{p;xcX4e~~Ch z<$wC{Mxf1;``42{|M$ykaXGM(VLCV6Iw7oMl0=O*iO=&lUoubbU#IN&m?tfXZ^tHV zn)l)Y9QTO7czk;(MjtrX29v;jvJ5+DB~7FY7`5PFBTOg4ntRSH7^$ByM|}~DB-lu2C2U|m+VcDhzi(I*YCRNL|v9;r|mRs zALr@(X`jlx`Z)R1MCFy5oX+9o`@`HNN`y3%>dTiLzoL3 zH8P^l1OBVAFnMH7bpfdS62xFFk3!e7&U=)8lu>8SOaSmNaN@mSlzvoEH#VC-AJ2}D zIsVV(Fug<~kw_#Gi9{liNF)-8L?V$$Boc{4GW`4nmHNG`70}#L00000NkvXXu0mjf DF>>;r literal 570 zcmV-A0>%A_P)yZ%TBf_~=Od#~^N`rf_QDi7VOzHM44REl6L0Hod1%Vp#zXRx!j zsOVY_06-lNd(D;t0aV+x&{$d?6B!vg7iWD&2!Iobke{4^`}PQ3%Yix`0DuV*3J3-s z1?IzuDIw5{vjE^<2gGzQ&m-f71lXn(>13N0YV|ozObH3u*`8i5<7jt-r#e`IQ5Z{- z0hw54bKgJUzJEl<8cfAv-1H%jWx0$3wNG0q`>-6%aQAPrYXVfYCNEU7f=H^$oWhZG*4W z@%TAl9J2ns0-#PD}xGr_jfS(PojhEb>;A+Bb;Uo zn=6e$l+O?zx>x3qBfMZT3Qhb3qI-(hfTO& z8$=m0WXO==-{TXP`4I(M3