版本:1.20.1-1.5.0-beta
(以下内容迁移自1.18.2) * 更变了约128个部分摩登方块的手持样式,使其更符合mc(工作量太大了,小喵弄了好久,我调整也花了近2个小时) * 调整了斜坡Ramp的模型(小喵搞的) * 根据FrameBlock调整了斜坡方块的显示,时其更自然些
This commit is contained in:
parent
8079fa6992
commit
272172457a
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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<ISpecialHitBoxType, OutlineRender> OUTLINE_RENDERERS = new HashMap<>();
|
||||
private static final Set<ISpecialHitBoxType> 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() { }
|
||||
}
|
||||
|
|
@ -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<Direction> getFaceDirection();
|
||||
String getSTName();
|
||||
SpecialHitBoxBlockType getSpecialHitBoxType();
|
||||
}
|
||||
|
|
@ -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.<br>
|
||||
* 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<Direction> directionEnumProperty) { return state.getValue(directionEnumProperty); }
|
||||
|
||||
default void rotateMatrix(PoseStack poseStack, BlockState state, EnumProperty<Direction> 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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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<Direction> axis) {
|
||||
OutlineRender.super.rotateMatrix(poseStack, state, axis);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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<Direction> facing;
|
||||
SpecialHitBoxBlockType(boolean hasSpecialHitbox, EnumProperty<Direction> facing) {
|
||||
this.specialHitbox = hasSpecialHitbox;
|
||||
this.facing = facing;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasSpecialHitbox() {
|
||||
return specialHitbox;
|
||||
}
|
||||
|
||||
@Override
|
||||
public EnumProperty<Direction> getFaceDirection() {
|
||||
return facing;
|
||||
}
|
||||
@Override
|
||||
public String getSTName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpecialHitBoxBlockType getSpecialHitBoxType() {
|
||||
return this;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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<Direction> FACING;
|
||||
|
||||
@Override
|
||||
public boolean hasSpecialHitbox() {
|
||||
return SpecialHitBoxBlockType.RAMP.hasSpecialHitbox();
|
||||
}
|
||||
|
||||
@Override
|
||||
public EnumProperty<Direction> getFaceDirection() {
|
||||
return SpecialHitBoxBlockType.RAMP.getFaceDirection();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getSTName() {
|
||||
return SpecialHitBoxBlockType.RAMP.getSTName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpecialHitBoxBlockType getSpecialHitBoxType() {
|
||||
return SpecialHitBoxBlockType.RAMP;
|
||||
}
|
||||
}
|
||||
|
|
@ -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() { }
|
||||
}
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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": [
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user