diff --git a/gradle.properties b/gradle.properties index b07b9ac..2c0fd1a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -43,7 +43,7 @@ mod_name=Modern Life Patch # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=MIT # The mod version. See https://semver.org/ -mod_version=1.20.1-1.4.8-beta +mod_version=1.20.1-1.5.0-beta # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/com/r3944realms/modernlifepatch/ClientEventHandler.java b/src/main/java/com/r3944realms/modernlifepatch/ClientEventHandler.java index 24b00f5..cdfa285 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/ClientEventHandler.java +++ b/src/main/java/com/r3944realms/modernlifepatch/ClientEventHandler.java @@ -2,7 +2,10 @@ package com.r3944realms.modernlifepatch; import com.r3944realms.modernlifepatch.client.blockentity.MirrorBlockEntityRenderer; import com.r3944realms.modernlifepatch.client.event.CreativeScreenEvents; +import com.r3944realms.modernlifepatch.client.render.BlockOutlineRenderer; +import com.r3944realms.modernlifepatch.client.render.outline.RampOutlineRenderer; import com.r3944realms.modernlifepatch.content.blocks.entities.ModBlockEntityType; +import com.r3944realms.modernlifepatch.data.SpecialHitBoxBlockType; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import net.minecraftforge.client.event.EntityRenderersEvent; @@ -23,7 +26,11 @@ public abstract class ClientEventHandler { event.enqueueWork(() -> { }); - if(ModernLifePatch.isModernLifeLoaded) MinecraftForge.EVENT_BUS.register(new CreativeScreenEvents()); + if(ModernLifePatch.isModernLifeLoaded) { + MinecraftForge.EVENT_BUS.register(new CreativeScreenEvents()); + BlockOutlineRenderer.registerOutlineRender(SpecialHitBoxBlockType.RAMP, new RampOutlineRenderer()); + MinecraftForge.EVENT_BUS.addListener(BlockOutlineRenderer::onRenderBlockHighlight); + } } @SubscribeEvent public static void onRegisterRenderer (EntityRenderersEvent.RegisterRenderers event) { diff --git a/src/main/java/com/r3944realms/modernlifepatch/client/render/BlockOutlineRenderer.java b/src/main/java/com/r3944realms/modernlifepatch/client/render/BlockOutlineRenderer.java new file mode 100644 index 0000000..6e54d60 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/client/render/BlockOutlineRenderer.java @@ -0,0 +1,68 @@ +package com.r3944realms.modernlifepatch.client.render; + +import com.mojang.blaze3d.vertex.PoseStack; +import com.mojang.blaze3d.vertex.VertexConsumer; +import com.r3944realms.modernlifepatch.ModernLifePatch; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.RenderType; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.BlockHitResult; +import net.minecraft.world.phys.Vec3; +import net.minecraftforge.client.event.RenderHighlightEvent; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +public final class BlockOutlineRenderer { + private static final Map OUTLINE_RENDERERS = new HashMap<>(); + private static final Set ERRORED_TYPES = new HashSet<>(); + public static void onRenderBlockHighlight(final RenderHighlightEvent.Block event) + { + BlockHitResult result = event.getTarget(); + //noinspection ConstantConditions + BlockState state = Minecraft.getInstance().level.getBlockState(result.getBlockPos()); + if (!(state.getBlock() instanceof ISpecialHitBoxType block)) { return; } + + + if (block.hasSpecialHitbox()) + { + PoseStack mstack = event.getPoseStack(); + Vec3 offset = Vec3.atLowerCornerOf(result.getBlockPos()).subtract(event.getCamera().getPosition()); + VertexConsumer builder = event.getMultiBufferSource().getBuffer(RenderType.lines()); + + OutlineRender render = OUTLINE_RENDERERS.get(block.getSpecialHitBoxType()); + if (render == null) + { + if (ERRORED_TYPES.add(block)) + { + ModernLifePatch.logger.error("IBlockType '{}' requests custom outline rendering but no OutlineRender was registered!", block.getSTName()); + } + return; + } + + mstack.pushPose(); + mstack.translate(offset.x, offset.y, offset.z); + mstack.translate(.5, .5, .5); + render.rotateMatrix(mstack, state, block.getFaceDirection()); + mstack.translate(-.5, -.5, -.5); + + render.draw(state, Minecraft.getInstance().level, result.getBlockPos(), mstack, builder); + + mstack.popPose(); + + event.setCanceled(true); + } + } + public static synchronized void registerOutlineRender(ISpecialHitBoxType type, OutlineRender render) + { + if (!type.hasSpecialHitbox()) + { + throw new IllegalArgumentException(String.format("Type %s doesn't return true from IBlockType#hasSpecialHitbox()", type)); + } + + OUTLINE_RENDERERS.put(type, render); + } + private BlockOutlineRenderer() { } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/client/render/ISpecialHitBoxType.java b/src/main/java/com/r3944realms/modernlifepatch/client/render/ISpecialHitBoxType.java new file mode 100644 index 0000000..e8e22a4 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/client/render/ISpecialHitBoxType.java @@ -0,0 +1,12 @@ +package com.r3944realms.modernlifepatch.client.render; + +import com.r3944realms.modernlifepatch.data.SpecialHitBoxBlockType; +import net.minecraft.core.Direction; +import net.minecraft.world.level.block.state.properties.EnumProperty; + +public interface ISpecialHitBoxType { + boolean hasSpecialHitbox(); + EnumProperty getFaceDirection(); + String getSTName(); + SpecialHitBoxBlockType getSpecialHitBoxType(); +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/client/render/OutlineRender.java b/src/main/java/com/r3944realms/modernlifepatch/client/render/OutlineRender.java new file mode 100644 index 0000000..85c03c1 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/client/render/OutlineRender.java @@ -0,0 +1,99 @@ +package com.r3944realms.modernlifepatch.client.render; + + +import com.google.common.base.Preconditions; +import com.mojang.blaze3d.vertex.PoseStack; +import com.mojang.blaze3d.vertex.VertexConsumer; +import com.mojang.math.Axis; +import com.r3944realms.modernlifepatch.utils.Quaternions; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.util.Mth; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.properties.EnumProperty; +import org.joml.Quaternionf; + +/** + * @author XFactHD + */ +public interface OutlineRender { + /** + * Array of {@link Quaternions} for rotating around the Y axis according to the horizontal direction.
+ * Must be indexed with {@link Direction#get2DDataValue()} + */ + Quaternionf[] YN_DIR = makeQuaternionArray(); + + /** + * Draw the outlines of the block. Provides access to the {@link BlockState}, {@link Level} and {@link BlockPos} + * of the block being targeted for cases that require access to the block's + * {@link net.minecraft.world.level.block.entity.BlockEntity} + */ + default void draw(BlockState state, Level level, BlockPos pos, PoseStack poseStack, VertexConsumer builder) + { + draw(state, poseStack, builder); + } + + /** + * Draw the outlines of the block. Provides access to the {@link BlockState} of the block being targeted, + * sufficient for most blocks + */ + void draw(BlockState state, PoseStack poseStack, VertexConsumer builder); + + /** + * Get the horizontal {@link Direction} the block is facing in + */ + default Direction getRotationDir(BlockState state, EnumProperty directionEnumProperty) { return state.getValue(directionEnumProperty); } + + default void rotateMatrix(PoseStack poseStack, BlockState state, EnumProperty directionEnumProperty) + { + Direction dir = getRotationDir(state, directionEnumProperty); + Preconditions.checkState(dir.getAxis().isHorizontal(), "Rotation direction must be horizontal"); + poseStack.mulPose(YN_DIR[dir.get2DDataValue()]); + } + + /** + * Mirrors the {@link PoseStack} around the horizontal plane + * @param pstack The {@code PoseStack} used for rendering + * @param rotY90 Whether the {@code PoseStack} needs to be rotated -90 degrees around the y-axis, + * needed for un-symmetric shapes like corners + */ + static void mirrorHorizontally(PoseStack pstack, boolean rotY90) + { + pstack.mulPose(Quaternions.ZP_180); + if (rotY90) + { + pstack.mulPose(Quaternions.YN_90); + } + } + + /** + * Draw a line between the two points given by the two sets of 3D coordinates + */ + static void drawLine(VertexConsumer builder, PoseStack mstack, double x1, double y1, double z1, double x2, double y2, double z2) + { + float nX = (float)(x2 - x1); + float nY = (float)(y2 - y1); + float nZ = (float)(z2 - z1); + float nLen = Mth.sqrt(nX * nX + nY * nY + nZ * nZ); + + nX = nX / nLen; + nY = nY / nLen; + nZ = nZ / nLen; + + builder.vertex(mstack.last().pose(), (float)x1, (float)y1, (float)z1).color(0.0F, 0.0F, 0.0F, 0.4F).normal(mstack.last().normal(), nX, nY, nZ).endVertex(); + builder.vertex(mstack.last().pose(), (float)x2, (float)y2, (float)z2).color(0.0F, 0.0F, 0.0F, 0.4F).normal(mstack.last().normal(), nX, nY, nZ).endVertex(); + } + + + + static Quaternionf[] makeQuaternionArray() + { + Quaternionf[] array = new Quaternionf[4]; + for (Direction dir : Direction.Plane.HORIZONTAL) + { + array[dir.get2DDataValue()] = Axis.YN.rotationDegrees(dir.toYRot()); + } + return array; + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/client/render/outline/RampOutlineRenderer.java b/src/main/java/com/r3944realms/modernlifepatch/client/render/outline/RampOutlineRenderer.java new file mode 100644 index 0000000..44904a3 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/client/render/outline/RampOutlineRenderer.java @@ -0,0 +1,54 @@ +package com.r3944realms.modernlifepatch.client.render.outline; + +import com.dairymoose.modernlife.blocks.RampBlock; +import com.mojang.blaze3d.vertex.PoseStack; +import com.mojang.blaze3d.vertex.VertexConsumer; +import com.r3944realms.modernlifepatch.client.render.OutlineRender; +import net.minecraft.core.Direction; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.properties.EnumProperty; + +public class RampOutlineRenderer implements OutlineRender { + + @Override + public void draw(BlockState state, PoseStack poseStack, VertexConsumer builder) { + RampBlock.PartType partType = state.getValue(RampBlock.PART); + if (partType == RampBlock.PartType.straight) { + //Back edges + OutlineRender.drawLine(builder, poseStack, 0, 0, 1, 0, 1, 1); + OutlineRender.drawLine(builder, poseStack, 1, 0, 1, 1, 1, 1); + + //Bottom face + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 0, 0, 1); + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 1, 0, 0); + OutlineRender.drawLine(builder, poseStack, 1, 0, 0, 1, 0, 1); + OutlineRender.drawLine(builder, poseStack, 0, 0, 1, 1, 0, 1); + + //Top edge + OutlineRender.drawLine(builder, poseStack, 0, 1, 1, 1, 1, 1); + + //Slope + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 0, 1, 1); + OutlineRender.drawLine(builder, poseStack, 1, 0, 0, 1, 1, 1); + } else { + OutlineRender.drawLine(builder, poseStack, 1, 0, 1, 1, 1, 1); + + //Bottom face + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 0, 0, 1); + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 1, 0, 0); + OutlineRender.drawLine(builder, poseStack, 1, 0, 0, 1, 0, 1); + OutlineRender.drawLine(builder, poseStack, 0, 0, 1, 1, 0, 1); + + //Slope + OutlineRender.drawLine(builder, poseStack, 0, 0, 0, 1, 1, 1); + OutlineRender.drawLine(builder, poseStack, 1, 0, 0, 1, 1, 1); + OutlineRender.drawLine(builder, poseStack, 0, 0, 1, 1, 1, 1); + } + } + + @Override + public void rotateMatrix(PoseStack poseStack, BlockState state, EnumProperty axis) { + OutlineRender.super.rotateMatrix(poseStack, state, axis); + } + +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/data/SpecialHitBoxBlockType.java b/src/main/java/com/r3944realms/modernlifepatch/data/SpecialHitBoxBlockType.java new file mode 100644 index 0000000..dc09018 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/data/SpecialHitBoxBlockType.java @@ -0,0 +1,40 @@ +package com.r3944realms.modernlifepatch.data; + +import com.dairymoose.modernlife.blocks.RampBlock; +import com.r3944realms.modernlifepatch.client.render.ISpecialHitBoxType; +import net.minecraft.core.Direction; +import net.minecraft.world.level.block.state.properties.EnumProperty; + +import java.util.Locale; + +public enum SpecialHitBoxBlockType implements ISpecialHitBoxType { + RAMP(true, RampBlock.FACING) + ; + private final String name = toString().toLowerCase(Locale.ROOT); + private final boolean specialHitbox; + private final EnumProperty facing; + SpecialHitBoxBlockType(boolean hasSpecialHitbox, EnumProperty facing) { + this.specialHitbox = hasSpecialHitbox; + this.facing = facing; + } + + @Override + public boolean hasSpecialHitbox() { + return specialHitbox; + } + + @Override + public EnumProperty getFaceDirection() { + return facing; + } + @Override + public String getSTName() { + return name; + } + + @Override + public SpecialHitBoxBlockType getSpecialHitBoxType() { + return this; + } + +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/outside/MixinRampBlock.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/outside/MixinRampBlock.java new file mode 100644 index 0000000..d2fe8bb --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/outside/MixinRampBlock.java @@ -0,0 +1,36 @@ +package com.r3944realms.modernlifepatch.mixin.block.outside; + +import com.dairymoose.modernlife.blocks.RampBlock; +import com.r3944realms.modernlifepatch.client.render.ISpecialHitBoxType; +import com.r3944realms.modernlifepatch.data.SpecialHitBoxBlockType; +import net.minecraft.core.Direction; +import net.minecraft.world.level.block.state.properties.EnumProperty; +import org.spongepowered.asm.mixin.Final; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; + +@SuppressWarnings("AddedMixinMembersNamePattern") +@Mixin(value = RampBlock.class, remap = false) +public class MixinRampBlock implements ISpecialHitBoxType { + @Shadow @Final public static EnumProperty FACING; + + @Override + public boolean hasSpecialHitbox() { + return SpecialHitBoxBlockType.RAMP.hasSpecialHitbox(); + } + + @Override + public EnumProperty getFaceDirection() { + return SpecialHitBoxBlockType.RAMP.getFaceDirection(); + } + + @Override + public String getSTName() { + return SpecialHitBoxBlockType.RAMP.getSTName(); + } + + @Override + public SpecialHitBoxBlockType getSpecialHitBoxType() { + return SpecialHitBoxBlockType.RAMP; + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/utils/Quaternions.java b/src/main/java/com/r3944realms/modernlifepatch/utils/Quaternions.java new file mode 100644 index 0000000..b99444f --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/utils/Quaternions.java @@ -0,0 +1,22 @@ +package com.r3944realms.modernlifepatch.utils; + + +import com.mojang.math.Axis; +import org.joml.Quaternionf; + +public final class Quaternions { + public static final Quaternionf XP_90 = Axis.XP.rotationDegrees(90); + public static final Quaternionf XP_180 = Axis.XP.rotationDegrees(180); + public static final Quaternionf XN_90 = Axis.XN.rotationDegrees(90); + + public static final Quaternionf YP_90 = Axis.YP.rotationDegrees(90); + public static final Quaternionf YN_90 = Axis.YN.rotationDegrees(90); + + public static final Quaternionf ZP_90 = Axis.ZP.rotationDegrees(90); + public static final Quaternionf ZP_180 = Axis.ZP.rotationDegrees(180); + public static final Quaternionf ZN_90 = Axis.ZN.rotationDegrees(90); + + + + private Quaternions() { } +} \ No newline at end of file diff --git a/src/main/resources/modernlifepatch.mixins.json b/src/main/resources/modernlifepatch.mixins.json index 64c852f..2bbd7c3 100644 --- a/src/main/resources/modernlifepatch.mixins.json +++ b/src/main/resources/modernlifepatch.mixins.json @@ -42,6 +42,7 @@ "block.kitchen.MixinRefrigerator", "block.kitchen.MixinStove", "block.lounge.MixinSofa", + "block.outside.MixinRampBlock", "block.redstone.MixinExtractor", "block.redstone.MixinPowerReceiver", "block.redstone.MixinPowerTransmitter", diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_chair.json index 7d041fb..d93edef 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_deck.json index 40dfabd..e21ca22 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_kitchen_cabinet.json index 589b028..34093b3 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_mini_stool.json index 54627b9..498bd11 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_night_stand.json index 39f533d..a5245a6 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_round_table.json index f2b5b75..76b5d2a 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_wall_shelf.json index a1ce866..5b1184e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/acacia_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/andesite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/andesite_kitchen_cabinet.json index 719f9e6..4f9c475 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/andesite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/andesite_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/barrier.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/barrier.json index 2e201c7..ea2846d 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/barrier.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/barrier.json @@ -18,48 +18,47 @@ } } ], - "gui_light": "front", "display": { "thirdperson_righthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 0, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 0, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [20, 20, 0], - "translation": [-1.75, 1.75, 0], - "scale": [0.7, 0.7, 0.7] + "rotation": [30, 225, 0], + "translation": [2.75, -1.25, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 4.75] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ { "name": "VoxelShapes", "origin": [8, 8, 8], + "color": 0, "children": [0] } ] diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_chair.json index 97317a6..e5560d9 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_deck.json index ef1191d..bf3fc03 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_kitchen_cabinet.json index 2329653..edcf83c 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_mini_stool.json index a549a5f..cf070c5 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_night_stand.json index 5f34276..47e353a 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_night_stand.json @@ -162,38 +162,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_round_table.json index 99c4976..4edfca4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_wall_shelf.json index 2d003a0..7b2bea9 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/birch_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/black_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/black_sofa_single.json index b810ae3..d959f0b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/black_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/black_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blackstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blackstone_kitchen_cabinet.json index dcc1f1a..0aa1ef0 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blackstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blackstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blue_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blue_sofa_single.json index a9761dc..65d45b7 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blue_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/blue_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/bricks_kitchen_cabinet.json index 2e32442..d9afd3e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/brown_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/brown_sofa_single.json index 51c21a8..459ecf1 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/brown_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/brown_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chair.json index b218458..830ac85 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json index b38d685..846e402 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json index 2fe04f6..e1c7772 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json index 4b3b9d5..378273f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json index 23f973b..b0b9942 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json index 9a21cc0..994317e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/clay_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/clay_kitchen_cabinet.json index 81fdffe..7c13d74 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/clay_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/clay_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json index 900cca4..8512af0 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json index 1712883..2c2413f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_chair.json index 3c1ea81..419ca75 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_deck.json index 83e9c26..57c3832 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_kitchen_cabinet.json index bfd8bc2..bffff8c 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_mini_stool.json index 906fbcb..0762043 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_night_stand.json index c323609..83fdb9b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_round_table.json index b9dbd9e..3e2501d 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_wall_shelf.json index 57b60eb..5323820 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/crimson_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json index cdbfb19..2a0aa0f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json index 9f4e2f6..a7b47c8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cyan_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cyan_sofa_single.json index bcc4f83..603fde8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cyan_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/cyan_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_chair.json index 151db54..1227ac3 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_deck.json index 5950231..b27858c 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json index 51ad917..c89bd55 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_mini_stool.json index dffeda8..5baa7d0 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_night_stand.json index 003b572..b8e68c6 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_round_table.json index e4a70ea..055c442 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_wall_shelf.json index 8687520..2547758 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_oak_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json index c26cfa8..967b0f0 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/deck.json index d5ad23a..2ebfe24 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/deck.json @@ -82,39 +82,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 30, 0], - "translation": [0, -3.75, 0], - "scale": [0.65, 0.65, 0.65] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/diorite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/diorite_kitchen_cabinet.json index f28c6d2..2c8c63a 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/diorite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/diorite_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_acacia_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_acacia_wall_shelf.json index 9e201ea..6366378 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_acacia_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_acacia_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_birch_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_birch_wall_shelf.json index cdc290b..3e164c3 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_birch_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_birch_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_crimson_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_crimson_wall_shelf.json index 1cb9d93..d00c7c1 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_crimson_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_crimson_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_dark_oak_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_dark_oak_wall_shelf.json index a15b34e..1bdeae6 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_dark_oak_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_dark_oak_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_jungle_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_jungle_wall_shelf.json index 39c51f6..79aa4b4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_jungle_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_jungle_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_oak_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_oak_wall_shelf.json index c71cfd8..c28113e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_oak_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_oak_wall_shelf.json @@ -191,26 +191,28 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], @@ -218,11 +220,12 @@ }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_spruce_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_spruce_wall_shelf.json index 6d8a5ef..fa56a3d 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_spruce_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_spruce_wall_shelf.json @@ -191,38 +191,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -231,12 +235,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_warped_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_warped_wall_shelf.json index 2d32932..966afc6 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_warped_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/double_warped_wall_shelf.json @@ -190,38 +190,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -230,12 +234,6 @@ "origin": [8, 6, 0.5], "color": 0, "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp.json index f0e3797..865033b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp.json @@ -7,85 +7,170 @@ }, "elements": [ { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 15.99], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#2"} - } - }, - { - "name": "main_ramp_lower", - "from": [0, 0, -0.01], - "to": [11.3, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#2"} - } - }, - { - "name": "main_ramp_upper", - "from": [11.3, 0, -0.01], - "to": [22.6, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#2"} - } - }, - { - "name": "filler_1", "from": [0, 0, 0], "to": [16, 1, 16], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#2"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#2"} + "north": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "south": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "down": {"uv": [16, 16, 0, 0], "texture": "#2"} } }, { - "from": [4, 1, 0], - "to": [15, 12, 1], + "from": [15, 15, 0], + "to": [16, 16, 16], "faces": { - "north": {"uv": [1, 1, 15, 15], "texture": "#2"}, - "east": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "south": {"uv": [15, 1, 1, 15], "texture": "#2"}, - "west": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "up": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "down": {"uv": [13, 2, 14, 1], "texture": "#2"} + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [0, 0, 16, 1], "texture": "#2"}, + "south": {"uv": [15, 0, 16, 1], "texture": "#2"} } }, { - "from": [4, 1, 15], - "to": [15, 12, 16], + "from": [14, 14, 0], + "to": [16, 15, 16], "faces": { - "north": {"uv": [1, 1, 15, 15], "texture": "#2"}, - "east": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "south": {"uv": [15, 1, 1, 15], "texture": "#2"}, - "west": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "up": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "down": {"uv": [13, 2, 14, 1], "texture": "#2"} + "north": {"uv": [0, 1, 2, 2], "texture": "#2"}, + "east": {"uv": [0, 1, 16, 2], "texture": "#2"}, + "south": {"uv": [14, 1, 16, 2], "texture": "#2"} + } + }, + { + "from": [13, 13, 0], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 2, 3, 3], "texture": "#2"}, + "east": {"uv": [0, 2, 16, 3], "texture": "#2"}, + "south": {"uv": [13, 2, 16, 3], "texture": "#2"} + } + }, + { + "from": [12, 12, 0], + "to": [16, 13, 16], + "faces": { + "north": {"uv": [0, 3, 4, 4], "texture": "#2"}, + "east": {"uv": [0, 3, 16, 4], "texture": "#2"}, + "south": {"uv": [12, 3, 16, 4], "texture": "#2"} + } + }, + { + "from": [11, 11, 0], + "to": [16, 12, 16], + "faces": { + "north": {"uv": [0, 4, 5, 5], "texture": "#2"}, + "east": {"uv": [0, 4, 16, 5], "texture": "#2"}, + "south": {"uv": [11, 4, 16, 5], "texture": "#2"} + } + }, + { + "from": [10, 10, 0], + "to": [16, 11, 16], + "faces": { + "north": {"uv": [0, 5, 6, 6], "texture": "#2"}, + "east": {"uv": [0, 5, 16, 6], "texture": "#2"}, + "south": {"uv": [10, 5, 16, 6], "texture": "#2"} + } + }, + { + "from": [9, 9, 0], + "to": [16, 10, 16], + "faces": { + "north": {"uv": [0, 6, 7, 7], "texture": "#2"}, + "east": {"uv": [0, 6, 16, 7], "texture": "#2"}, + "south": {"uv": [9, 6, 16, 7], "texture": "#2"} + } + }, + { + "from": [8, 8, 0], + "to": [16, 9, 16], + "faces": { + "north": {"uv": [0, 7, 8, 8], "texture": "#2"}, + "east": {"uv": [0, 7, 16, 8], "texture": "#2"}, + "south": {"uv": [8, 7, 16, 8], "texture": "#2"} + } + }, + { + "from": [7, 7, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 9, 9], "texture": "#2"}, + "east": {"uv": [0, 8, 16, 9], "texture": "#2"}, + "south": {"uv": [7, 8, 16, 9], "texture": "#2"} + } + }, + { + "from": [6, 6, 0], + "to": [16, 7, 16], + "faces": { + "north": {"uv": [0, 9, 10, 10], "texture": "#2"}, + "east": {"uv": [0, 9, 16, 10], "texture": "#2"}, + "south": {"uv": [6, 9, 16, 10], "texture": "#2"} + } + }, + { + "from": [5, 5, 0], + "to": [16, 6, 16], + "faces": { + "north": {"uv": [0, 10, 11, 11], "texture": "#2"}, + "east": {"uv": [0, 10, 16, 11], "texture": "#2"}, + "south": {"uv": [5, 10, 16, 11], "texture": "#2"} + } + }, + { + "from": [4, 4, 0], + "to": [16, 5, 16], + "faces": { + "north": {"uv": [0, 11, 12, 12], "texture": "#2"}, + "east": {"uv": [0, 11, 16, 12], "texture": "#2"}, + "south": {"uv": [4, 11, 16, 12], "texture": "#2"} + } + }, + { + "from": [3, 3, 0], + "to": [16, 4, 16], + "faces": { + "north": {"uv": [0, 12, 13, 13], "texture": "#2"}, + "east": {"uv": [0, 12, 16, 13], "texture": "#2"}, + "south": {"uv": [3, 12, 16, 13], "texture": "#2"} + } + }, + { + "from": [2, 2, 0], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [0, 13, 14, 14], "texture": "#2"}, + "east": {"uv": [0, 13, 16, 14], "texture": "#2"}, + "south": {"uv": [2, 13, 16, 14], "texture": "#2"} + } + }, + { + "from": [1, 1, 0], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 14, 15, 15], "texture": "#2"}, + "east": {"uv": [0, 14, 16, 15], "texture": "#2"}, + "south": {"uv": [1, 14, 16, 15], "texture": "#2"} + } + }, + { + "from": [-3.56373, 7.89702, 0.001], + "to": [7.74998, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "west": {"uv": [0, 16, 16, 15], "texture": "#2"}, + "up": {"uv": [0, 5, 16, 16], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 0.001], + "to": [19.06169, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [0, 0, 16, 1], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "up": {"uv": [0, 0, 16, 11], "rotation": 90, "texture": "#2"} } } ], @@ -124,20 +209,5 @@ "fixed": { "rotation": [0, 180, 0] } - }, - "groups": [ - 0, - 1, - 2, - { - "name": "fillers", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [3] - }, - 4, - 5 - ] + } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp_corner.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp_corner.json index 322945b..528e1ff 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp_corner.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/glass_ramp_corner.json @@ -7,369 +7,419 @@ }, "elements": [ { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 1.06], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#2"} - } - }, - { - "name": "filler_1", - "from": [-0.75, 0, 0], + "from": [0, 0, 0], "to": [16, 1, 16], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#2"}, - "down": {"uv": [0, 0, 11, 11], "texture": "#2"} + "north": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#2"} } }, { - "from": [14.88909, -4.3033, 10.5], - "to": [15.88909, 18.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [1, 1, 0], + "to": [16, 2, 15], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 14, 15, 15], "texture": "#2"}, + "east": {"uv": [1, 14, 16, 15], "texture": "#2"} } }, { - "from": [13.88909, -4.3033, 10.5], - "to": [14.88909, 16.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [2, 2, 0], + "to": [16, 3, 14], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 13, 14, 14], "texture": "#2"}, + "east": {"uv": [2, 13, 16, 14], "texture": "#2"} } }, { - "from": [11.88909, -4.3033, 10.5], - "to": [12.88909, 14.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [3, 3, 0], + "to": [16, 4, 13], "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} + "north": {"uv": [0, 12, 13, 13], "texture": "#2"}, + "east": {"uv": [3, 12, 16, 13], "texture": "#2"} } }, { - "from": [10.88909, -4.3033, 10.5], - "to": [11.88909, 12.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [4, 4, 0], + "to": [16, 5, 12], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 11, 12, 12], "texture": "#2"}, + "east": {"uv": [4, 11, 16, 12], "texture": "#2"} } }, { - "from": [9.88909, -4.3033, 10.5], - "to": [10.88909, 11.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [5, 5, 0], + "to": [16, 6, 11], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 10, 11, 11], "texture": "#2"}, + "east": {"uv": [5, 10, 16, 11], "texture": "#2"} } }, { - "from": [7.88909, -4.3033, 10.5], - "to": [8.88909, 8.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [6, 6, 0], + "to": [16, 7, 10], "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} + "north": {"uv": [0, 9, 10, 10], "texture": "#2"}, + "east": {"uv": [6, 9, 16, 10], "texture": "#2"} } }, { - "from": [6.88909, -4.3033, 10.5], - "to": [7.88909, 7.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7, 7, 0], + "to": [16, 8, 9], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 8, 9, 9], "texture": "#2"}, + "east": {"uv": [7, 8, 16, 9], "texture": "#2"} } }, { - "from": [5.88909, -4.3033, 10.5], - "to": [6.88909, 5.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [8, 8, 0], + "to": [16, 9, 8], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 7, 8, 8], "texture": "#2"}, + "east": {"uv": [8, 7, 16, 8], "texture": "#2"} } }, { - "from": [2.88909, -4.3033, 10.5], - "to": [3.88909, 1.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [9, 9, 0], + "to": [16, 10, 7], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 6, 7, 7], "texture": "#2"}, + "east": {"uv": [9, 6, 16, 7], "texture": "#2"} } }, { - "from": [0.88909, -4.3033, 10.5], - "to": [1.88909, -1.5533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [10, 10, 0], + "to": [16, 11, 6], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 5, 6, 6], "texture": "#2"}, + "east": {"uv": [10, 5, 16, 6], "texture": "#2"} } }, { - "from": [-0.16091, -4.3033, 10.5], - "to": [0.88909, -2.8033, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [11, 11, 0], + "to": [16, 12, 5], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 4, 5, 5], "texture": "#2"}, + "east": {"uv": [11, 4, 16, 5], "texture": "#2"} } }, { - "from": [3.88909, -4.3033, 10.5], - "to": [4.88909, 2.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [12, 12, 0], + "to": [16, 13, 4], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 3, 4, 4], "texture": "#2"}, + "east": {"uv": [12, 3, 16, 4], "texture": "#2"} } }, { - "from": [1.88909, -4.3033, 10.5], - "to": [2.88909, -0.0533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [13, 13, 0], + "to": [16, 14, 3], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 2, 3, 3], "texture": "#2"}, + "east": {"uv": [13, 2, 16, 3], "texture": "#2"} } }, { - "from": [5.5, 3, 0], - "to": [6.5, 26, 1], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [14, 14, 0], + "to": [16, 15, 2], "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 1, 2, 2], "texture": "#2"}, + "east": {"uv": [14, 1, 16, 2], "texture": "#2"} } }, { - "from": [5.5, 3, 1], - "to": [6.5, 24.5, 2], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [15, 15, 0], + "to": [16, 16, 1], "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [15, 0, 16, 1], "texture": "#2"} } }, { - "from": [5.5, 3, 3], - "to": [6.5, 22, 4], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [7.74998, 7.89702, 0.001], + "to": [19.06169, 8.60502, 1], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [15.00172, 0, 16, 1], "texture": "#2"}, + "up": {"uv": [0, 0, 0.99828, 11], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 4], - "to": [6.5, 20.75, 5], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 0.001], + "to": [7.74998, 8.60502, 9], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "west": {"uv": [0, 15, 8.9956, 16], "texture": "#2"}, + "up": {"uv": [0, 5, 8.9956, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 5], - "to": [6.5, 19.25, 6], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 15], + "to": [-2.81475, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "west": {"uv": [15, 15, 16, 16], "texture": "#2"}, + "up": {"uv": [15, 15.2726, 16, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 7], - "to": [6.5, 16.5, 8], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 14], + "to": [-0.06475, 8.60502, 15], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} + "west": {"uv": [13.99907, 15, 15, 16], "texture": "#2"}, + "up": {"uv": [13.99907, 12.59864, 15, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 8], - "to": [6.5, 15.25, 9], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 13], + "to": [-0.81475, 8.60502, 14], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "west": {"uv": [12.9982, 15, 13.99907, 16], "texture": "#2"}, + "up": {"uv": [12.9982, 13.3288, 13.99907, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 9], - "to": [6.5, 13.75, 10], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 12], + "to": [2.78525, 8.60502, 13], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "west": {"uv": [11.99742, 15, 12.9982, 16], "texture": "#2"}, + "up": {"uv": [11.99742, 9.82816, 12.9982, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 12], - "to": [6.5, 9.5, 13], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 11], + "to": [4.18525, 8.60502, 12], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "west": {"uv": [10.99672, 15, 11.99742, 16], "texture": "#2"}, + "up": {"uv": [10.99672, 8.46722, 11.99742, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 14], - "to": [6.5, 6.5, 15], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 10], + "to": [5.58525, 8.60502, 11], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "west": {"uv": [9.99611, 15, 10.99672, 16], "texture": "#2"}, + "up": {"uv": [9.99611, 7.10628, 10.99672, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 15], - "to": [6.5, 5.25, 16.025], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 9], + "to": [7.08525, 8.60502, 10], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} + "west": {"uv": [8.9956, 15, 9.99611, 16], "texture": "#2"}, + "up": {"uv": [8.9956, 5.64813, 9.99611, 16], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 11], - "to": [6.5, 11, 12], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [7.74998, 7.89702, 7], + "to": [9.89895, 8.60502, 8], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "up": {"uv": [6.99913, 8.91061, 8, 11], "rotation": 90, "texture": "#2"} } }, { - "from": [5.5, 3, 13], - "to": [6.5, 8, 14], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [7.74998, 7.89702, 6], + "to": [11.29895, 8.60502, 7], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} + "up": {"uv": [5.99839, 7.54943, 6.99913, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 5], + "to": [12.69895, 8.60502, 6], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "up": {"uv": [4.99783, 6.18825, 5.99839, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 4], + "to": [14.09895, 8.60502, 5], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "up": {"uv": [3.99746, 4.82707, 4.99783, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 3], + "to": [14.49895, 8.60502, 4], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "up": {"uv": [2.99735, 4.43985, 3.99746, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 2], + "to": [16.99895, 8.60502, 3], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "up": {"uv": [1.99757, 2.00748, 2.99735, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7.74998, 7.89702, 1], + "to": [17.49895, 8.60502, 2], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "up": {"uv": [0.99828, 1.52312, 1.99757, 11], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [4, 7.89702, 11.81475], + "to": [5, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [11.99742, 15, 10.99672, 16], "texture": "#2"}, + "up": {"uv": [11.99742, 8.46722, 10.99672, 16], "texture": "#2"} + } + }, + { + "from": [3, 7.89702, 13.21475], + "to": [4, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [12.9982, 15, 11.99742, 16], "texture": "#2"}, + "up": {"uv": [12.9982, 9.82816, 11.99742, 16], "texture": "#2"} + } + }, + { + "from": [5, 7.89702, 10.41475], + "to": [6, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [10.99672, 15, 9.99611, 16], "texture": "#2"}, + "up": {"uv": [10.99672, 7.10628, 9.99611, 16], "texture": "#2"} + } + }, + { + "from": [6, 7.89702, 8.91475], + "to": [7, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [9.99611, 15, 8.9956, 16], "texture": "#2"}, + "up": {"uv": [9.99611, 5.64813, 8.9956, 16], "texture": "#2"} + } + }, + { + "from": [8, 7.89702, 6.10105], + "to": [9, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [8, 8.91061, 6.99913, 11], "texture": "#2"} + } + }, + { + "from": [10, 7.89702, 3.30105], + "to": [11, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [5.99839, 6.18825, 4.99783, 11], "texture": "#2"} + } + }, + { + "from": [9, 7.89702, 4.70105], + "to": [10, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [6.99913, 7.54943, 5.99839, 11], "texture": "#2"} + } + }, + { + "from": [11, 7.89702, 1.90105], + "to": [12, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [4.99783, 4.82707, 3.99746, 11], "texture": "#2"} + } + }, + { + "from": [13, 7.89702, -0.99895], + "to": [14, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [2.99735, 2.00748, 1.99757, 11], "texture": "#2"} + } + }, + { + "from": [15, 7.89702, -3.06169], + "to": [15.999, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "north": {"uv": [16, 0, 15.00172, 1], "texture": "#2"}, + "east": {"uv": [1, 0, 0, 1], "texture": "#2"}, + "up": {"uv": [0.99828, 0, 0, 11], "texture": "#2"} + } + }, + { + "from": [7, 7.89702, 8.25002], + "to": [15.999, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "east": {"uv": [1, 0, 0, 1], "texture": "#2"}, + "south": {"uv": [8.9956, 15, 0, 16], "texture": "#2"}, + "up": {"uv": [8.9956, 5, 0, 16], "texture": "#2"} + } + }, + { + "from": [-2.81475, 7.89702, 15], + "to": [-2.46578, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "west": {"uv": [15, 15, 16, 16], "texture": "#2"}, + "up": {"uv": [15, 14.93367, 16, 15.2726], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.001, 7.89702, 18.46478], + "to": [1, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [16, 15, 15, 16], "texture": "#2"}, + "up": {"uv": [16, 14.93173, 15, 16], "texture": "#2"} + } + }, + { + "from": [2, 7.89702, 16.86478], + "to": [3, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [13.99907, 15, 12.9982, 16], "texture": "#2"}, + "up": {"uv": [13.99907, 13.37643, 12.9982, 16], "texture": "#2"} + } + }, + { + "from": [1, 7.89702, 16.06475], + "to": [2, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "south": {"uv": [15, 15, 13.99907, 16], "texture": "#2"}, + "up": {"uv": [15, 12.59864, 13.99907, 16], "texture": "#2"} + } + }, + { + "from": [12, 7.89702, 1.75107], + "to": [13, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [3.99746, 4.68191, 2.99735, 11], "texture": "#2"} + } + }, + { + "from": [14, 7.89702, -1.14893], + "to": [15, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "up": {"uv": [1.99757, 1.86241, 0.99828, 11], "texture": "#2"} } } ], @@ -408,34 +458,5 @@ "fixed": { "rotation": [0, 180, 0] } - }, - "groups": [ - 0, - { - "name": "fillers", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [ - 1, - { - "name": "right_face", - "origin": [-0.5, 10, 0.5], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] - }, - { - "name": "left_face", - "origin": [-0.5, 10, 0.5], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] - } - ] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/granite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/granite_kitchen_cabinet.json index 5434c07..77555be 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/granite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/granite_kitchen_cabinet.json @@ -47,38 +47,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gravel_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gravel_kitchen_cabinet.json index e8c3853..5d29259 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gravel_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gravel_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gray_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gray_sofa_single.json index 8d993c1..1fa1877 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gray_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/gray_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/green_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/green_sofa_single.json index 59e28ce..67d1d3f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/green_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/green_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_chair.json index ebdf047..4255c5f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_deck.json index 1d09789..1474de2 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_kitchen_cabinet.json index b846db0..9685d0b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_mini_stool.json index 7ba040a..a21e545 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_night_stand.json index fb03858..497efbf 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_round_table.json index 4341f0f..66831ef 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_wall_shelf.json index dce5fc6..d6b2e41 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/jungle_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_blue_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_blue_sofa_single.json index ddea886..3e96cec 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_blue_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_blue_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_gray_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_gray_sofa_single.json index 1979250..83dd6b9 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_gray_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/light_gray_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/lime_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/lime_sofa_single.json index 6899bfa..85801fa 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/lime_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/lime_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/magenta_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/magenta_sofa_single.json index fa99405..ac267ce 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/magenta_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/magenta_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_acacia_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_acacia_bookshelf.json index dc4a981..e6dc809 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_acacia_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_acacia_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_birch_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_birch_bookshelf.json index 9c687e2..3f6d535 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_birch_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_birch_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_crimson_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_crimson_bookshelf.json index 9c63c0a..88bc686 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_crimson_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_crimson_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_dark_oak_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_dark_oak_bookshelf.json index e31564d..20f0a37 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_dark_oak_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_dark_oak_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_jungle_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_jungle_bookshelf.json index 129f678..d168dd8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_jungle_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_jungle_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_oak_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_oak_bookshelf.json index 355a6bc..2ece984 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_oak_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_oak_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_spruce_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_spruce_bookshelf.json index 48c7dd9..195b071 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_spruce_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_spruce_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_warped_bookshelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_warped_bookshelf.json index 05e8c48..c464be7 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_warped_bookshelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/modern_warped_bookshelf.json @@ -83,39 +83,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], + "rotation": [0, 135, 0], "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] + "scale": [0.625, 0.625, 0.625] }, "head": { "translation": [0, -0.5, -5.25] }, "fixed": { - "translation": [0, 0, -6.5] + "translation": [0, 0, -2.75], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json index c63637a..68d8256 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json index ff50735..7bc8820 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json index 92e0773..cbe2889 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/netherrack_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/netherrack_kitchen_cabinet.json index cbd030c..3ca039f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/netherrack_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/netherrack_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_chair.json index e7f752d..08a2f02 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_chair.json @@ -1,8 +1,213 @@ { - "parent": "modernlife:block/chair", - "render_type": "minecraft:cutout", + "credit": "Made with Blockbench", + "render_type": "cutout", + "texture_size": [64, 64], "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" + "138": "modernlife:block/oak_chair", + "particle": "modernlife:block/oak_chair" + }, + "elements": [ + { + "name": "top", + "from": [2, 7, 2], + "to": [14, 10, 14], + "faces": { + "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, + "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, + "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, + "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, + "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, + "down": {"uv": [12, 0, 6, 6], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [4, 10, 13], + "to": [12, 25, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, + "faces": { + "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, + "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, + "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, + "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, + "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, + "down": {"uv": [2, 0, 0, 0], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [2, 10, 12], + "to": [4, 24, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, + "faces": { + "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, + "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, + "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, + "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, + "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, + "down": {"uv": [2, 10, 3, 11], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [12, 10, 12], + "to": [14, 24, 14], + "faces": { + "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, + "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, + "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, + "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, + "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, + "down": {"uv": [3, 10, 2, 11], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [4, 2, 3], + "to": [12, 4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, + "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [4, 2, 13], + "to": [12, 4, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, + "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [13, 2, 4], + "to": [13, 4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, + "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, + "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, + "down": {"uv": [0, 0, 0, 2], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [3, 2, 4], + "to": [3, 4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, + "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, + "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, + "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, + "down": {"uv": [0, 0, 0, 2], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [12, 0, 2], + "to": [14, 7, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, + "faces": { + "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, + "down": {"uv": [3, 10, 2, 11], "texture": "#138"} + } + }, + { + "name": "back_support", + "from": [2, 0, 2], + "to": [4, 7, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, + "faces": { + "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, + "down": {"uv": [2, 10, 3, 11], "texture": "#138"} + } + }, + { + "name": "front_support", + "from": [2, 0, 12], + "to": [4, 7, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, + "faces": { + "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, + "down": {"uv": [2, 11, 3, 10], "texture": "#138"} + } + }, + { + "name": "front_support", + "from": [12, 0, 12], + "to": [14, 7, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, + "faces": { + "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, + "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, + "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, + "down": {"uv": [3, 11, 2, 10], "texture": "#138"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, -135, 0], + "translation": [0, -1.75, 0], + "scale": [0.54, 0.54, 0.54] + }, + "head": { + "translation": [0, 14.25, 0] + }, + "fixed": { + "translation": [0, -2, -2], + "scale": [0.5, 0.5, 0.5] + } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_deck.json index 5cbd0d7..130fce2 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_kitchen_cabinet.json index 4ca5c57..22f07fe 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_mini_stool.json index 27311f1..72ddebf 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_night_stand.json index 0afb9c0..f8a675b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_round_table.json index 1a59c47..5eeaf81 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_wall_shelf.json index c794cf0..c867ce8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/oak_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/obsidian_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/obsidian_kitchen_cabinet.json index 65353b1..e308b87 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/obsidian_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/obsidian_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ @@ -90,4 +90,5 @@ "children": [0, 1, 2] } ] +} } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/orange_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/orange_sofa_single.json index 1074bfd..4151ba8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/orange_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/orange_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/pink_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/pink_sofa_single.json index 070d3a0..6cf4d17 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/pink_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/pink_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json index 4405cec..20a4c9f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json index 35a3233..50a2bb2 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json index 3f71957..2639c6c 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json index 9f18051..db3daf8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json index 2699c0e..3d3bb40 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json @@ -47,38 +47,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json index 4703162..04ca21f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/purple_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/purple_sofa_single.json index 94314ea..15d245e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/purple_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/purple_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp.json index fcbbbc5..f96f78b 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp.json @@ -7,301 +7,252 @@ }, "elements": [ { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 15.99], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "main_ramp_lower", - "from": [0, 0, -0.01], - "to": [11.3, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "up": {"uv": [8, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#1"} - } - }, - { - "name": "main_ramp_upper", - "from": [11.3, 0, -0.01], - "to": [22.6, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#1"} - } - }, - { - "name": "filler_1", "from": [0, 0, 0], "to": [16, 1, 16], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#1"} + "north": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_2", "from": [1, 1, 0], "to": [16, 2, 16], - "shade": false, "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 13, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 13, 12], "texture": "#1"} + "north": {"uv": [0, 14, 15, 15], "texture": "#1"}, + "east": {"uv": [0, 14, 16, 15], "texture": "#1"}, + "south": {"uv": [1, 14, 16, 15], "texture": "#1"}, + "west": {"uv": [0, 14, 16, 15], "texture": "#1"}, + "up": {"uv": [1, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [1, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_3", "from": [2, 2, 0], "to": [16, 3, 16], - "shade": false, "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#1"} + "north": {"uv": [0, 13, 14, 14], "texture": "#1"}, + "east": {"uv": [0, 13, 16, 14], "texture": "#1"}, + "south": {"uv": [2, 13, 16, 14], "texture": "#1"}, + "west": {"uv": [0, 13, 16, 14], "texture": "#1"}, + "up": {"uv": [2, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [2, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_4", "from": [3, 3, 0], "to": [16, 4, 16], - "shade": false, "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 11, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 11, 12], "texture": "#1"} + "north": {"uv": [0, 12, 13, 13], "texture": "#1"}, + "east": {"uv": [0, 12, 16, 13], "texture": "#1"}, + "south": {"uv": [3, 12, 16, 13], "texture": "#1"}, + "west": {"uv": [0, 12, 16, 13], "texture": "#1"}, + "up": {"uv": [3, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [3, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_5", "from": [4, 4, 0], "to": [16, 5, 16], - "shade": false, "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 12], "texture": "#1"} + "north": {"uv": [0, 11, 12, 12], "texture": "#1"}, + "east": {"uv": [0, 11, 16, 12], "texture": "#1"}, + "south": {"uv": [4, 11, 16, 12], "texture": "#1"}, + "west": {"uv": [0, 11, 16, 12], "texture": "#1"}, + "up": {"uv": [4, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [4, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_6", "from": [5, 5, 0], "to": [16, 6, 16], - "shade": false, "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 9, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 9, 12], "texture": "#1"} + "north": {"uv": [0, 10, 11, 11], "texture": "#1"}, + "east": {"uv": [0, 10, 16, 11], "texture": "#1"}, + "south": {"uv": [5, 10, 16, 11], "texture": "#1"}, + "west": {"uv": [0, 10, 16, 11], "texture": "#1"}, + "up": {"uv": [5, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [5, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_7", "from": [6, 6, 0], "to": [16, 7, 16], - "shade": false, "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 8, 12], "texture": "#1"} + "north": {"uv": [0, 9, 10, 10], "texture": "#1"}, + "east": {"uv": [0, 9, 16, 10], "texture": "#1"}, + "south": {"uv": [6, 9, 16, 10], "texture": "#1"}, + "west": {"uv": [0, 9, 16, 10], "texture": "#1"}, + "up": {"uv": [6, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [6, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_8", "from": [7, 7, 0], "to": [16, 8, 16], - "shade": false, "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 7, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 7, 12], "texture": "#1"} + "north": {"uv": [0, 8, 9, 9], "texture": "#1"}, + "east": {"uv": [0, 8, 16, 9], "texture": "#1"}, + "south": {"uv": [7, 8, 16, 9], "texture": "#1"}, + "west": {"uv": [0, 8, 16, 9], "texture": "#1"}, + "up": {"uv": [7, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [7, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_9", "from": [8, 8, 0], "to": [16, 9, 16], - "shade": false, "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 12], "texture": "#1"} + "north": {"uv": [0, 7, 8, 8], "texture": "#1"}, + "east": {"uv": [0, 7, 16, 8], "texture": "#1"}, + "south": {"uv": [8, 7, 16, 8], "texture": "#1"}, + "west": {"uv": [0, 7, 16, 8], "texture": "#1"}, + "up": {"uv": [8, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [8, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_10", "from": [9, 9, 0], "to": [16, 10, 16], - "shade": false, "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 12], "texture": "#1"} + "north": {"uv": [0, 6, 7, 7], "texture": "#1"}, + "east": {"uv": [0, 6, 16, 7], "texture": "#1"}, + "south": {"uv": [9, 6, 16, 7], "texture": "#1"}, + "west": {"uv": [0, 6, 16, 7], "texture": "#1"}, + "up": {"uv": [9, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [9, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_11", "from": [10, 10, 0], "to": [16, 11, 16], - "shade": false, "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 12], "texture": "#1"} + "north": {"uv": [0, 5, 6, 6], "texture": "#1"}, + "east": {"uv": [0, 5, 16, 6], "texture": "#1"}, + "south": {"uv": [10, 5, 16, 6], "texture": "#1"}, + "west": {"uv": [0, 5, 16, 6], "texture": "#1"}, + "up": {"uv": [10, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [10, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_12", "from": [11, 11, 0], "to": [16, 12, 16], - "shade": false, "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 12], "texture": "#1"} + "north": {"uv": [0, 4, 5, 5], "texture": "#1"}, + "east": {"uv": [0, 4, 16, 5], "texture": "#1"}, + "south": {"uv": [11, 4, 16, 5], "texture": "#1"}, + "west": {"uv": [0, 4, 16, 5], "texture": "#1"}, + "up": {"uv": [11, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [11, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_13", "from": [12, 12, 0], "to": [16, 13, 16], - "shade": false, "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} + "north": {"uv": [0, 3, 4, 4], "texture": "#1"}, + "east": {"uv": [0, 3, 16, 4], "texture": "#1"}, + "south": {"uv": [12, 3, 16, 4], "texture": "#1"}, + "west": {"uv": [0, 3, 16, 4], "texture": "#1"}, + "up": {"uv": [12, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [12, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_14", "from": [13, 13, 0], "to": [16, 14, 16], - "shade": false, "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} + "north": {"uv": [0, 2, 3, 3], "texture": "#1"}, + "east": {"uv": [0, 2, 16, 3], "texture": "#1"}, + "south": {"uv": [13, 2, 16, 3], "texture": "#1"}, + "west": {"uv": [0, 2, 16, 3], "texture": "#1"}, + "up": {"uv": [13, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [13, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_15", "from": [14, 14, 0], "to": [16, 15, 16], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} + "north": {"uv": [0, 1, 2, 2], "texture": "#1"}, + "east": {"uv": [0, 1, 16, 2], "texture": "#1"}, + "south": {"uv": [14, 1, 16, 2], "texture": "#1"}, + "west": {"uv": [0, 1, 16, 2], "texture": "#1"}, + "up": {"uv": [14, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [14, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [15, 15, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 1], "texture": "#1"}, + "south": {"uv": [15, 0, 16, 1], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 1], "texture": "#1"}, + "up": {"uv": [15, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [15, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [-3.56373, 7.89702, 0.001], + "to": [7.74998, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 5, 16, 16], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7.74998, 7.89702, 0.001], + "to": [19.06169, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 1], "texture": "#1"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 11], "rotation": 90, "texture": "#1"} } } ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], + "rotation": [0, 45, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] + "rotation": [0, -135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] + "rotation": [30, 45, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, -90, 0] }, "fixed": { - "rotation": [0, 180, 0] + "scale": [0.5, 0.5, 0.5] } - }, - "groups": [0, 1, 2, - { - "name": "fillers", - "origin": [0, 0, 0], - "children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp_corner.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp_corner.json index 480ffc6..87f9bc4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp_corner.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/ramp_corner.json @@ -7,698 +7,626 @@ }, "elements": [ { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 1.06], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "filler_1", - "from": [-0.75, 0, 0], + "from": [0, 0, 0], "to": [16, 1, 16], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#1"} + "north": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 15, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} } }, { - "name": "filler_2", - "from": [0.5, 1, 0], + "from": [1, 1, 0], "to": [16, 2, 15], - "shade": false, "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 13, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 13, 12], "texture": "#1"} + "north": {"uv": [0, 14, 15, 15], "texture": "#1"}, + "east": {"uv": [1, 14, 16, 15], "texture": "#1"}, + "south": {"uv": [1, 14, 16, 15], "texture": "#1"}, + "west": {"uv": [0, 14, 15, 15], "texture": "#1"}, + "up": {"uv": [1, 0, 16, 15], "texture": "#1"}, + "down": {"uv": [1, 1, 16, 16], "texture": "#1"} } }, { - "name": "filler_3", - "from": [1.5, 2, 0], + "from": [2, 2, 0], "to": [16, 3, 14], - "shade": false, "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#1"} + "north": {"uv": [0, 13, 14, 14], "texture": "#1"}, + "east": {"uv": [2, 13, 16, 14], "texture": "#1"}, + "south": {"uv": [2, 13, 16, 14], "texture": "#1"}, + "west": {"uv": [0, 13, 14, 14], "texture": "#1"}, + "up": {"uv": [2, 0, 16, 14], "texture": "#1"}, + "down": {"uv": [2, 2, 16, 16], "texture": "#1"} } }, { - "name": "filler_4", - "from": [2.5, 3, 0], + "from": [3, 3, 0], "to": [16, 4, 13], - "shade": false, "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 11, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 11, 12], "texture": "#1"} + "north": {"uv": [0, 12, 13, 13], "texture": "#1"}, + "east": {"uv": [3, 12, 16, 13], "texture": "#1"}, + "south": {"uv": [3, 12, 16, 13], "texture": "#1"}, + "west": {"uv": [0, 12, 13, 13], "texture": "#1"}, + "up": {"uv": [3, 0, 16, 13], "texture": "#1"}, + "down": {"uv": [3, 3, 16, 16], "texture": "#1"} } }, { - "name": "filler_5", - "from": [3.5, 4, 0], + "from": [4, 4, 0], "to": [16, 5, 12], - "shade": false, "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 12], "texture": "#1"} + "north": {"uv": [0, 11, 12, 12], "texture": "#1"}, + "east": {"uv": [4, 11, 16, 12], "texture": "#1"}, + "south": {"uv": [4, 11, 16, 12], "texture": "#1"}, + "west": {"uv": [0, 11, 12, 12], "texture": "#1"}, + "up": {"uv": [4, 0, 16, 12], "texture": "#1"}, + "down": {"uv": [4, 4, 16, 16], "texture": "#1"} } }, { - "name": "filler_6", - "from": [4.5, 5, 0], + "from": [5, 5, 0], "to": [16, 6, 11], - "shade": false, "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 9, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 9, 12], "texture": "#1"} + "north": {"uv": [0, 10, 11, 11], "texture": "#1"}, + "east": {"uv": [5, 10, 16, 11], "texture": "#1"}, + "south": {"uv": [5, 10, 16, 11], "texture": "#1"}, + "west": {"uv": [0, 10, 11, 11], "texture": "#1"}, + "up": {"uv": [5, 0, 16, 11], "texture": "#1"}, + "down": {"uv": [5, 5, 16, 16], "texture": "#1"} } }, { - "name": "filler_7", - "from": [5.5, 6, 0], + "from": [6, 6, 0], "to": [16, 7, 10], - "shade": false, "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 8, 12], "texture": "#1"} + "north": {"uv": [0, 9, 10, 10], "texture": "#1"}, + "east": {"uv": [6, 9, 16, 10], "texture": "#1"}, + "south": {"uv": [6, 9, 16, 10], "texture": "#1"}, + "west": {"uv": [0, 9, 10, 10], "texture": "#1"}, + "up": {"uv": [6, 0, 16, 10], "texture": "#1"}, + "down": {"uv": [6, 6, 16, 16], "texture": "#1"} } }, { - "name": "filler_8", - "from": [6.5, 7, 0], + "from": [7, 7, 0], "to": [16, 8, 9], - "shade": false, "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 7, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 7, 12], "texture": "#1"} + "north": {"uv": [0, 8, 9, 9], "texture": "#1"}, + "east": {"uv": [7, 8, 16, 9], "texture": "#1"}, + "south": {"uv": [7, 8, 16, 9], "texture": "#1"}, + "west": {"uv": [0, 8, 9, 9], "texture": "#1"}, + "up": {"uv": [7, 0, 16, 9], "texture": "#1"}, + "down": {"uv": [7, 7, 16, 16], "texture": "#1"} } }, { - "name": "filler_9", - "from": [7.5, 8, 0], + "from": [8, 8, 0], "to": [16, 9, 8], - "shade": false, "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 12], "texture": "#1"} + "north": {"uv": [0, 7, 8, 8], "texture": "#1"}, + "east": {"uv": [8, 7, 16, 8], "texture": "#1"}, + "south": {"uv": [8, 7, 16, 8], "texture": "#1"}, + "west": {"uv": [0, 7, 8, 8], "texture": "#1"}, + "up": {"uv": [8, 0, 16, 8], "texture": "#1"}, + "down": {"uv": [8, 8, 16, 16], "texture": "#1"} } }, { - "name": "filler_10", - "from": [8.5, 9, 0], + "from": [9, 9, 0], "to": [16, 10, 7], - "shade": false, "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 12], "texture": "#1"} + "north": {"uv": [0, 6, 7, 7], "texture": "#1"}, + "east": {"uv": [9, 6, 16, 7], "texture": "#1"}, + "south": {"uv": [9, 6, 16, 7], "texture": "#1"}, + "west": {"uv": [0, 6, 7, 7], "texture": "#1"}, + "up": {"uv": [9, 0, 16, 7], "texture": "#1"}, + "down": {"uv": [9, 9, 16, 16], "texture": "#1"} } }, { - "name": "filler_11", - "from": [9.5, 10, 0], + "from": [10, 10, 0], "to": [16, 11, 6], - "shade": false, "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 12], "texture": "#1"} + "north": {"uv": [0, 5, 6, 6], "texture": "#1"}, + "east": {"uv": [10, 5, 16, 6], "texture": "#1"}, + "south": {"uv": [10, 5, 16, 6], "texture": "#1"}, + "west": {"uv": [0, 5, 6, 6], "texture": "#1"}, + "up": {"uv": [10, 0, 16, 6], "texture": "#1"}, + "down": {"uv": [10, 10, 16, 16], "texture": "#1"} } }, { - "name": "filler_12", - "from": [10.5, 11, 0], + "from": [11, 11, 0], "to": [16, 12, 5], - "shade": false, "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 12], "texture": "#1"} + "north": {"uv": [0, 4, 5, 5], "texture": "#1"}, + "east": {"uv": [11, 4, 16, 5], "texture": "#1"}, + "south": {"uv": [11, 4, 16, 5], "texture": "#1"}, + "west": {"uv": [0, 4, 5, 5], "texture": "#1"}, + "up": {"uv": [11, 0, 16, 5], "texture": "#1"}, + "down": {"uv": [11, 11, 16, 16], "texture": "#1"} } }, { - "name": "filler_13", - "from": [11.5, 12, 0], + "from": [12, 12, 0], "to": [16, 13, 4], - "shade": false, "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} + "north": {"uv": [0, 3, 4, 4], "texture": "#1"}, + "east": {"uv": [12, 3, 16, 4], "texture": "#1"}, + "south": {"uv": [12, 3, 16, 4], "texture": "#1"}, + "west": {"uv": [0, 3, 4, 4], "texture": "#1"}, + "up": {"uv": [12, 0, 16, 4], "texture": "#1"}, + "down": {"uv": [12, 12, 16, 16], "texture": "#1"} } }, { - "name": "filler_14", - "from": [12.5, 13, 0], + "from": [13, 13, 0], "to": [16, 14, 3], - "shade": false, "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} + "north": {"uv": [0, 2, 3, 3], "texture": "#1"}, + "east": {"uv": [13, 2, 16, 3], "texture": "#1"}, + "south": {"uv": [13, 2, 16, 3], "texture": "#1"}, + "west": {"uv": [0, 2, 3, 3], "texture": "#1"}, + "up": {"uv": [13, 0, 16, 3], "texture": "#1"}, + "down": {"uv": [13, 13, 16, 16], "texture": "#1"} } }, { - "name": "filler_15", - "from": [13.5, 14, 0], + "from": [14, 14, 0], "to": [16, 15, 2], - "shade": false, "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} + "north": {"uv": [0, 1, 2, 2], "texture": "#1"}, + "east": {"uv": [14, 1, 16, 2], "texture": "#1"}, + "south": {"uv": [14, 1, 16, 2], "texture": "#1"}, + "west": {"uv": [0, 1, 2, 2], "texture": "#1"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#1"}, + "down": {"uv": [14, 14, 16, 16], "texture": "#1"} } }, { - "from": [14.88909, -4.3033, 10.5], - "to": [15.88909, 18.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [15, 15, 0], + "to": [16, 16, 1], "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [1, 0.1413, 0, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "east": {"uv": [15, 0, 16, 1], "texture": "#1"}, + "south": {"uv": [15, 0, 16, 1], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [15, 0, 16, 1], "texture": "#1"}, + "down": {"uv": [15, 15, 16, 16], "texture": "#1"} } }, { - "from": [13.88909, -4.3033, 10.5], - "to": [14.88909, 16.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 0.001], + "to": [19.06169, 8.60502, 1], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [2, 0.99, 1, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "east": {"uv": [15.00172, 0, 16, 1], "texture": "#1"}, + "up": {"uv": [0, 0, 0.99828, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [12.88909, -4.3033, 10.5], - "to": [13.88909, 15.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 1], + "to": [18.39895, 8.60502, 2], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [3, 1.7, 2, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.05875, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [0.99828, 0.6463, 1.99757, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [11.88909, -4.3033, 10.5], - "to": [12.88909, 14.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 2], + "to": [16.99895, 8.60502, 3], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [4, 2.54, 3, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.1825, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [1.99757, 2.00748, 2.99735, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [10.88909, -4.3033, 10.5], - "to": [11.88909, 12.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 3], + "to": [15.49895, 8.60502, 4], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [5, 3.25, 4, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.31508, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [2.99735, 3.46589, 3.99746, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [9.88909, -4.3033, 10.5], - "to": [10.88909, 11.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 4], + "to": [14.09895, 8.60502, 5], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [6, 4.24, 5, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.43882, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [3.99746, 4.82707, 4.99783, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [8.88909, -4.3033, 10.5], - "to": [9.88909, 9.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 5], + "to": [12.69895, 8.60502, 6], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [7, 4.95, 6, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.56257, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [4.99783, 6.18825, 5.99839, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [7.88909, -4.3033, 10.5], - "to": [8.88909, 8.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 6], + "to": [11.29895, 8.60502, 7], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [8, 5.79, 7, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.68631, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [5.99839, 7.54943, 6.99913, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [6.88909, -4.3033, 10.5], - "to": [7.88909, 7.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 7], + "to": [9.89895, 8.60502, 8], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [9, 6.5, 8, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.81006, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [6.99913, 8.91061, 8, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [5.88909, -4.3033, 10.5], - "to": [6.88909, 5.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [7.74998, 7.89702, 8], + "to": [8.49895, 8.60502, 8.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [10, 7.35, 9, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.9338, 0, 1, 1], "texture": "#1"}, + "up": {"uv": [8, 10.27179, 8.99988, 11], "rotation": 90, "texture": "#1"} } }, { - "from": [2.88909, -4.3033, 10.5], - "to": [3.88909, 1.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 0.001], + "to": [7.74998, 8.60502, 9], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [13, 9.75, 12, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [0, 15, 8.9956, 16], "texture": "#1"}, + "up": {"uv": [0, 5, 8.9956, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [0.88909, -4.3033, 10.5], - "to": [1.88909, -1.5533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 9], + "to": [7.08525, 8.60502, 10], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [15, 11.45, 14, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.05892, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [8.9956, 15, 9.99611, 16], "texture": "#1"}, + "up": {"uv": [8.9956, 5.64813, 9.99611, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [-0.16091, -4.3033, 10.5], - "to": [0.88909, -2.8033, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 10], + "to": [5.58525, 8.60502, 11], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [16, 12.15, 15, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 1.27], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.19148, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [9.99611, 15, 10.99672, 16], "texture": "#1"}, + "up": {"uv": [9.99611, 7.10628, 10.99672, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [4.88909, -4.3033, 10.5], - "to": [5.88909, 4.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 11], + "to": [4.18525, 8.60502, 12], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [11, 8.2, 10, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.3152, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [10.99672, 15, 11.99742, 16], "texture": "#1"}, + "up": {"uv": [10.99672, 8.46722, 11.99742, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [3.88909, -4.3033, 10.5], - "to": [4.88909, 2.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 12], + "to": [2.78525, 8.60502, 13], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [12, 8.9, 11, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.43892, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [11.99742, 15, 12.9982, 16], "texture": "#1"}, + "up": {"uv": [11.99742, 9.82816, 12.9982, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [1.88909, -4.3033, 10.5], - "to": [2.88909, -0.0533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, + "from": [-3.56373, 7.89702, 13], + "to": [1.38525, 8.60502, 14], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [14, 10.6, 13, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} + "north": {"uv": [0.56265, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [12.9982, 15, 13.99907, 16], "texture": "#1"}, + "up": {"uv": [12.9982, 11.1891, 13.99907, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [5.5, 3, 0], - "to": [6.5, 26, 1], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 14], + "to": [-0.06475, 8.60502, 15], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "north": {"uv": [0.69079, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [13.99907, 15, 15, 16], "texture": "#1"}, + "up": {"uv": [13.99907, 12.59864, 15, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [5.5, 3, 1], - "to": [6.5, 24.5, 2], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [-3.56373, 7.89702, 15], + "to": [-1.41475, 8.60502, 15.999], + "rotation": {"angle": 45, "axis": "z", "origin": [7.74898, 8.25102, 8]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 0.85, 2, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "north": {"uv": [0.81009, 0, 1, 1], "texture": "#1"}, + "west": {"uv": [15, 15, 16, 16], "texture": "#1"}, + "up": {"uv": [15, 13.91098, 16, 16], "rotation": 90, "texture": "#1"} } }, { - "from": [5.5, 3, 2], - "to": [6.5, 23.5, 3], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [7, 7.89702, 8.25002], + "to": [15.999, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [2, 1.41, 3, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0, 1], "texture": "#1"}, + "south": {"uv": [8.9956, 15, 0, 16], "texture": "#1"}, + "up": {"uv": [8.9956, 5, 0, 16], "texture": "#1"} } }, { - "from": [5.5, 3, 3], - "to": [6.5, 22, 4], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [15, 7.89702, -3.06169], + "to": [15.999, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [3, 2.27, 4, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "north": {"uv": [16, 0, 15.00172, 1], "texture": "#1"}, + "east": {"uv": [1, 0, 0, 1], "texture": "#1"}, + "up": {"uv": [0.99828, 0, 0, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 4], - "to": [6.5, 20.75, 5], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [14, 7.89702, -2.39895], + "to": [15, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [4, 2.97, 5, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.05875, 1], "texture": "#1"}, + "up": {"uv": [1.99757, 0.6463, 0.99828, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 5], - "to": [6.5, 19.25, 6], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [13, 7.89702, -0.99895], + "to": [14, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [5, 3.82, 6, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.1825, 1], "texture": "#1"}, + "up": {"uv": [2.99735, 2.00748, 1.99757, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 6], - "to": [6.5, 18, 7], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [12, 7.89702, 0.50105], + "to": [13, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [6, 4.52, 7, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.31508, 1], "texture": "#1"}, + "up": {"uv": [3.99746, 3.46589, 2.99735, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 7], - "to": [6.5, 16.5, 8], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [11, 7.89702, 1.90105], + "to": [12, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [7, 5.37, 8, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.43882, 1], "texture": "#1"}, + "up": {"uv": [4.99783, 4.82707, 3.99746, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 8], - "to": [6.5, 15.25, 9], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [9, 7.89702, 4.70105], + "to": [10, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [8, 6.08, 9, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.68631, 1], "texture": "#1"}, + "up": {"uv": [6.99913, 7.54943, 5.99839, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 9], - "to": [6.5, 13.75, 10], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [10, 7.89702, 3.30105], + "to": [11, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [9, 6.92, 10, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.56257, 1], "texture": "#1"}, + "up": {"uv": [5.99839, 6.18825, 4.99783, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 12], - "to": [6.5, 9.5, 13], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [8, 7.89702, 6.10105], + "to": [9, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [12, 9.33, 13, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.81006, 1], "texture": "#1"}, + "up": {"uv": [8, 8.91061, 6.99913, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 14], - "to": [6.5, 6.5, 15], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [7.001, 7.89702, 7.50105], + "to": [8, 8.60502, 8.25002], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [14, 11.03, 15, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.9338, 1], "texture": "#1"}, + "up": {"uv": [8.99988, 10.27179, 8, 11], "texture": "#1"} } }, { - "from": [5.5, 3, 15], - "to": [6.5, 5.25, 16.025], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [6, 7.89702, 8.91475], + "to": [7, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [15, 11.73, 16, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.05892, 1], "texture": "#1"}, + "south": {"uv": [9.99611, 15, 8.9956, 16], "texture": "#1"}, + "up": {"uv": [9.99611, 5.64813, 8.9956, 16], "texture": "#1"} } }, { - "from": [5.5, 3, 10], - "to": [6.5, 12.25, 11], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [5, 7.89702, 10.41475], + "to": [6, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [10, 7.77, 11, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.19148, 1], "texture": "#1"}, + "south": {"uv": [10.99672, 15, 9.99611, 16], "texture": "#1"}, + "up": {"uv": [10.99672, 7.10628, 9.99611, 16], "texture": "#1"} } }, { - "from": [5.5, 3, 11], - "to": [6.5, 11, 12], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [3, 7.89702, 13.21475], + "to": [4, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [11, 8.48, 12, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.43892, 1], "texture": "#1"}, + "south": {"uv": [12.9982, 15, 11.99742, 16], "texture": "#1"}, + "up": {"uv": [12.9982, 9.82816, 11.99742, 16], "texture": "#1"} } }, { - "from": [5.5, 3, 13], - "to": [6.5, 8, 14], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, + "from": [4, 7.89702, 11.81475], + "to": [5, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [13, 10.17, 14, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + "east": {"uv": [1, 0, 0.3152, 1], "texture": "#1"}, + "south": {"uv": [11.99742, 15, 10.99672, 16], "texture": "#1"}, + "up": {"uv": [11.99742, 8.46722, 10.99672, 16], "texture": "#1"} + } + }, + { + "from": [2, 7.89702, 14.61475], + "to": [3, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "east": {"uv": [1, 0, 0.56265, 1], "texture": "#1"}, + "south": {"uv": [13.99907, 15, 12.9982, 16], "texture": "#1"}, + "up": {"uv": [13.99907, 11.1891, 12.9982, 16], "texture": "#1"} + } + }, + { + "from": [1, 7.89702, 16.06475], + "to": [2, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "east": {"uv": [1, 0, 0.69079, 1], "texture": "#1"}, + "south": {"uv": [15, 15, 13.99907, 16], "texture": "#1"}, + "up": {"uv": [15, 12.59864, 13.99907, 16], "texture": "#1"} + } + }, + { + "from": [0.001, 7.89702, 17.41475], + "to": [1, 8.60502, 19.56373], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 8.25102, 8.25102]}, + "faces": { + "east": {"uv": [1, 0, 0.81009, 1], "texture": "#1"}, + "south": {"uv": [16, 15, 15, 16], "texture": "#1"}, + "up": {"uv": [16, 13.91098, 15, 16], "texture": "#1"} } } ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], + "rotation": [0, 45, 0], "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] + "rotation": [0, -135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] + "rotation": [30, 45, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, -90, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, -90, 0], + "scale": [0.5, 0.5, 0.5] } }, - "groups": [0, + "groups": [ { "name": "fillers", "origin": [0, 0, 0], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + "color": 0, + "children": [ { "name": "right_face", "origin": [-0.5, 10, 0.5], - "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] + "color": 0, + "children": [] }, { "name": "left_face", "origin": [-0.5, 10, 0.5], - "children": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] - } + "color": 0, + "children": [] + }, + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 ] - } + }, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49 ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sand_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sand_kitchen_cabinet.json index aaadbb4..ed6a593 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sand_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sand_kitchen_cabinet.json @@ -47,38 +47,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json index 99cde9e..840ad93 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sofa_single.json index 03b6f39..4867695 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/red_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sand_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sand_kitchen_cabinet.json index b2d7239..b1cefcb 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sand_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sand_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sandstone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sandstone_kitchen_cabinet.json index 34be937..20a806f 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sandstone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/sandstone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json index e00b368..01fb9d7 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_chair.json index 4588801..fcf78fc 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_deck.json index f6e7b74..291ab64 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_kitchen_cabinet.json index 55635bc..7af2db5 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_mini_stool.json index b12290f..cd7130a 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_night_stand.json index c92d489..8f99b2e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_night_stand.json @@ -160,38 +160,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_round_table.json index 761d56f..cd12d1e 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_wall_shelf.json index 7e7779d..7693942 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/spruce_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json index 545900e..198dca4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json @@ -1,93 +1,360 @@ { "credit": "Made with Blockbench", "ambientocclusion": false, - "texture_size": [64, 64], + "texture_size": [ + 64, + 64 + ], "textures": { "64": "modernlife:block/stone_bricks_kitchen_cabinet", "particle": "block/stone" }, "elements": [ { - "from": [0, 0, 0], - "to": [16, 16, 15], + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 15 + ], "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} + "north": { + "uv": [ + 10.66667, + 0, + 16, + 5.33333 + ], + "texture": "#64" + }, + "east": { + "uv": [ + 10.33333, + 0, + 5.33333, + 5.33333 + ], + "texture": "#64" + }, + "south": { + "uv": [ + 0, + 0, + 5.33333, + 5.33333 + ], + "texture": "#64" + }, + "west": { + "uv": [ + 5.33333, + 0, + 10.33333, + 5.33333 + ], + "texture": "#64" + }, + "up": { + "uv": [ + 5.33333, + 10.33333, + 0, + 5.33333 + ], + "texture": "#64" + }, + "down": { + "uv": [ + 10.66667, + 5.33333, + 5.33333, + 10.33333 + ], + "texture": "#64" + } } }, { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, + "from": [ + 5, + 5, + 15 + ], + "to": [ + 7, + 7, + 16 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6, + 4, + 15 + ] + }, "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} + "north": { + "uv": [ + 10.33333, + 0, + 10.66667, + 1.33333 + ], + "texture": "#64" + }, + "east": { + "uv": [ + 11.33334, + 5.33333, + 11, + 6 + ], + "texture": "#64" + }, + "south": { + "uv": [ + 10.66666, + 5.33333, + 11.33334, + 6 + ], + "texture": "#64" + }, + "west": { + "uv": [ + 10.66666, + 5.33333, + 11, + 6 + ], + "texture": "#64" + }, + "up": { + "uv": [ + 10.66666, + 5.33333, + 11.33334, + 5.66666 + ], + "texture": "#64" + }, + "down": { + "uv": [ + 10.66666, + 5.66667, + 11.33334, + 6 + ], + "texture": "#64" + } } }, { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, + "from": [ + 9, + 5, + 15 + ], + "to": [ + 11, + 7, + 16 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 4, + 15 + ] + }, "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} + "north": { + "uv": [ + 10.66667, + 0, + 10.33333, + 1.33333 + ], + "texture": "#64" + }, + "east": { + "uv": [ + 11, + 5.33333, + 10.66666, + 6 + ], + "texture": "#64" + }, + "south": { + "uv": [ + 11.33334, + 5.33333, + 10.66666, + 6 + ], + "texture": "#64" + }, + "west": { + "uv": [ + 11, + 5.33333, + 11.33334, + 6 + ], + "texture": "#64" + }, + "up": { + "uv": [ + 11.33334, + 5.33333, + 10.66666, + 5.66666 + ], + "texture": "#64" + }, + "down": { + "uv": [ + 11.33334, + 5.66667, + 10.66666, + 6 + ], + "texture": "#64" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [ + 75, + -135, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [ + 75, + -135, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [ + 0, + -45, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [ + 0, + -45, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.25, + 0.25, + 0.25 + ] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 30, + 45, + 0 + ], + "scale": [ + 0.625, + 0.625, + 0.625 + ] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 0, + -0.25 + ] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [ + 0, + 180, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] } }, "groups": [ { "name": "VoxelShapes", - "origin": [0, 0, 0], + "origin": [ + 0, + 0, + 0 + ], "color": 0, - "children": [0, 1, 2] + "children": [ + 0, + 1, + 2 + ] } ] } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_kitchen_cabinet.json index 849653e..94c40c4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/stone_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/terracotta_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/terracotta_kitchen_cabinet.json index 6ef2925..a763fa4 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/terracotta_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/terracotta_kitchen_cabinet.json @@ -48,38 +48,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_chair.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_chair.json index b758af3..a83edcf 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_chair.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_chair.json @@ -176,39 +176,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 135, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -135, 0], "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] + "scale": [0.54, 0.54, 0.54] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 14.25, 0] }, "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], + "translation": [0, -2, -2], "scale": [0.5, 0.5, 0.5] } } diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_deck.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_deck.json index 21e3c3a..690c9c7 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_deck.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_deck.json @@ -85,39 +85,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, -2.5], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, -7, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] + "rotation": [90, 0, -180], + "translation": [0, 0, 3.5], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_kitchen_cabinet.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_kitchen_cabinet.json index dcd29c2..e2096e8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_kitchen_cabinet.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_kitchen_cabinet.json @@ -100,38 +100,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 0, -0.25] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_mini_stool.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_mini_stool.json index 31427ad..2f28817 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_mini_stool.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_mini_stool.json @@ -127,39 +127,39 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [-90, 0, 0], + "translation": [0, 0, -8.5] }, "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_night_stand.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_night_stand.json index f06385e..a27edb8 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_night_stand.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_night_stand.json @@ -161,38 +161,37 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, -135, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 180, 0] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_round_table.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_round_table.json index 0dd26b0..4c36098 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_round_table.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_round_table.json @@ -152,38 +152,38 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, 45, 0], + "rotation": [30, 225, 0], "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [90, -90, -180] }, "fixed": { - "rotation": [0, 180, 0] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } } } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_wall_shelf.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_wall_shelf.json index adcfa86..c042b78 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_wall_shelf.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/warped_wall_shelf.json @@ -100,38 +100,42 @@ ], "display": { "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] + "translation": [-2.25, -0.75, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "translation": [0, 5, -14.5] }, "fixed": { "rotation": [0, 180, 0], - "translation": [0, 0, -8] + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/white_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/white_sofa_single.json index 2fb6fbc..f5acf53 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/white_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/white_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [ diff --git a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/yellow_sofa_single.json b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/yellow_sofa_single.json index 7d00439..0611e13 100644 --- a/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/yellow_sofa_single.json +++ b/src/main/resources/resourcepacks/modernlifepatch/assets/modernlife/models/block/yellow_sofa_single.json @@ -91,39 +91,37 @@ ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] }, "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] }, "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] + "rotation": [0, 0, 180] }, "fixed": { - "translation": [0, 0, -6.5] + "rotation": [0, 90, 0], + "scale": [0.5, 0.5, 0.5] } }, "groups": [