diff --git a/src/main/java/com/atsuishio/superbwarfare/client/model/item/RpgItemModel.java b/src/main/java/com/atsuishio/superbwarfare/client/model/item/RpgItemModel.java index a44e555e8..de2544007 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/model/item/RpgItemModel.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/model/item/RpgItemModel.java @@ -31,6 +31,16 @@ public class RpgItemModel extends CustomGunModel { return Mod.loc("textures/item/rpg.png"); } + @Override + public ResourceLocation getLODModelResource(RpgItem animatable) { + return Mod.loc("geo/lod/rpg.geo.json"); + } + + @Override + public ResourceLocation getLODTextureResource(RpgItem animatable) { + return Mod.loc("textures/item/lod/rpg.png"); + } + @Override public void setCustomAnimations(RpgItem animatable, long instanceId, AnimationState animationState) { Player player = Minecraft.getInstance().player; diff --git a/src/main/java/com/atsuishio/superbwarfare/client/model/item/SecondaryCataclysmModel.java b/src/main/java/com/atsuishio/superbwarfare/client/model/item/SecondaryCataclysmModel.java index 2dcf27746..112d191a3 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/model/item/SecondaryCataclysmModel.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/model/item/SecondaryCataclysmModel.java @@ -30,6 +30,16 @@ public class SecondaryCataclysmModel extends CustomGunModel return Mod.loc("textures/item/secondary_cataclysm.png"); } + @Override + public ResourceLocation getLODModelResource(SecondaryCataclysm animatable) { + return Mod.loc("geo/lod/secondary_cataclysm.geo.json"); + } + + @Override + public ResourceLocation getLODTextureResource(SecondaryCataclysm animatable) { + return Mod.loc("textures/item/lod/secondary_cataclysm.png"); + } + @Override public void setCustomAnimations(SecondaryCataclysm animatable, long instanceId, AnimationState animationState) { Player player = Minecraft.getInstance().player; diff --git a/src/main/java/com/atsuishio/superbwarfare/client/model/item/SentinelItemModel.java b/src/main/java/com/atsuishio/superbwarfare/client/model/item/SentinelItemModel.java index 888a34efd..7e5785790 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/model/item/SentinelItemModel.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/model/item/SentinelItemModel.java @@ -30,6 +30,16 @@ public class SentinelItemModel extends CustomGunModel { return Mod.loc("textures/item/sentinel.png"); } + @Override + public ResourceLocation getLODModelResource(SentinelItem animatable) { + return Mod.loc("geo/lod/sentinel.geo.json"); + } + + @Override + public ResourceLocation getLODTextureResource(SentinelItem animatable) { + return Mod.loc("textures/item/lod/sentinel.png"); + } + @Override public void setCustomAnimations(SentinelItem animatable, long instanceId, AnimationState animationState) { Player player = Minecraft.getInstance().player; diff --git a/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/RpgItemRenderer.java b/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/RpgItemRenderer.java index 24b22fffd..0a1f01dc0 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/RpgItemRenderer.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/RpgItemRenderer.java @@ -10,6 +10,7 @@ import com.mojang.blaze3d.vertex.VertexConsumer; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.MultiBufferSource; import net.minecraft.client.renderer.RenderType; +import net.minecraft.world.item.ItemDisplayContext; import net.minecraft.world.item.ItemStack; import software.bernie.geckolib.animatable.GeoItem; import software.bernie.geckolib.cache.object.GeoBone; @@ -35,8 +36,11 @@ public class RpgItemRenderer extends CustomGunRenderer { var player = mc.player; if (player == null) return; ItemStack itemStack = player.getMainHandItem(); + if (itemStack.getItem() instanceof GunItem && GeoItem.getId(itemStack) == this.getInstanceId(animatable)) { - AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 0.625, 0.7); + if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND || this.renderPerspective == ItemDisplayContext.THIRD_PERSON_RIGHT_HAND) { + AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 0.625, 0.7); + } } if (renderingArms) { diff --git a/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/SecondaryCataclysmRenderer.java b/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/SecondaryCataclysmRenderer.java index e1710eae5..14663802b 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/SecondaryCataclysmRenderer.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/renderer/gun/SecondaryCataclysmRenderer.java @@ -10,6 +10,7 @@ import com.mojang.blaze3d.vertex.VertexConsumer; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.MultiBufferSource; import net.minecraft.client.renderer.RenderType; +import net.minecraft.world.item.ItemDisplayContext; import net.minecraft.world.item.ItemStack; import software.bernie.geckolib.animatable.GeoItem; import software.bernie.geckolib.cache.object.GeoBone; @@ -35,8 +36,11 @@ public class SecondaryCataclysmRenderer extends CustomGunRenderer { var player = mc.player; if (player == null) return; ItemStack itemStack = player.getMainHandItem(); + + boolean needHide = name.equals("wires") || name.equals("charge_illuminated"); + if (itemStack.getItem() instanceof GunItem && GeoItem.getId(itemStack) == this.getInstanceId(animatable)) { - if (this.renderPerspective != ItemDisplayContext.FIRST_PERSON_RIGHT_HAND) { - if (name.equals("wires")) { + if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND || this.renderPerspective == ItemDisplayContext.THIRD_PERSON_RIGHT_HAND) { + + var cap = itemStack.getCapability(Capabilities.EnergyStorage.ITEM); + var flag = cap != null && cap.getEnergyStored() > 0; + + + if (name.equals("charge_illuminated")) { + bone.setHidden(!flag); + bone.setRotZ((System.currentTimeMillis() % 36000000) / 200f); + } + + ItemModelHelper.handleGunAttachments(bone, itemStack, name); + AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 1.53125, 0.6); + + if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND) { + AnimationHelper.handleZoomCrossHair(currentBuffer, renderType, name, stack, bone, buffer, 0, 0.265, -0.05, 0.075f, 255, 0, 0, 255, "apex_3x", false); + } else { + if (name.equals("wires")) { + bone.setHidden(true); + } + } + } else { + ItemModelHelper.hideAllAttachments(bone, name); + if (needHide) { bone.setHidden(true); } } - - var cap = itemStack.getCapability(Capabilities.EnergyStorage.ITEM); - var flag = cap != null && cap.getEnergyStored() > 0; - - if (name.equals("charge_illuminated")) { - bone.setHidden(!flag); - bone.setRotZ((System.currentTimeMillis() % 36000000) / 200f); + } else { + ItemModelHelper.hideAllAttachments(bone, name); + if (needHide) { + bone.setHidden(true); } - - AnimationHelper.handleZoomCrossHair(currentBuffer, renderType, name, stack, bone, buffer, 0, 0.265, -0.05, 0.075f, 255, 0, 0, 255, "apex_3x", false); - AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 1.53125, 0.6); - } else if (name.equals("charge_illuminated") || name.equals("wires")) { - bone.setHidden(true); } if (renderingArms) { diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java index d2bb1e71c..5f6bf9af9 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java @@ -6,6 +6,7 @@ import com.atsuishio.superbwarfare.config.server.VehicleConfig; import com.atsuishio.superbwarfare.entity.vehicle.base.*; import com.atsuishio.superbwarfare.entity.vehicle.damage.DamageModifier; import com.atsuishio.superbwarfare.entity.vehicle.weapon.*; +import com.atsuishio.superbwarfare.event.ClientEventHandler; import com.atsuishio.superbwarfare.event.ClientMouseHandler; import com.atsuishio.superbwarfare.init.ModDamageTypes; import com.atsuishio.superbwarfare.init.ModItems; @@ -1017,7 +1018,7 @@ public class A10Entity extends ContainerMobileVehicleEntity implements GeoEntity @Override public double getMouseSensitivity() { - return 0.07; + return ClientEventHandler.zoomVehicle ? 0.03 : 0.07; } @Override diff --git a/src/main/resources/assets/superbwarfare/geo/lod/rpg.geo.json b/src/main/resources/assets/superbwarfare/geo/lod/rpg.geo.json new file mode 100644 index 000000000..3220af1a9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/geo/lod/rpg.geo.json @@ -0,0 +1,181 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.rpg", + "texture_width": 32, + "texture_height": 32, + "visible_bounds_width": 6, + "visible_bounds_height": 2.5, + "visible_bounds_offset": [0, 0.75, 0] + }, + "bones": [ + { + "name": "group2", + "pivot": [0.14583, 0.97708, -2.17708], + "cubes": [ + { + "origin": [-1.16133, 0.20467, -0.26387], + "size": [2.2816, 2.2816, 19.4044], + "pivot": [-0.02053, 1.34547, 2.44823], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [15, 1], "uv_size": [2, 2]}, + "east": {"uv": [0, 0], "uv_size": [12, 2]}, + "south": {"uv": [14, 15], "uv_size": [2, 2]}, + "west": {"uv": [0, 2], "uv_size": [12, 2]}, + "up": {"uv": [0, 4], "uv_size": [2, 12]}, + "down": {"uv": [2, 16], "uv_size": [2, -12]} + } + }, + { + "origin": [-0.87613, 0.48987, 19.14053], + "size": [1.7112, 1.7112, 9.3948], + "pivot": [-0.02053, 1.34547, 26.38433], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [17, 18], "uv_size": [2, 1]}, + "east": {"uv": [12, 14], "uv_size": [6, 1]}, + "south": {"uv": [18, 17], "uv_size": [2, 1]}, + "west": {"uv": [15, 0], "uv_size": [6, 1]}, + "up": {"uv": [6, 6], "uv_size": [2, 6]}, + "down": {"uv": [8, 12], "uv_size": [2, -6]} + } + }, + { + "origin": [-0.75635, 0.60965, -10.06049], + "size": [1.47163, 1.47163, 11.03724], + "pivot": [-0.02053, 1.34547, 2.44823], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [16, 9], "uv_size": [1, 1]}, + "east": {"uv": [12, 3], "uv_size": [8, 1]}, + "south": {"uv": [19, 6], "uv_size": [1, 1]}, + "west": {"uv": [12, 13], "uv_size": [8, 1]}, + "up": {"uv": [8, 12], "uv_size": [1, 8]}, + "down": {"uv": [9, 20], "uv_size": [1, -8]} + } + }, + { + "origin": [0.54987, 1.34547, -7.10867], + "size": [0.8556, 2.852, 0.2852], + "uv": { + "north": {"uv": [16, 6], "uv_size": [1, 3]}, + "east": {"uv": [10, 16], "uv_size": [1, 3]}, + "south": {"uv": [11, 16], "uv_size": [1, 3]}, + "west": {"uv": [16, 15], "uv_size": [1, 3]}, + "up": {"uv": [19, 7], "uv_size": [1, 1]}, + "down": {"uv": [19, 9], "uv_size": [1, -1]} + } + }, + { + "origin": [0.54987, 1.34547, 2.58813], + "size": [0.8556, 2.852, 0.2852], + "uv": { + "north": {"uv": [17, 6], "uv_size": [1, 3]}, + "east": {"uv": [17, 9], "uv_size": [1, 3]}, + "south": {"uv": [14, 17], "uv_size": [1, 3]}, + "west": {"uv": [15, 17], "uv_size": [1, 3]}, + "up": {"uv": [10, 19], "uv_size": [1, 1]}, + "down": {"uv": [11, 20], "uv_size": [1, -1]} + } + }, + { + "origin": [-0.59093, 0.77507, -38.14667], + "size": [1.1408, 1.1408, 29.3268], + "pivot": [-0.02053, 1.34547, -23.48327], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [19, 14], "uv_size": [1, 1]}, + "east": {"uv": [4, 4], "uv_size": [15, 1]}, + "south": {"uv": [19, 15], "uv_size": [1, 1]}, + "west": {"uv": [4, 5], "uv_size": [15, 1]}, + "up": {"uv": [4, 6], "uv_size": [1, 15]}, + "down": {"uv": [5, 21], "uv_size": [1, -15]} + } + }, + { + "origin": [-1.9713, -0.6053, -25.09968], + "size": [3.90154, 3.90154, 10.72922], + "pivot": [-0.02053, 1.34547, -26.81767], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [0, 16], "uv_size": [2, 2]}, + "east": {"uv": [10, 6], "uv_size": [6, 2]}, + "south": {"uv": [2, 16], "uv_size": [2, 2]}, + "west": {"uv": [10, 8], "uv_size": [6, 2]}, + "up": {"uv": [10, 10], "uv_size": [2, 6]}, + "down": {"uv": [6, 18], "uv_size": [2, -6]} + } + }, + { + "origin": [-1.04725, 0.31875, -36.86147], + "size": [2.05344, 2.05344, 5.9224], + "pivot": [-0.02053, 1.34547, -26.81767], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [19, 4], "uv_size": [2, 1]}, + "east": {"uv": [17, 1], "uv_size": [3, 1]}, + "south": {"uv": [19, 5], "uv_size": [2, 1]}, + "west": {"uv": [17, 2], "uv_size": [3, 1]}, + "up": {"uv": [15, 10], "uv_size": [2, 3]}, + "down": {"uv": [12, 18], "uv_size": [2, -3]} + } + }, + { + "origin": [-0.59093, -3.14733, 2.33813], + "size": [1.1408, 3.352, 1.1408], + "uv": { + "north": {"uv": [17, 15], "uv_size": [1, 3]}, + "east": {"uv": [0, 18], "uv_size": [1, 3]}, + "south": {"uv": [1, 18], "uv_size": [1, 3]}, + "west": {"uv": [2, 18], "uv_size": [1, 3]}, + "up": {"uv": [19, 16], "uv_size": [1, 1]}, + "down": {"uv": [17, 20], "uv_size": [1, -1]} + } + }, + { + "origin": [-0.59093, -3.50293, -3.68627], + "size": [1.1408, 3.352, 1.1408], + "uv": { + "north": {"uv": [3, 18], "uv_size": [1, 3]}, + "east": {"uv": [6, 18], "uv_size": [1, 3]}, + "south": {"uv": [18, 6], "uv_size": [1, 3]}, + "west": {"uv": [7, 18], "uv_size": [1, 3]}, + "up": {"uv": [18, 19], "uv_size": [1, 1]}, + "down": {"uv": [19, 19], "uv_size": [1, -1]} + } + }, + { + "origin": [-0.59093, -0.15093, -5.04747], + "size": [1.1408, 0.926, 4.0372], + "uv": { + "north": {"uv": [19, 19], "uv_size": [1, 1]}, + "east": {"uv": [17, 12], "uv_size": [3, 1]}, + "south": {"uv": [20, 1], "uv_size": [1, 1]}, + "west": {"uv": [18, 9], "uv_size": [3, 1]}, + "up": {"uv": [12, 18], "uv_size": [1, 3]}, + "down": {"uv": [13, 21], "uv_size": [1, -3]} + } + }, + { + "origin": [-2.29643, -0.93043, 28.5471], + "size": [4.55179, 4.55179, 0.76726], + "pivot": [-0.02053, 1.34547, 26.38433], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [12, 0], "uv_size": [3, 3]}, + "east": {"uv": [18, 14], "uv_size": [1, 3]}, + "south": {"uv": [12, 10], "uv_size": [3, 3]}, + "west": {"uv": [16, 18], "uv_size": [1, 3]}, + "up": {"uv": [18, 10], "uv_size": [3, 1]}, + "down": {"uv": [18, 12], "uv_size": [3, -1]} + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/geo/lod/secondary_cataclysm.geo.json b/src/main/resources/assets/superbwarfare/geo/lod/secondary_cataclysm.geo.json new file mode 100644 index 000000000..d7d63ea72 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/geo/lod/secondary_cataclysm.geo.json @@ -0,0 +1,1501 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.secondary_cataclysm", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 2, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "main", + "pivot": [0, -0.5, -5.95] + }, + { + "name": "tiba2", + "parent": "main", + "pivot": [3.93765, -1.24741, -4.81516], + "cubes": [ + { + "origin": [3.84765, -1.60796, -7.08383], + "size": [0.3828, 0.925, 4.22], + "uv": { + "north": {"uv": [23, 63], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [63, 23], "uv_size": [0.37504, 0.5]}, + "up": {"uv": [2, 52], "uv_size": [0.37504, 4.25]}, + "down": {"uv": [2, 56.25], "uv_size": [0.37504, -4.25]} + } + }, + { + "origin": [3.84765, -1.60796, -7.08383], + "size": [0.3828, 0.925, 4.22], + "pivot": [4.03905, -1.14546, -4.97383], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [23, 63], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [63, 23], "uv_size": [0.37504, 0.5]}, + "up": {"uv": [2, 52], "uv_size": [0.37504, 4.25]}, + "down": {"uv": [2, 56.25], "uv_size": [0.37504, -4.25]} + } + }, + { + "origin": [3.84765, -1.60796, -7.08383], + "size": [0.3828, 0.925, 4.22], + "pivot": [4.03905, -1.14546, -4.97383], + "rotation": [0, 0, -90], + "uv": { + "north": {"uv": [23, 63], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [63, 23], "uv_size": [0.37504, 0.5]}, + "up": {"uv": [2, 52], "uv_size": [0.37504, 4.25]}, + "down": {"uv": [2, 56.25], "uv_size": [0.37504, -4.25]} + } + }, + { + "origin": [3.84765, -1.60796, -7.08383], + "size": [0.3828, 0.925, 4.22], + "pivot": [4.03905, -1.14546, -4.97383], + "rotation": [0, 0, -135], + "uv": { + "north": {"uv": [23, 63], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [63, 23], "uv_size": [0.37504, 0.5]}, + "up": {"uv": [2, 52], "uv_size": [0.37504, 4.25]}, + "down": {"uv": [2, 56.25], "uv_size": [0.37504, -4.25]} + } + }, + { + "origin": [2.46506, -1.4228, -8.20483], + "size": [1.08, 0.54, 0.54], + "uv": { + "north": {"uv": [59, 23], "uv_size": [1.12504, 0.5]}, + "south": {"uv": [59, 24], "uv_size": [1.12504, 0.5]}, + "up": {"uv": [59, 28], "uv_size": [1.12504, 0.5]}, + "down": {"uv": [59, 29.5], "uv_size": [1.12504, -0.5]} + } + }, + { + "origin": [2.19947, -1.4228, -9.973], + "size": [1.08, 0.54, 0.54], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [0, -45, 0], + "uv": { + "north": {"uv": [59, 30], "uv_size": [1.12504, 0.5]}, + "south": {"uv": [59, 34], "uv_size": [1.12504, 0.5]}, + "up": {"uv": [59, 37], "uv_size": [1.12504, 0.5]}, + "down": {"uv": [59, 38.5], "uv_size": [1.12504, -0.5]} + } + }, + { + "origin": [3.76873, -1.4228, -7.44115], + "size": [0.54, 0.54, 1.08], + "uv": { + "east": {"uv": [39, 59], "uv_size": [1.12504, 0.5]}, + "west": {"uv": [59, 39], "uv_size": [1.12504, 0.5]}, + "up": {"uv": [42, 59], "uv_size": [0.5, 1.12504]}, + "down": {"uv": [43, 60.12504], "uv_size": [0.5, -1.12504]} + } + }, + { + "origin": [3.85329, -1.34044, -2.93076], + "size": [0.4, 0.4, 0.1392], + "pivot": [4.05329, -1.14044, -2.86116], + "rotation": [0, 0, -45], + "uv": { + "east": {"uv": [63, 0], "uv_size": [1.62504, 0.12504]}, + "south": {"uv": [71, 6], "uv_size": [0.12504, 0.12504]}, + "west": {"uv": [63, 1], "uv_size": [1.62504, 0.12504]}, + "up": {"uv": [2, 63], "uv_size": [1.62504, 0.12504], "uv_rotation": 90}, + "down": {"uv": [63, 3.12504], "uv_size": [1.62504, -0.12504], "uv_rotation": 270} + } + } + ] + }, + { + "name": "dangu2", + "parent": "main", + "pivot": [0.73788, 0.18352, -7.46464], + "cubes": [ + { + "origin": [-2.69828, -2.71468, -9.06883], + "size": [0.27, 2.43, 6.48], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-1.82897, -3.41425, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [-0.17481, -2.89881, -5.82883], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-1.70894, -4.52361, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [-0.17481, -2.89881, -5.82883], + "rotation": [0, 0, -90], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-2.40851, -5.39292, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [-0.17481, -2.89881, -5.82883], + "rotation": [0, 0, -135], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-1.58892, -2.59465, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [0.64479, -0.10055, -5.82883], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-1.87869, 0.08359, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [0.64479, -0.10055, -5.82883], + "rotation": [0, 0, -180], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-1.00937, -0.61598, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [0.64479, -0.10055, -5.82883], + "rotation": [0, 0, 135], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + }, + { + "origin": [-0.88935, -1.72534, -9.06883], + "size": [0.27, 2.43, 6.48], + "pivot": [0.64479, -0.10055, -5.82883], + "rotation": [0, 0, 90], + "uv": { + "north": {"uv": [15, 59], "uv_size": [0.25, 2.37504]}, + "east": {"uv": [15, 18], "uv_size": [6.5, 2.37504]}, + "south": {"uv": [59, 20], "uv_size": [0.25, 2.37504]}, + "west": {"uv": [19, 4], "uv_size": [6.5, 2.37504]} + } + } + ] + }, + { + "name": "ammo", + "parent": "dangu2", + "pivot": [0, -0.5, -5.95], + "cubes": [ + { + "origin": [-0.45265, -1.84141, -2.80483], + "size": [0.756, 0.756, 0.648], + "uv": { + "north": {"uv": [41, 4], "uv_size": [0.75, 0.75]}, + "east": {"uv": [60, 0], "uv_size": [0.62504, 0.75]}, + "south": {"uv": [42, 9], "uv_size": [0.75, 0.75]}, + "west": {"uv": [14, 60], "uv_size": [0.62504, 0.75]}, + "up": {"uv": [16, 60], "uv_size": [0.75, 0.62504]}, + "down": {"uv": [17, 60.62504], "uv_size": [0.75, -0.62504]} + } + } + ] + }, + { + "name": "group2", + "parent": "ammo", + "pivot": [0.00172, -1.50168, -5.88283], + "cubes": [ + { + "origin": [-0.93628, -4.15268, -8.74483], + "size": [2.376, 5.402, 5.724], + "uv": { + "north": {"uv": [18, 28], "uv_size": [2.37504, 4.75]}, + "south": {"uv": [21, 28], "uv_size": [2.37504, 4.75]} + } + }, + { + "origin": [-0.93628, -4.15268, -8.74483], + "size": [2.376, 5.402, 5.724], + "pivot": [0.25172, -1.45168, -5.88283], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [18, 28], "uv_size": [2.37504, 4.75]}, + "south": {"uv": [21, 28], "uv_size": [2.37504, 4.75]} + } + }, + { + "origin": [-0.93628, -4.15268, -8.74483], + "size": [2.376, 5.402, 5.724], + "pivot": [0.25172, -1.45168, -5.88283], + "rotation": [0, 0, -90], + "uv": { + "north": {"uv": [18, 28], "uv_size": [2.37504, 4.75]}, + "south": {"uv": [21, 28], "uv_size": [2.37504, 4.75]} + } + }, + { + "origin": [-0.93628, -4.15268, -8.74483], + "size": [2.376, 5.402, 5.724], + "pivot": [0.25172, -1.45168, -5.88283], + "rotation": [0, 0, -135], + "uv": { + "north": {"uv": [18, 28], "uv_size": [2.37504, 4.75]}, + "south": {"uv": [21, 28], "uv_size": [2.37504, 4.75]} + } + } + ] + }, + { + "name": "body10", + "parent": "main", + "pivot": [0, -0.5, -14.4], + "cubes": [ + { + "origin": [-1.07828, 1.06532, -11.13533], + "size": [1.06, 1.08, 4.796], + "uv": { + "east": {"uv": [40, 22], "uv_size": [4.75, 1.12504]}, + "south": {"uv": [23, 55], "uv_size": [1, 1.12504]}, + "down": {"uv": [33, 46.75], "uv_size": [1, -4.75]} + } + }, + { + "origin": [-1.07828, 1.81532, -6.33933], + "size": [1.66, 0.33, 3.1085], + "uv": { + "north": {"uv": [59, 1], "uv_size": [1.62504, 0.37504]}, + "east": {"uv": [25, 55], "uv_size": [3.12504, 0.37504]}, + "south": {"uv": [3, 59], "uv_size": [1.62504, 0.37504]}, + "west": {"uv": [52, 55], "uv_size": [3.12504, 0.37504]}, + "up": {"uv": [11, 42], "uv_size": [1.62504, 3.12504]}, + "down": {"uv": [13, 45.12504], "uv_size": [1.62504, -3.12504]} + } + }, + { + "origin": [-0.32828, 1.39782, -6.33933], + "size": [0.91, 0.4175, 3.1085], + "uv": { + "north": {"uv": [14, 61], "uv_size": [0.87504, 0.37504]}, + "east": {"uv": [56, 2], "uv_size": [3.12504, 0.37504]}, + "south": {"uv": [20, 61], "uv_size": [0.87504, 0.37504]}, + "up": {"uv": [27, 36], "uv_size": [0.87504, 3.12504]} + } + }, + { + "origin": [-1.07828, 1.06532, -6.33933], + "size": [1.66, 0.33, 3.1085], + "uv": { + "north": {"uv": [59, 4], "uv_size": [1.62504, 0.37504]}, + "east": {"uv": [7, 56], "uv_size": [3.12504, 0.37504]}, + "south": {"uv": [5, 59], "uv_size": [1.62504, 0.37504]}, + "west": {"uv": [11, 56], "uv_size": [3.12504, 0.37504]}, + "up": {"uv": [18, 42], "uv_size": [1.62504, 3.12504]}, + "down": {"uv": [20, 45.12504], "uv_size": [1.62504, -3.12504]} + } + }, + { + "origin": [-1.08078, 1.06532, -3.23933], + "size": [2.16, 1.08, 10.146], + "uv": { + "north": {"uv": [48, 4], "uv_size": [2.12504, 1.12504]}, + "east": {"uv": [27, 20], "uv_size": [10.12504, 1.12504]}, + "south": {"uv": [48, 6], "uv_size": [2.12504, 1.12504]}, + "west": {"uv": [27, 22], "uv_size": [10.12504, 1.12504]}, + "up": {"uv": [0, 10], "uv_size": [2.12504, 10.12504]}, + "down": {"uv": [3, 20.12504], "uv_size": [2.12504, -10.12504]} + } + }, + { + "origin": [0.81922, 1.06532, -15.48933], + "size": [0.26, 0.83, 4.396], + "uv": { + "north": {"uv": [43, 62], "uv_size": [0.25, 0.87504]}, + "east": {"uv": [42, 1], "uv_size": [4.37504, 0.87504]}, + "west": {"uv": [43, 13], "uv_size": [4.37504, 0.87504]}, + "down": {"uv": [21, 60.37504], "uv_size": [0.25, -4.37504]} + } + }, + { + "origin": [-1.08078, 1.06532, -15.48933], + "size": [0.26, 0.83, 4.396], + "uv": { + "north": {"uv": [45, 62], "uv_size": [0.25, 0.87504]}, + "east": {"uv": [43, 26], "uv_size": [4.37504, 0.87504]}, + "west": {"uv": [43, 27], "uv_size": [4.37504, 0.87504]}, + "down": {"uv": [25, 60.37504], "uv_size": [0.25, -4.37504]} + } + }, + { + "origin": [-2.23698, 0.8676, -15.48933], + "size": [0.21, 0.58, 4.396], + "pivot": [-0.41832, -0.0142, -7.46464], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [65, 24], "uv_size": [0.25, 0.62504]}, + "east": {"uv": [45, 25], "uv_size": [4.37504, 0.62504]}, + "west": {"uv": [47, 1], "uv_size": [4.37504, 0.62504]} + } + }, + { + "origin": [-0.6734, 2.09544, -15.48933], + "size": [1.3425, 0.21, 4.396], + "uv": { + "north": {"uv": [61, 14], "uv_size": [1.37504, 0.25]}, + "up": {"uv": [40, 5], "uv_size": [1.37504, 4.37504]}, + "down": {"uv": [16, 44.37504], "uv_size": [1.37504, -4.37504]} + } + }, + { + "origin": [-0.2854, 3.42842, -15.48933], + "size": [0.58, 0.21, 4.396], + "pivot": [-1.4172, 1.81975, -7.46464], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [65, 25], "uv_size": [0.62504, 0.25]}, + "up": {"uv": [33, 47], "uv_size": [0.62504, 4.37504]}, + "down": {"uv": [34, 51.37504], "uv_size": [0.62504, -4.37504]} + } + }, + { + "origin": [-0.44628, 2.39532, -10.42283], + "size": [0.896, 0.3695, 14.206], + "uv": { + "north": {"uv": [40, 61], "uv_size": [0.75, 0.37504]}, + "east": {"uv": [41, 2], "uv_size": [14.25, 0.37504]}, + "south": {"uv": [62, 3], "uv_size": [0.75, 0.37504]}, + "west": {"uv": [41, 3], "uv_size": [14.25, 0.37504]}, + "up": {"uv": [24, 28], "uv_size": [0.75, 14.25]} + } + }, + { + "origin": [-0.43028, -4.46874, -13.41406], + "size": [0.864, 5.024, 1.046], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [24, 43], "uv_size": [0.87504, 5]}, + "east": {"uv": [23, 42], "uv_size": [1, 5]}, + "south": {"uv": [43, 36], "uv_size": [0.87504, 5]}, + "west": {"uv": [25, 42], "uv_size": [1, 5]}, + "down": {"uv": [29, 41], "uv_size": [0.87504, -1]} + } + }, + { + "origin": [-0.53828, -0.20074, -13.52206], + "size": [1.08, 0.756, 1.512], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [16, 57], "uv_size": [1.12504, 0.75]}, + "east": {"uv": [56, 11], "uv_size": [1.5, 0.75]}, + "south": {"uv": [23, 57], "uv_size": [1.12504, 0.75]}, + "west": {"uv": [16, 56], "uv_size": [1.5, 0.75]}, + "up": {"uv": [51, 11], "uv_size": [1.12504, 1.5]}, + "down": {"uv": [12, 52.5], "uv_size": [1.12504, -1.5]} + } + }, + { + "origin": [-0.54628, -6.70215, -12.70153], + "size": [1.046, 0.716, 0.932], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [-45, 0, 0], + "uv": { + "north": {"uv": [61, 26], "uv_size": [1.25, 0.25]}, + "east": {"uv": [65, 61], "uv_size": [0.37504, 0.25]}, + "down": {"uv": [60, 21.37504], "uv_size": [1.25, -0.37504]} + } + }, + { + "origin": [0.96155, 0.34033, -11.22883], + "size": [0.532, 0.376, 0.54], + "pivot": [-1.72625, -1.20783, -7.46464], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [52, 64], "uv_size": [0.5, 0.37504]}, + "south": {"uv": [53, 64], "uv_size": [0.5, 0.37504]}, + "up": {"uv": [26, 62], "uv_size": [0.5, 0.5]} + } + }, + { + "origin": [-1.49011, 0.34033, -11.22883], + "size": [0.532, 0.376, 0.54], + "pivot": [1.72969, -1.20783, -7.46464], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [54, 64], "uv_size": [0.5, 0.37504]}, + "south": {"uv": [55, 64], "uv_size": [0.5, 0.37504]}, + "up": {"uv": [28, 62], "uv_size": [0.5, 0.5]} + } + }, + { + "origin": [-0.81221, 2.0535, -11.22883], + "size": [1.62575, 0.376, 0.54], + "uv": { + "north": {"uv": [59, 5], "uv_size": [1.62504, 0.37504]}, + "south": {"uv": [11, 59], "uv_size": [1.62504, 0.37504]}, + "up": {"uv": [57, 30], "uv_size": [1.62504, 0.5]} + } + }, + { + "origin": [-1.18628, -0.97868, -11.22883], + "size": [2.376, 3.032, 0.54], + "uv": { + "north": {"uv": [18, 37], "uv_size": [2.37504, 3]}, + "east": {"uv": [53, 15], "uv_size": [0.5, 3]}, + "south": {"uv": [21, 37], "uv_size": [2.37504, 3]}, + "west": {"uv": [16, 53], "uv_size": [0.5, 3]}, + "down": {"uv": [55, 13.5], "uv_size": [2.37504, -0.5]} + } + }, + { + "origin": [-1.51028, 1.49732, -6.28133], + "size": [1.614, 0.324, 0.365], + "uv": { + "north": {"uv": [13, 59], "uv_size": [1.62504, 0.37504]}, + "south": {"uv": [59, 14], "uv_size": [1.62504, 0.37504]}, + "up": {"uv": [59, 18], "uv_size": [1.62504, 0.37504]}, + "down": {"uv": [59, 19.37504], "uv_size": [1.62504, -0.37504]} + } + }, + { + "origin": [-1.29428, 1.49732, -3.23683], + "size": [0.216, 0.324, 0.108], + "uv": { + "north": {"uv": [65, 62], "uv_size": [0.25, 0.37504]}, + "east": {"uv": [41, 68], "uv_size": [0.12504, 0.37504]}, + "south": {"uv": [63, 65], "uv_size": [0.25, 0.37504]}, + "west": {"uv": [68, 41], "uv_size": [0.12504, 0.37504]}, + "up": {"uv": [52, 70], "uv_size": [0.25, 0.12504]}, + "down": {"uv": [70, 52.12504], "uv_size": [0.25, -0.12504]} + } + }, + { + "origin": [-1.29428, 1.49732, -6.47683], + "size": [0.216, 0.324, 0.108], + "uv": { + "north": {"uv": [65, 63], "uv_size": [0.25, 0.37504]}, + "east": {"uv": [42, 68], "uv_size": [0.12504, 0.37504]}, + "south": {"uv": [64, 65], "uv_size": [0.25, 0.37504]}, + "west": {"uv": [68, 42], "uv_size": [0.12504, 0.37504]}, + "up": {"uv": [53, 70], "uv_size": [0.25, 0.12504]}, + "down": {"uv": [70, 53.12504], "uv_size": [0.25, -0.12504]} + } + }, + { + "origin": [-1.29428, 1.82132, -6.47683], + "size": [0.216, 0.108, 3.348], + "uv": { + "north": {"uv": [54, 70], "uv_size": [0.25, 0.12504]}, + "east": {"uv": [60, 41], "uv_size": [3.37504, 0.12504]}, + "south": {"uv": [70, 54], "uv_size": [0.25, 0.12504]}, + "west": {"uv": [60, 42], "uv_size": [3.37504, 0.12504]}, + "up": {"uv": [29, 57], "uv_size": [0.25, 3.37504]}, + "down": {"uv": [30, 60.37504], "uv_size": [0.25, -3.37504]} + } + }, + { + "origin": [-1.29428, 1.38932, -6.47683], + "size": [0.216, 0.108, 3.348], + "uv": { + "north": {"uv": [55, 70], "uv_size": [0.25, 0.12504]}, + "east": {"uv": [44, 60], "uv_size": [3.37504, 0.12504]}, + "south": {"uv": [70, 55], "uv_size": [0.25, 0.12504]}, + "west": {"uv": [60, 45], "uv_size": [3.37504, 0.12504]}, + "up": {"uv": [33, 57], "uv_size": [0.25, 3.37504]}, + "down": {"uv": [34, 60.37504], "uv_size": [0.25, -3.37504]} + } + }, + { + "origin": [-1.18628, -0.87868, -15.33283], + "size": [2.376, 2.032, 0.54], + "uv": { + "north": {"uv": [34, 42], "uv_size": [2.37504, 2]}, + "east": {"uv": [28, 56], "uv_size": [0.5, 2]}, + "south": {"uv": [42, 34], "uv_size": [2.37504, 2]}, + "west": {"uv": [2, 57], "uv_size": [0.5, 2]}, + "up": {"uv": [55, 18], "uv_size": [2.37504, 0.5]}, + "down": {"uv": [55, 19.5], "uv_size": [2.37504, -0.5]} + } + }, + { + "origin": [-0.64628, -0.66268, -15.55483], + "size": [1.296, 0.216, 6.594], + "uv": { + "north": {"uv": [61, 28], "uv_size": [1.25, 0.25]}, + "east": {"uv": [51, 7], "uv_size": [6.62504, 0.25]}, + "south": {"uv": [29, 61], "uv_size": [1.25, 0.25]}, + "west": {"uv": [51, 20], "uv_size": [6.62504, 0.25]}, + "down": {"uv": [7, 41.62504], "uv_size": [1.25, -6.62504]} + } + }, + { + "origin": [-0.64628, -1.85068, -15.44083], + "size": [1.296, 1.188, 6.48], + "uv": { + "north": {"uv": [52, 50], "uv_size": [1.25, 1.25]}, + "east": {"uv": [35, 0], "uv_size": [6.5, 1.25]}, + "west": {"uv": [35, 34], "uv_size": [6.5, 1.25]}, + "down": {"uv": [14, 41.5], "uv_size": [1.25, -6.5]} + } + }, + { + "origin": [-0.86228, 0.84932, -15.55483], + "size": [1.728, 0.216, 6.594], + "uv": { + "north": {"uv": [60, 22], "uv_size": [1.75, 0.25]}, + "east": {"uv": [51, 21], "uv_size": [6.62504, 0.25]}, + "west": {"uv": [51, 22], "uv_size": [6.62504, 0.25]}, + "up": {"uv": [7, 23], "uv_size": [1.75, 6.62504]} + } + }, + { + "origin": [-1.03624, 2.04156, -10.68958], + "size": [0.328, 0.216, 7.344], + "pivot": [-0.92224, 2.14956, -6.91133], + "rotation": [0, 0, -45], + "uv": { + "south": {"uv": [66, 0], "uv_size": [0.37504, 0.25]}, + "up": {"uv": [23, 47], "uv_size": [0.37504, 7.37504]} + } + }, + { + "origin": [-1.03624, 2.04156, -2.88958], + "size": [0.328, 0.216, 7.344], + "pivot": [-0.92224, 2.14956, 0.88867], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [1, 66], "uv_size": [0.37504, 0.25]}, + "south": {"uv": [66, 1], "uv_size": [0.37504, 0.25]}, + "up": {"uv": [26, 47], "uv_size": [0.37504, 7.37504]} + } + }, + { + "origin": [-0.84729, 2.16125, -10.68958], + "size": [1.69675, 0.216, 15.144], + "uv": { + "east": {"uv": [43, 28], "uv_size": [15.12504, 0.25]}, + "south": {"uv": [60, 33], "uv_size": [1.75, 0.25]}, + "west": {"uv": [44, 8], "uv_size": [15.12504, 0.25]}, + "up": {"uv": [6, 0], "uv_size": [1.75, 15.12504]} + } + }, + { + "origin": [0.70824, 2.04156, -2.88958], + "size": [0.328, 0.216, 7.344], + "pivot": [0.92224, 2.14956, 0.88867], + "rotation": [0, 0, 45], + "uv": { + "north": {"uv": [2, 66], "uv_size": [0.37504, 0.25]}, + "south": {"uv": [66, 2], "uv_size": [0.37504, 0.25]}, + "up": {"uv": [28, 47], "uv_size": [0.37504, 7.37504]} + } + }, + { + "origin": [-0.86228, -0.66268, -15.55483], + "size": [0.216, 1.512, 6.594], + "uv": { + "north": {"uv": [60, 59], "uv_size": [0.25, 1.5]}, + "east": {"uv": [31, 13], "uv_size": [6.62504, 1.5]}, + "south": {"uv": [0, 61], "uv_size": [0.25, 1.5]}, + "west": {"uv": [31, 15], "uv_size": [6.62504, 1.5]}, + "down": {"uv": [32, 57.62504], "uv_size": [0.25, -6.62504]} + } + }, + { + "origin": [0.64972, -0.66268, -15.55483], + "size": [0.216, 1.512, 6.594], + "uv": { + "north": {"uv": [61, 2], "uv_size": [0.25, 1.5]}, + "east": {"uv": [31, 17], "uv_size": [6.62504, 1.5]}, + "south": {"uv": [61, 4], "uv_size": [0.25, 1.5]}, + "west": {"uv": [32, 24], "uv_size": [6.62504, 1.5]}, + "down": {"uv": [40, 57.62504], "uv_size": [0.25, -6.62504]} + } + }, + { + "origin": [-0.01828, 1.06532, -11.13533], + "size": [1.0975, 1.08, 7.896], + "uv": { + "west": {"uv": [33, 32], "uv_size": [7.87504, 1.12504]}, + "up": {"uv": [10, 34], "uv_size": [1.12504, 7.87504]}, + "down": {"uv": [33, 41.87504], "uv_size": [1.12504, -7.87504]} + } + } + ] + }, + { + "name": "group4", + "parent": "body10", + "pivot": [8.58547, -8.76268, -14.46883], + "cubes": [ + { + "origin": [-0.26228, -0.42568, -16.55483], + "size": [0.528, 1.275, 1.25], + "uv": { + "north": {"uv": [66, 38], "uv_size": [0.5, 0.12504]}, + "up": {"uv": [28, 58], "uv_size": [0.5, 1.25]}, + "down": {"uv": [28, 59.25], "uv_size": [0.5, -1.25]} + } + }, + { + "origin": [-0.26228, -0.42568, -16.55483], + "size": [0.528, 1.275, 1.25], + "pivot": [0.00172, 0.21182, -15.92983], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [66, 38], "uv_size": [0.5, 0.12504]}, + "up": {"uv": [28, 58], "uv_size": [0.5, 1.25]}, + "down": {"uv": [28, 59.25], "uv_size": [0.5, -1.25]} + } + }, + { + "origin": [-0.26228, -0.42568, -16.55483], + "size": [0.528, 1.275, 1.25], + "pivot": [0.00172, 0.21182, -15.92983], + "rotation": [0, 0, -90], + "uv": { + "north": {"uv": [66, 38], "uv_size": [0.5, 0.12504]}, + "up": {"uv": [28, 58], "uv_size": [0.5, 1.25]}, + "down": {"uv": [28, 59.25], "uv_size": [0.5, -1.25]} + } + }, + { + "origin": [-0.26228, -0.42568, -16.55483], + "size": [0.528, 1.275, 1.25], + "pivot": [0.00172, 0.21182, -15.92983], + "rotation": [0, 0, -135], + "uv": { + "north": {"uv": [66, 38], "uv_size": [0.5, 0.12504]}, + "up": {"uv": [28, 58], "uv_size": [0.5, 1.25]}, + "down": {"uv": [28, 59.25], "uv_size": [0.5, -1.25]} + } + } + ] + }, + { + "name": "group5", + "parent": "body10", + "pivot": [8, -8.1, -13.95], + "cubes": [ + { + "origin": [-2.57728, 1.39128, -6.37142], + "size": [1.094, 0.5594, 0.5594], + "pivot": [-2.03028, 1.67098, -6.09172], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [61, 38], "uv_size": [1.12504, 0.25]}, + "east": {"uv": [49, 66], "uv_size": [0.25, 0.25]}, + "south": {"uv": [61, 39], "uv_size": [1.12504, 0.25]}, + "west": {"uv": [66, 49], "uv_size": [0.25, 0.25]}, + "up": {"uv": [61, 40], "uv_size": [1.12504, 0.25]}, + "down": {"uv": [42, 61.25], "uv_size": [1.12504, -0.25]} + } + } + ] + }, + { + "name": "group6", + "parent": "body10", + "pivot": [0.73788, 0.25302, -7.46464] + }, + { + "name": "group7", + "parent": "body10", + "pivot": [2.35, 0.95, -14.4], + "cubes": [ + { + "origin": [0.64972, 0.90332, -13.33483], + "size": [1.512, 0.972, 0.972], + "uv": { + "north": {"uv": [17, 53], "uv_size": [1.5, 1]}, + "east": {"uv": [15, 17], "uv_size": [1, 1]}, + "south": {"uv": [53, 18], "uv_size": [1.5, 1]}, + "west": {"uv": [21, 17], "uv_size": [1, 1]}, + "up": {"uv": [19, 53], "uv_size": [1.5, 1]}, + "down": {"uv": [53, 20], "uv_size": [1.5, -1]} + } + }, + { + "origin": [2.16172, 0.90332, -12.90283], + "size": [0.216, 4.536, 0.216], + "uv": { + "north": {"uv": [31, 55], "uv_size": [0.25, 4.5]}, + "east": {"uv": [41, 55], "uv_size": [0.25, 4.5]}, + "south": {"uv": [18, 56], "uv_size": [0.25, 4.5]}, + "west": {"uv": [19, 56], "uv_size": [0.25, 4.5]}, + "up": {"uv": [29, 68], "uv_size": [0.25, 0.25]} + } + }, + { + "origin": [1.40572, 2.19932, -12.90283], + "size": [0.756, 0.216, 0.216], + "uv": { + "north": {"uv": [57, 64], "uv_size": [0.75, 0.25]}, + "south": {"uv": [64, 57], "uv_size": [0.75, 0.25]}, + "up": {"uv": [58, 64], "uv_size": [0.75, 0.25]}, + "down": {"uv": [64, 58.25], "uv_size": [0.75, -0.25]} + } + }, + { + "origin": [1.40572, 3.06332, -12.90283], + "size": [0.756, 0.216, 0.216], + "uv": { + "north": {"uv": [59, 64], "uv_size": [0.75, 0.25]}, + "south": {"uv": [64, 59], "uv_size": [0.75, 0.25]}, + "up": {"uv": [60, 64], "uv_size": [0.75, 0.25]}, + "down": {"uv": [64, 60.25], "uv_size": [0.75, -0.25]} + } + }, + { + "origin": [1.40572, 4.03532, -12.90283], + "size": [0.756, 0.216, 0.216], + "uv": { + "north": {"uv": [61, 64], "uv_size": [0.75, 0.25]}, + "south": {"uv": [64, 61], "uv_size": [0.75, 0.25]}, + "up": {"uv": [62, 64], "uv_size": [0.75, 0.25]}, + "down": {"uv": [64, 62.25], "uv_size": [0.75, -0.25]} + } + }, + { + "origin": [1.40572, 5.22332, -12.90283], + "size": [0.756, 0.216, 0.216], + "uv": { + "north": {"uv": [63, 64], "uv_size": [0.75, 0.25]}, + "south": {"uv": [64, 63], "uv_size": [0.75, 0.25]}, + "up": {"uv": [64, 64], "uv_size": [0.75, 0.25]}, + "down": {"uv": [0, 65.25], "uv_size": [0.75, -0.25]} + } + }, + { + "origin": [0.64972, 0.57932, -12.36283], + "size": [1.512, 1.188, 0.216], + "uv": { + "north": {"uv": [44, 49], "uv_size": [1.5, 1.25]}, + "east": {"uv": [61, 29], "uv_size": [0.25, 1.25]}, + "south": {"uv": [46, 49], "uv_size": [1.5, 1.25]}, + "west": {"uv": [31, 61], "uv_size": [0.25, 1.25]}, + "up": {"uv": [61, 0], "uv_size": [1.5, 0.25]}, + "down": {"uv": [61, 1.25], "uv_size": [1.5, -0.25]} + } + }, + { + "origin": [2.07883, 0.88654, -12.90283], + "size": [0.54, 0.216, 0.216], + "uv": { + "north": {"uv": [65, 49], "uv_size": [0.5, 0.25]}, + "south": {"uv": [50, 65], "uv_size": [0.5, 0.25]}, + "west": {"uv": [68, 34], "uv_size": [0.25, 0.25]}, + "down": {"uv": [51, 65.25], "uv_size": [0.5, -0.25]} + } + }, + { + "origin": [2.61135, 0.31277, -12.90283], + "size": [0.216, 0.756, 0.216], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [0, 0, -22.5], + "uv": { + "north": {"uv": [65, 0], "uv_size": [0.25, 0.75]}, + "south": {"uv": [65, 1], "uv_size": [0.25, 0.75]}, + "west": {"uv": [2, 65], "uv_size": [0.25, 0.75]} + } + }, + { + "origin": [1.18972, 1.87532, -12.90283], + "size": [0.216, 3.564, 0.216], + "uv": { + "north": {"uv": [7, 57], "uv_size": [0.25, 3.62504]}, + "east": {"uv": [8, 57], "uv_size": [0.25, 3.62504]}, + "south": {"uv": [9, 57], "uv_size": [0.25, 3.62504]}, + "west": {"uv": [10, 57], "uv_size": [0.25, 3.62504]}, + "up": {"uv": [36, 68], "uv_size": [0.25, 0.25]} + } + } + ] + }, + { + "name": "group8", + "parent": "body10", + "pivot": [0.95022, -1.54872, -16.49144], + "cubes": [ + { + "origin": [0.64972, -1.74268, -15.44083], + "size": [0.258, 0.648, 3.24], + "uv": { + "north": {"uv": [25, 66], "uv_size": [0.12504, 0.62504]}, + "south": {"uv": [66, 25], "uv_size": [0.12504, 0.62504]}, + "west": {"uv": [34, 19], "uv_size": [3.25, 0.62504]}, + "up": {"uv": [50, 60], "uv_size": [0.12504, 3.25]}, + "down": {"uv": [51, 63.25], "uv_size": [0.12504, -3.25]} + } + }, + { + "origin": [0.64972, -1.85068, -15.00883], + "size": [0.648, 0.864, 1.512], + "uv": { + "north": {"uv": [48, 18], "uv_size": [0.62504, 0.87504]}, + "south": {"uv": [51, 59], "uv_size": [0.62504, 0.87504]}, + "west": {"uv": [54, 17], "uv_size": [1.5, 0.87504]}, + "up": {"uv": [5, 57], "uv_size": [0.62504, 1.5]}, + "down": {"uv": [6, 58.5], "uv_size": [0.62504, -1.5]} + } + }, + { + "origin": [0.86572, -1.74268, -24.42483], + "size": [0.216, 0.648, 9.416], + "uv": { + "east": {"uv": [50, 36], "uv_size": [2.87504, 0.62504]}, + "west": {"uv": [48, 50], "uv_size": [2.87504, 0.62504]}, + "up": {"uv": [53, 57], "uv_size": [0.25, 2.87504]}, + "down": {"uv": [54, 59.87504], "uv_size": [0.25, -2.87504]} + } + }, + { + "origin": [0.86572, -1.55183, -24.61277], + "size": [0.216, 0.458, 0.456], + "pivot": [0.97372, -1.41783, -24.28977], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [29, 65], "uv_size": [0.25, 0.62504]}, + "east": {"uv": [50, 36], "uv_size": [2.87504, 0.62504]}, + "west": {"uv": [48, 50], "uv_size": [2.87504, 0.62504]}, + "up": {"uv": [53, 57], "uv_size": [0.25, 2.87504]} + } + } + ] + }, + { + "name": "group10", + "parent": "body10", + "pivot": [0.59572, -1.59025, -0.89957] + }, + { + "name": "banji2", + "parent": "main", + "pivot": [0, -0.5, -5.95], + "cubes": [ + { + "origin": [-0.75428, -9.90696, 0.25091], + "size": [1.32, 2.028, 0.21], + "pivot": [0.73789, 0.13272, -7.47164], + "rotation": [22.5, 0, 0], + "uv": { + "east": {"uv": [60, 8], "uv_size": [0.25, 2]}, + "south": {"uv": [47, 11], "uv_size": [1.37504, 2]}, + "west": {"uv": [60, 10], "uv_size": [0.25, 2]}, + "down": {"uv": [18, 61.25], "uv_size": [1.37504, -0.25]} + } + }, + { + "origin": [-0.75428, -4.6047, 2.02676], + "size": [1.32, 2.028, 0.21], + "pivot": [-0.09428, -3.5907, 2.13176], + "rotation": [45, 0, 0], + "uv": { + "east": {"uv": [11, 60], "uv_size": [0.25, 2]}, + "south": {"uv": [47, 21], "uv_size": [1.37504, 2]}, + "west": {"uv": [12, 60], "uv_size": [0.25, 2]} + } + }, + { + "origin": [-0.75428, -9.91079, -1.50833], + "size": [1.32, 4.028, 1.76], + "pivot": [0.73789, 0.12889, -7.48088], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [27, 40], "uv_size": [1.37504, 4]}, + "east": {"uv": [37, 36], "uv_size": [1.75, 4]}, + "south": {"uv": [37, 40], "uv_size": [1.37504, 4]}, + "west": {"uv": [0, 38], "uv_size": [1.75, 4]}, + "down": {"uv": [46, 48.75], "uv_size": [1.37504, -1.75]} + } + }, + { + "origin": [-0.75428, -3.13958, 0.33761], + "size": [1.32, 3.178, 1.71], + "uv": { + "north": {"uv": [43, 41], "uv_size": [1.37504, 3.12504]}, + "east": {"uv": [41, 10], "uv_size": [1.75, 3.12504]}, + "south": {"uv": [44, 4], "uv_size": [1.37504, 3.12504]}, + "west": {"uv": [29, 41], "uv_size": [1.75, 3.12504]} + } + }, + { + "origin": [-0.80428, -9.71079, -1.30833], + "size": [1.42, 3.828, 1.36], + "pivot": [0.73789, 0.12889, -7.48088], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [39, 41], "uv_size": [1.37504, 3.87504]}, + "east": {"uv": [41, 40], "uv_size": [1.37504, 3.87504]}, + "south": {"uv": [0, 42], "uv_size": [1.37504, 3.87504]}, + "west": {"uv": [4, 42], "uv_size": [1.37504, 3.87504]}, + "down": {"uv": [49, 42.37504], "uv_size": [1.37504, -1.37504]} + } + }, + { + "origin": [-0.80428, -3.06305, 0.52238], + "size": [1.42, 2.978, 1.31], + "uv": { + "north": {"uv": [12, 14], "uv_size": [1.37504, 3]}, + "east": {"uv": [27, 44], "uv_size": [1.25, 3]}, + "south": {"uv": [43, 19], "uv_size": [1.37504, 3]}, + "west": {"uv": [34, 44], "uv_size": [1.25, 3]} + } + }, + { + "origin": [-0.65428, -1.5512, 1.93488], + "size": [1.12, 0.928, 0.41], + "pivot": [-0.09428, -1.1122, 2.23988], + "rotation": [-45, 0, 0], + "uv": { + "east": {"uv": [38, 68], "uv_size": [0.12504, 0.5]}, + "south": {"uv": [48, 59], "uv_size": [1.12504, 0.5]}, + "west": {"uv": [68, 38], "uv_size": [0.12504, 0.5]} + } + }, + { + "origin": [-0.31428, -2.89998, -2.20272], + "size": [0.432, 0.848, 0.208], + "uv": { + "north": {"uv": [21, 61], "uv_size": [0.37504, 0.87504]}, + "east": {"uv": [62, 46], "uv_size": [0.25, 0.87504]}, + "south": {"uv": [22, 61], "uv_size": [0.37504, 0.87504]}, + "west": {"uv": [47, 62], "uv_size": [0.25, 0.87504]} + } + }, + { + "origin": [-0.25628, -2.95976, -1.03413], + "size": [0.316, 1.148, 0.208], + "pivot": [-0.09828, -2.63576, -0.93013], + "rotation": [-22.5, 0, 0], + "uv": { + "north": {"uv": [35, 62], "uv_size": [0.37504, 0.62504]}, + "east": {"uv": [44, 65], "uv_size": [0.25, 0.62504]}, + "south": {"uv": [36, 62], "uv_size": [0.37504, 0.62504]}, + "west": {"uv": [65, 44], "uv_size": [0.25, 0.62504]}, + "down": {"uv": [66, 17.25], "uv_size": [0.37504, -0.25]} + } + }, + { + "origin": [-0.31428, -6.42417, -5.78284], + "size": [0.432, 0.648, 0.208], + "pivot": [0.63788, -0.01649, -7.46465], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [37, 62], "uv_size": [0.37504, 0.62504]}, + "east": {"uv": [45, 65], "uv_size": [0.25, 0.62504]}, + "south": {"uv": [38, 62], "uv_size": [0.37504, 0.62504]}, + "west": {"uv": [65, 45], "uv_size": [0.25, 0.62504]} + } + }, + { + "origin": [-0.31428, -3.35819, -1.74451], + "size": [0.432, 0.208, 2.268], + "uv": { + "east": {"uv": [59, 52], "uv_size": [2.25, 0.25]}, + "west": {"uv": [59, 54], "uv_size": [2.25, 0.25]}, + "up": {"uv": [35, 57], "uv_size": [0.37504, 2.25]}, + "down": {"uv": [36, 59.25], "uv_size": [0.37504, -2.25]} + } + }, + { + "origin": [-1.61828, -1.20268, -2.58883], + "size": [1.188, 2.268, 4.212], + "uv": { + "north": {"uv": [41, 46], "uv_size": [1.25, 2.25]}, + "east": {"uv": [28, 32], "uv_size": [4.25, 2.25]}, + "south": {"uv": [2, 47], "uv_size": [1.25, 2.25]}, + "west": {"uv": [33, 2], "uv_size": [4.25, 2.25]}, + "up": {"uv": [42, 4], "uv_size": [1.25, 4.25]}, + "down": {"uv": [7, 46.25], "uv_size": [1.25, -4.25]} + } + }, + { + "origin": [-0.86228, -1.95868, -3.77683], + "size": [1.512, 1.08, 4.072], + "uv": { + "north": {"uv": [14, 51], "uv_size": [1.5, 1.12504]}, + "east": {"uv": [43, 15], "uv_size": [4.12504, 1.12504]}, + "south": {"uv": [51, 18], "uv_size": [1.5, 1.12504]}, + "west": {"uv": [43, 17], "uv_size": [4.12504, 1.12504]}, + "up": {"uv": [2, 38], "uv_size": [1.5, 4.12504]}, + "down": {"uv": [38, 23.12504], "uv_size": [1.5, -4.12504]} + } + }, + { + "origin": [-0.86228, -0.87868, -3.77683], + "size": [1.512, 1.944, 12.204], + "uv": { + "east": {"uv": [10, 0], "uv_size": [12.25, 2]}, + "west": {"uv": [10, 2], "uv_size": [12.25, 2]}, + "down": {"uv": [10, 26.25], "uv_size": [1.5, -12.25]} + } + }, + { + "origin": [-0.75428, -2.71468, 4.53917], + "size": [1.296, 1.944, 3.78], + "uv": { + "north": {"uv": [39, 47], "uv_size": [1.25, 2]}, + "east": {"uv": [36, 5], "uv_size": [3.75, 2]}, + "south": {"uv": [47, 41], "uv_size": [1.25, 2]}, + "west": {"uv": [36, 7], "uv_size": [3.75, 2]}, + "down": {"uv": [43, 12.75], "uv_size": [1.25, -3.75]} + } + }, + { + "origin": [-1.07828, -0.44668, -0.86083], + "size": [1.944, 1.512, 9.288], + "uv": { + "north": {"uv": [41, 44], "uv_size": [2, 1.5]}, + "east": {"uv": [19, 13], "uv_size": [9.25, 1.5]}, + "west": {"uv": [19, 15], "uv_size": [9.25, 1.5]}, + "up": {"uv": [10, 4], "uv_size": [2, 9.25]}, + "down": {"uv": [12, 13.25], "uv_size": [2, -9.25]} + } + }, + { + "origin": [-2.05028, -2.06668, -2.48083], + "size": [2.916, 3.348, 0.648], + "uv": { + "north": {"uv": [7, 31], "uv_size": [2.87504, 3.37504]}, + "east": {"uv": [24, 48], "uv_size": [0.62504, 3.37504]}, + "south": {"uv": [25, 32], "uv_size": [2.87504, 3.37504]}, + "west": {"uv": [29, 48], "uv_size": [0.62504, 3.37504]}, + "up": {"uv": [51, 4], "uv_size": [2.87504, 0.62504]}, + "down": {"uv": [51, 5.62504], "uv_size": [2.87504, -0.62504]} + } + }, + { + "origin": [0.54172, -0.66268, -0.21283], + "size": [0.54, 1.728, 1.62], + "uv": { + "north": {"uv": [57, 9], "uv_size": [0.5, 1.75]}, + "south": {"uv": [11, 57], "uv_size": [0.5, 1.75]}, + "west": {"uv": [45, 29], "uv_size": [1.62504, 1.75]}, + "down": {"uv": [52, 58.62504], "uv_size": [0.5, -1.62504]} + } + }, + { + "origin": [-1.18628, -2.82268, 4.64717], + "size": [2.376, 5.076, 0.648], + "uv": { + "north": {"uv": [25, 26], "uv_size": [2.37504, 5.12504]}, + "east": {"uv": [6, 44], "uv_size": [0.62504, 5.12504]}, + "south": {"uv": [1, 27], "uv_size": [2.37504, 5.12504]}, + "west": {"uv": [36, 44], "uv_size": [0.62504, 5.12504]}, + "up": {"uv": [54, 4], "uv_size": [2.37504, 0.62504]}, + "down": {"uv": [54, 5.62504], "uv_size": [2.37504, -0.62504]} + } + }, + { + "origin": [0.10972, 2.14532, 5.51117], + "size": [0.648, 0.132, 0.648], + "uv": { + "north": {"uv": [66, 34], "uv_size": [0.62504, 0.12504]}, + "east": {"uv": [35, 66], "uv_size": [0.62504, 0.12504]}, + "south": {"uv": [66, 35], "uv_size": [0.62504, 0.12504]}, + "west": {"uv": [36, 66], "uv_size": [0.62504, 0.12504]}, + "up": {"uv": [57, 60], "uv_size": [0.62504, 0.62504]} + } + }, + { + "origin": [-0.86228, 2.14532, 5.51117], + "size": [0.648, 0.132, 0.648], + "uv": { + "north": {"uv": [66, 36], "uv_size": [0.62504, 0.12504]}, + "east": {"uv": [37, 66], "uv_size": [0.62504, 0.12504]}, + "south": {"uv": [66, 37], "uv_size": [0.62504, 0.12504]}, + "west": {"uv": [38, 66], "uv_size": [0.62504, 0.12504]}, + "up": {"uv": [58, 60], "uv_size": [0.62504, 0.62504]} + } + }, + { + "origin": [-1.29428, -2.82268, 7.45517], + "size": [2.376, 3.996, 0.648], + "uv": { + "north": {"uv": [18, 33], "uv_size": [2.37504, 4]}, + "east": {"uv": [43, 47], "uv_size": [0.62504, 4]}, + "south": {"uv": [21, 33], "uv_size": [2.37504, 4]}, + "west": {"uv": [47, 43], "uv_size": [0.62504, 4]}, + "up": {"uv": [54, 9], "uv_size": [2.37504, 0.62504]}, + "down": {"uv": [54, 10.62504], "uv_size": [2.37504, -0.62504]} + } + }, + { + "origin": [-1.72628, -0.55468, 0.32717], + "size": [0.864, 1.836, 0.648], + "uv": { + "north": {"uv": [51, 29], "uv_size": [0.87504, 1.87504]}, + "east": {"uv": [41, 53], "uv_size": [0.62504, 1.87504]}, + "south": {"uv": [41, 51], "uv_size": [0.87504, 1.87504]}, + "west": {"uv": [37, 54], "uv_size": [0.62504, 1.87504]}, + "up": {"uv": [52, 59], "uv_size": [0.87504, 0.62504]}, + "down": {"uv": [59, 56.62504], "uv_size": [0.87504, -0.62504]} + } + }, + { + "origin": [-1.06341, -1.42697, -1.72483], + "size": [2.268, 2.484, 0.648], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [0, 0, 22.5], + "uv": { + "north": {"uv": [40, 19], "uv_size": [2.25, 2.5]}, + "south": {"uv": [40, 26], "uv_size": [2.25, 2.5]}, + "west": {"uv": [53, 9], "uv_size": [0.62504, 2.5]}, + "up": {"uv": [54, 15], "uv_size": [2.25, 0.62504]} + } + } + ] + }, + { + "name": "group11", + "parent": "banji2", + "pivot": [0.59572, -1.59025, -0.89957], + "cubes": [ + { + "origin": [-0.92428, -1.65625, -0.92807], + "size": [1.64, 0.182, 0.182], + "pivot": [0.44572, -1.59025, -0.84957], + "rotation": [-45, 0, 0], + "uv": { + "north": {"uv": [63, 20], "uv_size": [1.62504, 0.12504]}, + "east": {"uv": [71, 10], "uv_size": [0.12504, 0.12504]}, + "south": {"uv": [21, 63], "uv_size": [1.62504, 0.12504]}, + "west": {"uv": [11, 71], "uv_size": [0.12504, 0.12504]}, + "up": {"uv": [63, 21], "uv_size": [1.62504, 0.12504]}, + "down": {"uv": [63, 22.12504], "uv_size": [1.62504, -0.12504]} + } + } + ] + }, + { + "name": "group12", + "parent": "banji2", + "pivot": [0.59572, -1.59025, -0.89957] + }, + { + "name": "group13", + "parent": "banji2", + "pivot": [-0.09428, -4.48818, 0.91771], + "cubes": [ + { + "origin": [-0.65428, -4.35807, 0.63911], + "size": [1.12, 0.578, 0.21], + "uv": { + "north": {"uv": [57, 44], "uv_size": [1.12504, 0.62504]}, + "east": {"uv": [37, 65], "uv_size": [0.25, 0.62504]}, + "west": {"uv": [65, 37], "uv_size": [0.25, 0.62504]} + } + }, + { + "origin": [-0.65428, -4.77718, 0.81271], + "size": [1.12, 0.578, 0.21], + "pivot": [-0.09428, -4.48818, 0.91771], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [57, 57], "uv_size": [1.12504, 0.62504]}, + "east": {"uv": [38, 65], "uv_size": [0.25, 0.62504]}, + "west": {"uv": [65, 38], "uv_size": [0.25, 0.62504]} + } + } + ] + }, + { + "name": "group", + "parent": "banji2", + "pivot": [-0.09428, -4.48818, 0.91771], + "cubes": [ + { + "origin": [-0.65428, -5.35807, 1.03911], + "size": [1.12, 0.578, 0.21], + "uv": { + "north": {"uv": [58, 7], "uv_size": [1.12504, 0.62504]}, + "east": {"uv": [39, 65], "uv_size": [0.25, 0.62504]}, + "west": {"uv": [65, 39], "uv_size": [0.25, 0.62504]} + } + }, + { + "origin": [-0.65428, -5.77718, 1.21271], + "size": [1.12, 0.578, 0.21], + "pivot": [-0.09428, -5.48818, 1.31771], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [58, 10], "uv_size": [1.12504, 0.62504]}, + "east": {"uv": [40, 65], "uv_size": [0.25, 0.62504]}, + "west": {"uv": [65, 40], "uv_size": [0.25, 0.62504]} + } + }, + { + "origin": [-0.65428, -6.40731, 1.41829], + "size": [1.12, 0.728, 0.21], + "uv": { + "north": {"uv": [57, 24], "uv_size": [1.12504, 0.75]}, + "east": {"uv": [65, 10], "uv_size": [0.25, 0.75]}, + "west": {"uv": [11, 65], "uv_size": [0.25, 0.75]} + } + }, + { + "origin": [-0.65428, -6.86237, 1.42648], + "size": [1.12, 0.328, 0.45375], + "uv": { + "east": {"uv": [65, 11], "uv_size": [0.5, 0.37504]}, + "west": {"uv": [12, 65], "uv_size": [0.5, 0.37504]}, + "down": {"uv": [59, 44.5], "uv_size": [1.12504, -0.5]} + } + }, + { + "origin": [-0.65428, -6.72948, 1.26022], + "size": [1.12, 0.628, 0.3725], + "pivot": [-0.09428, -6.72798, 1.33397], + "rotation": [-22.5, 0, 0], + "uv": { + "north": {"uv": [12, 58], "uv_size": [1.12504, 0.62504]}, + "east": {"uv": [62, 29], "uv_size": [0.37504, 0.62504]}, + "west": {"uv": [30, 62], "uv_size": [0.37504, 0.62504]} + } + }, + { + "origin": [-0.65428, -6.99359, 0.89969], + "size": [1.12, 0.228, 0.61], + "pivot": [-0.09428, -6.29209, 1.00469], + "rotation": [45, 0, 0], + "uv": { + "north": {"uv": [62, 11], "uv_size": [1.12504, 0.25]}, + "east": {"uv": [41, 65], "uv_size": [0.62504, 0.25]}, + "west": {"uv": [65, 41], "uv_size": [0.62504, 0.25]} + } + } + ] + }, + { + "name": "tuo2", + "parent": "main", + "pivot": [0, -0.5, -5.95], + "cubes": [ + { + "origin": [-1.07828, -2.17468, 8.42717], + "size": [2.16, 4.46, 3.024], + "uv": { + "north": {"uv": [1, 33], "uv_size": [2.12504, 4.5]}, + "east": {"uv": [12, 24], "uv_size": [3, 4.5]}, + "south": {"uv": [33, 5], "uv_size": [2.12504, 4.5]}, + "west": {"uv": [15, 24], "uv_size": [3, 4.5]}, + "down": {"uv": [38, 15], "uv_size": [2.12504, -3]} + } + }, + { + "origin": [1.83555, 1.76914, 8.42717], + "size": [0.16, 0.56, 3.024], + "pivot": [0.91555, 0.92414, 9.93917], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [39, 68], "uv_size": [0.12504, 0.5]}, + "south": {"uv": [68, 39], "uv_size": [0.12504, 0.5]}, + "west": {"uv": [53, 36], "uv_size": [3, 0.5]} + } + }, + { + "origin": [1.3952, 4.31381, 8.42717], + "size": [0.56, 0.16, 3.024], + "pivot": [2.8002, 0.39381, 9.93917], + "rotation": [0, 0, -45], + "uv": { + "north": {"uv": [40, 68], "uv_size": [0.5, 0.12504]}, + "south": {"uv": [68, 40], "uv_size": [0.5, 0.12504]}, + "up": {"uv": [21, 53], "uv_size": [0.5, 3]} + } + }, + { + "origin": [-0.64628, -3.79468, 9.07517], + "size": [1.288, 4.86, 1.62], + "uv": { + "north": {"uv": [38, 26], "uv_size": [1.25, 4.87504]}, + "east": {"uv": [16, 35], "uv_size": [1.62504, 4.87504]}, + "west": {"uv": [28, 35], "uv_size": [1.62504, 4.87504]}, + "down": {"uv": [48, 48.62504], "uv_size": [1.25, -1.62504]} + } + }, + { + "origin": [-0.89628, -3.0005, 10.25887], + "size": [1.788, 1.586, 1.62], + "pivot": [-0.05228, -1.96874, 10.32836], + "rotation": [-45, 0, 0], + "uv": { + "north": {"uv": [31, 45], "uv_size": [1.75, 1.62504]}, + "east": {"uv": [47, 23], "uv_size": [1.62504, 1.62504]}, + "south": {"uv": [45, 34], "uv_size": [1.75, 1.62504]}, + "west": {"uv": [47, 29], "uv_size": [1.62504, 1.62504]}, + "down": {"uv": [45, 42.62504], "uv_size": [1.75, -1.62504]} + } + }, + { + "origin": [-0.89628, -2.67321, 10.19664], + "size": [1.788, 1.086, 1.62], + "uv": { + "east": {"uv": [0, 50], "uv_size": [1.62504, 1.12504]}, + "south": {"uv": [10, 49], "uv_size": [1.75, 1.12504]}, + "west": {"uv": [2, 50], "uv_size": [1.62504, 1.12504]} + } + }, + { + "origin": [-0.89628, -0.02321, 11.44664], + "size": [1.788, 0.586, 0.37], + "uv": { + "east": {"uv": [39, 62], "uv_size": [0.37504, 0.62504]}, + "south": {"uv": [56, 51], "uv_size": [1.75, 0.62504]}, + "west": {"uv": [40, 62], "uv_size": [0.37504, 0.62504]} + } + }, + { + "origin": [-0.89628, -2.2591, 9.91983], + "size": [1.788, 1.086, 1.62], + "pivot": [-0.05228, -1.22735, 9.98932], + "rotation": [22.5, 0, 0], + "uv": { + "east": {"uv": [4, 50], "uv_size": [1.62504, 1.12504]}, + "south": {"uv": [12, 49], "uv_size": [1.75, 1.12504]}, + "west": {"uv": [35, 50], "uv_size": [1.62504, 1.12504]} + } + }, + { + "origin": [-0.89628, -0.7579, 10.05051], + "size": [1.788, 1.086, 1.62], + "pivot": [-0.00228, -0.2149, 10.86051], + "rotation": [-22.5, 0, 0], + "uv": { + "east": {"uv": [37, 50], "uv_size": [1.62504, 1.12504]}, + "south": {"uv": [49, 18], "uv_size": [1.75, 1.12504]}, + "west": {"uv": [50, 43], "uv_size": [1.62504, 1.12504]} + } + }, + { + "origin": [-0.89628, -1.2591, 10.01983], + "size": [1.788, 0.836, 1.62], + "uv": { + "east": {"uv": [36, 53], "uv_size": [1.62504, 0.87504]}, + "south": {"uv": [53, 12], "uv_size": [1.75, 0.87504]}, + "west": {"uv": [54, 11], "uv_size": [1.62504, 0.87504]} + } + }, + { + "origin": [-0.89628, 1.92679, 11.44664], + "size": [1.788, 0.486, 0.37], + "uv": { + "east": {"uv": [65, 12], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [12, 57], "uv_size": [1.75, 0.5]}, + "west": {"uv": [13, 65], "uv_size": [0.37504, 0.5]} + } + }, + { + "origin": [-0.89628, 2.2108, 11.329], + "size": [1.788, 0.486, 0.37], + "pivot": [-0.00228, 2.4538, 11.514], + "rotation": [45, 0, 0], + "uv": { + "east": {"uv": [65, 13], "uv_size": [0.37504, 0.5]}, + "south": {"uv": [57, 14], "uv_size": [1.75, 0.5]}, + "west": {"uv": [14, 65], "uv_size": [0.37504, 0.5]} + } + }, + { + "origin": [-0.89628, 2.08645, 8.28699], + "size": [1.788, 0.67, 3.186], + "uv": { + "north": {"uv": [52, 56], "uv_size": [1.75, 0.62504]}, + "east": {"uv": [36, 9], "uv_size": [3.12504, 0.62504]}, + "west": {"uv": [48, 34], "uv_size": [3.12504, 0.62504]}, + "up": {"uv": [31, 41], "uv_size": [1.75, 3.12504]} + } + }, + { + "origin": [-0.89628, 1.1921, 11.05051], + "size": [1.788, 1.086, 0.62], + "pivot": [-0.00228, 1.7351, 10.86051], + "rotation": [-22.5, 0, 0], + "uv": { + "east": {"uv": [16, 58], "uv_size": [0.62504, 1.12504]}, + "south": {"uv": [49, 22], "uv_size": [1.75, 1.12504]}, + "west": {"uv": [17, 58], "uv_size": [0.62504, 1.12504]} + } + }, + { + "origin": [-0.89628, 0.6909, 10.01983], + "size": [1.788, 0.836, 1.62], + "uv": { + "east": {"uv": [12, 54], "uv_size": [1.62504, 0.87504]}, + "south": {"uv": [14, 53], "uv_size": [1.75, 0.87504]}, + "west": {"uv": [14, 54], "uv_size": [1.62504, 0.87504]} + } + }, + { + "origin": [-0.89628, -0.1091, 9.91983], + "size": [1.788, 1.086, 1.62], + "pivot": [-0.05228, 0.92265, 9.98932], + "rotation": [22.5, 0, 0], + "uv": { + "east": {"uv": [50, 45], "uv_size": [1.62504, 1.12504]}, + "south": {"uv": [39, 49], "uv_size": [1.75, 1.12504]}, + "west": {"uv": [50, 47], "uv_size": [1.62504, 1.12504]} + } + }, + { + "origin": [-0.97028, 1.60532, 5.29517], + "size": [1.836, 0.614, 6.048], + "uv": { + "east": {"uv": [44, 31], "uv_size": [6, 0.62504]}, + "west": {"uv": [44, 36], "uv_size": [6, 0.62504]}, + "up": {"uv": [28, 26], "uv_size": [1.87504, 6]}, + "down": {"uv": [4, 35], "uv_size": [1.87504, -6]} + } + }, + { + "origin": [-0.43028, -9.8718, -0.21599], + "size": [0.756, 0.054, 7.02], + "pivot": [0.73788, 0.18352, -7.46464], + "rotation": [22.5, 0, 0], + "uv": { + "east": {"uv": [57, 15], "uv_size": [7, 0.12504]}, + "west": {"uv": [57, 16], "uv_size": [7, 0.12504]}, + "up": {"uv": [9, 41], "uv_size": [0.75, 7]}, + "down": {"uv": [10, 49], "uv_size": [0.75, -7]} + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/geo/lod/sentinel.geo.json b/src/main/resources/assets/superbwarfare/geo/lod/sentinel.geo.json new file mode 100644 index 000000000..b29ae151f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/geo/lod/sentinel.geo.json @@ -0,0 +1,207 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.sentinel", + "texture_width": 64, + "texture_height": 64, + "visible_bounds_width": 4, + "visible_bounds_height": 1.5, + "visible_bounds_offset": [0, 0.25, 0] + }, + "bones": [ + { + "name": "group", + "pivot": [0.125, 2.85, -3.3], + "cubes": [ + { + "origin": [-0.375, 0.85, -24.3], + "size": [0.75, 1, 12], + "uv": { + "north": {"uv": [26, 10], "uv_size": [1, 1]}, + "east": {"uv": [22, 13], "uv_size": [12, 1]}, + "south": {"uv": [15, 27], "uv_size": [1, 1]}, + "west": {"uv": [22, 14], "uv_size": [12, 1]}, + "up": {"uv": [22, 15], "uv_size": [1, 12]}, + "down": {"uv": [23, 27], "uv_size": [1, -12]} + } + }, + { + "origin": [-2.625, 1.35, 9.95], + "size": [1.75, 1, 1], + "uv": { + "north": {"uv": [20, 11], "uv_size": [2, 1]}, + "east": {"uv": [26, 30], "uv_size": [1, 1]}, + "south": {"uv": [30, 8], "uv_size": [2, 1]}, + "west": {"uv": [30, 26], "uv_size": [1, 1]}, + "up": {"uv": [30, 10], "uv_size": [2, 1]}, + "down": {"uv": [30, 12], "uv_size": [2, -1]} + } + }, + { + "origin": [-0.875, 0.35, -15.8], + "size": [1.75, 2, 34.25], + "uv": { + "north": {"uv": [18, 10], "uv_size": [2, 2]}, + "east": {"uv": [0, 0], "uv_size": [34, 2]}, + "south": {"uv": [28, 15], "uv_size": [2, 2]}, + "west": {"uv": [0, 2], "uv_size": [34, 2]}, + "up": {"uv": [0, 4], "uv_size": [2, 34]}, + "down": {"uv": [2, 38], "uv_size": [2, -34]} + } + }, + { + "origin": [-1.075, 1.6, 12.95], + "size": [2.15, 1, 4.25], + "uv": { + "north": {"uv": [30, 15], "uv_size": [2, 1]}, + "east": {"uv": [17, 28], "uv_size": [4, 1]}, + "south": {"uv": [30, 16], "uv_size": [2, 1]}, + "west": {"uv": [28, 17], "uv_size": [4, 1]}, + "up": {"uv": [4, 26], "uv_size": [2, 4]}, + "down": {"uv": [6, 30], "uv_size": [2, -4]} + } + }, + { + "origin": [-0.875, 2.35, -4.05], + "size": [1.75, 0.5, 14], + "uv": { + "north": {"uv": [30, 18], "uv_size": [2, 1]}, + "east": {"uv": [15, 4], "uv_size": [14, 1]}, + "south": {"uv": [30, 19], "uv_size": [2, 1]}, + "west": {"uv": [15, 5], "uv_size": [14, 1]}, + "up": {"uv": [4, 12], "uv_size": [2, 14]}, + "down": {"uv": [6, 26], "uv_size": [2, -14]} + } + }, + { + "origin": [-1.125, 2.85, 1.7], + "size": [2.25, 2, 4.5], + "uv": { + "north": {"uv": [28, 18], "uv_size": [2, 2]}, + "east": {"uv": [15, 6], "uv_size": [5, 2]}, + "south": {"uv": [28, 20], "uv_size": [2, 2]}, + "west": {"uv": [15, 8], "uv_size": [5, 2]}, + "up": {"uv": [20, 6], "uv_size": [2, 5]}, + "down": {"uv": [16, 28], "uv_size": [2, -5]} + } + }, + { + "origin": [-0.875, -3.15, 7.45], + "size": [1.75, 3.5, 11], + "uv": { + "north": {"uv": [26, 6], "uv_size": [2, 4]}, + "east": {"uv": [4, 4], "uv_size": [11, 4]}, + "south": {"uv": [26, 15], "uv_size": [2, 4]}, + "west": {"uv": [4, 8], "uv_size": [11, 4]}, + "up": {"uv": [12, 16], "uv_size": [2, 11]}, + "down": {"uv": [14, 27], "uv_size": [2, -11]} + } + }, + { + "origin": [-0.625, -4.65, 10.95], + "size": [1.25, 1.5, 2.75], + "uv": { + "north": {"uv": [11, 30], "uv_size": [1, 2]}, + "east": {"uv": [15, 10], "uv_size": [3, 2]}, + "south": {"uv": [30, 20], "uv_size": [1, 2]}, + "west": {"uv": [24, 11], "uv_size": [3, 2]}, + "up": {"uv": [21, 28], "uv_size": [1, 3]}, + "down": {"uv": [14, 32], "uv_size": [1, -3]} + } + }, + { + "origin": [-1.125, -4.15, 18.45], + "size": [2.25, 6.75, 2.25], + "uv": { + "north": {"uv": [16, 16], "uv_size": [2, 7]}, + "east": {"uv": [18, 16], "uv_size": [2, 7]}, + "south": {"uv": [20, 16], "uv_size": [2, 7]}, + "west": {"uv": [22, 6], "uv_size": [2, 7]}, + "up": {"uv": [28, 22], "uv_size": [2, 2]}, + "down": {"uv": [28, 26], "uv_size": [2, -2]} + } + }, + { + "origin": [-0.875, -3.55, 13.7], + "size": [1.75, 0.4, 4.75], + "uv": { + "north": {"uv": [22, 30], "uv_size": [2, 1]}, + "east": {"uv": [27, 12], "uv_size": [5, 1]}, + "south": {"uv": [30, 22], "uv_size": [2, 1]}, + "west": {"uv": [28, 9], "uv_size": [5, 1]}, + "up": {"uv": [18, 23], "uv_size": [2, 5]}, + "down": {"uv": [20, 28], "uv_size": [2, -5]} + } + }, + { + "origin": [-0.875, -1.15, -10.8], + "size": [1.75, 1.5, 14], + "uv": { + "north": {"uv": [28, 26], "uv_size": [2, 2]}, + "east": {"uv": [8, 12], "uv_size": [14, 2]}, + "south": {"uv": [28, 28], "uv_size": [2, 2]}, + "west": {"uv": [8, 14], "uv_size": [14, 2]}, + "up": {"uv": [8, 16], "uv_size": [2, 14]}, + "down": {"uv": [10, 30], "uv_size": [2, -14]} + } + }, + { + "origin": [-0.875, -4.35641, 3.67051], + "size": [1.75, 4.8, 1.5], + "pivot": [0, -4.55641, 4.42051], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [24, 6], "uv_size": [2, 5]}, + "east": {"uv": [24, 15], "uv_size": [2, 5]}, + "south": {"uv": [24, 20], "uv_size": [2, 5]}, + "west": {"uv": [24, 25], "uv_size": [2, 5]}, + "up": {"uv": [29, 4], "uv_size": [2, 2]}, + "down": {"uv": [12, 31], "uv_size": [2, -2]} + } + }, + { + "origin": [-0.875, -4.35641, 5.17051], + "size": [1.75, 1.55, 3.25], + "pivot": [0, -4.55641, 4.42051], + "rotation": [22.5, 0, 0], + "uv": { + "north": {"uv": [17, 29], "uv_size": [2, 2]}, + "east": {"uv": [27, 10], "uv_size": [3, 2]}, + "south": {"uv": [19, 29], "uv_size": [2, 2]}, + "west": {"uv": [12, 27], "uv_size": [3, 2]}, + "up": {"uv": [22, 27], "uv_size": [2, 3]}, + "down": {"uv": [26, 30], "uv_size": [2, -3]} + } + }, + { + "origin": [-0.875, -2.15, -0.8], + "size": [1.75, 1, 4], + "uv": { + "north": {"uv": [30, 23], "uv_size": [2, 1]}, + "east": {"uv": [4, 30], "uv_size": [4, 1]}, + "south": {"uv": [24, 30], "uv_size": [2, 1]}, + "west": {"uv": [30, 6], "uv_size": [4, 1]}, + "up": {"uv": [26, 19], "uv_size": [2, 4]}, + "down": {"uv": [26, 27], "uv_size": [2, -4]} + } + }, + { + "origin": [-0.875, 0.8, -27.3], + "size": [1.75, 1.1, 3], + "uv": { + "north": {"uv": [30, 24], "uv_size": [2, 1]}, + "east": {"uv": [30, 7], "uv_size": [3, 1]}, + "south": {"uv": [30, 25], "uv_size": [2, 1]}, + "west": {"uv": [8, 30], "uv_size": [3, 1]}, + "up": {"uv": [28, 6], "uv_size": [2, 3]}, + "down": {"uv": [15, 31], "uv_size": [2, -3]} + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/aa_12.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/aa_12.item.json index 22e037933..d62c94793 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/aa_12.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/aa_12.item.json @@ -80,9 +80,9 @@ -0.25 ], "scale": [ - 1.5, - 1.5, - 1.5 + 1.4, + 1.4, + 1.4 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/ak_12.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/ak_12.item.json index ec45996f7..b110454e7 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/ak_12.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/ak_12.item.json @@ -81,9 +81,9 @@ 0 ], "scale": [ - 1.3, - 1.3, - 1.3 + 1.55, + 1.55, + 1.55 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/ak_47.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/ak_47.item.json index 691a6769c..8babd30a4 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/ak_47.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/ak_47.item.json @@ -80,9 +80,9 @@ 0 ], "scale": [ - 1.3, - 1.3, - 1.3 + 1.55, + 1.55, + 1.55 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json index c292b42f5..0ec7dad0e 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json @@ -81,9 +81,9 @@ -0.75 ], "scale": [ - 1.4, - 1.4, - 1.4 + 1.6, + 1.6, + 1.6 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json index 981b03a75..2bb0408bf 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json @@ -81,9 +81,9 @@ -9.75 ], "scale": [ - 1.5, - 1.5, - 1.5 + 1.65, + 1.66, + 1.65 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m_4.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m_4.item.json index fb8490502..fbc3c858a 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/m_4.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m_4.item.json @@ -85,9 +85,9 @@ 0 ], "scale": [ - 1.25, - 1.25, - 1.25 + 1.15, + 1.15, + 1.15 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json index 414809f29..0203e4653 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json @@ -7,30 +7,6 @@ ], "gui_light": "front", "display": { - "thirdperson_righthand": { - "translation": [ - 0, - 3.25, - -2 - ], - "scale": [ - 0.75, - 0.75, - 0.75 - ] - }, - "thirdperson_lefthand": { - "translation": [ - 0, - 3.25, - -2 - ], - "scale": [ - 0.75, - 0.75, - 0.75 - ] - }, "firstperson_righthand": { "rotation": [ 0, @@ -49,11 +25,25 @@ ] }, "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "thirdperson_righthand": { "translation": [ - -4.5, - 9, - 4 + -0.75, + 0.25, + 2.75 ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { "scale": [ 0, 0, @@ -63,54 +53,37 @@ "ground": { "translation": [ 0, - 3, - 0 + 2.5, + 3.5 ], "scale": [ - 0.75, - 0.75, - 0.75 - ] - }, - "gui": { - "rotation": [ - -60, - 135, - 60 - ], - "translation": [ - 0, - 2, - 0 - ], - "scale": [ - 0.45, - 0.45, - 0.45 + 0.65, + 0.65, + 0.65 ] }, "head": { - "rotation": [ + "translation": [ 0, - -90, - 0 + 6.25, + 3.5 ] }, "fixed": { "rotation": [ 0, - 90, + -90, 0 ], "translation": [ -1.5, - 5.25, - -2 + -0.25, + 0 ], "scale": [ - 1.5, - 1.5, - 1.5 + 1.3, + 1.3, + 1.3 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json index 691a6769c..8babd30a4 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json @@ -80,9 +80,9 @@ 0 ], "scale": [ - 1.3, - 1.3, - 1.3 + 1.55, + 1.55, + 1.55 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json index 9a2ab367b..c3645f13e 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json @@ -6,30 +6,6 @@ 128 ], "display": { - "thirdperson_righthand": { - "translation": [ - 0, - 0.75, - -3.25 - ], - "scale": [ - 0.55, - 0.55, - 0.55 - ] - }, - "thirdperson_lefthand": { - "translation": [ - 0, - 0.75, - -3.25 - ], - "scale": [ - 0.55, - 0.55, - 0.55 - ] - }, "firstperson_righthand": { "translation": [ 2.75, @@ -59,23 +35,47 @@ 0 ] }, + "thirdperson_righthand": { + "translation": [ + -0.5, + 1.5, + 1.25 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, "ground": { "translation": [ 0, - 3, - 0 + 4, + 2.25 ], "scale": [ - 1, - 1, - 1 + 0.75, + 0.75, + 0.75 ] }, "gui": { "rotation": [ - 30, - -145, - 0 + 90, + -45, + 90 + ], + "translation": [ + 1, + 0.75, + -0.75 ], "scale": [ 0.6, @@ -83,21 +83,28 @@ 0.6 ] }, + "head": { + "translation": [ + 0, + 10.75, + 2.75 + ] + }, "fixed": { "rotation": [ 0, - 90, + -90, 0 ], "translation": [ - -1.75, - -0.25, - -2 + -3.5, + 1.25, + -0.5 ], "scale": [ - 1.1, - 1.1, - 1.1 + 1.25, + 1.25, + 1.25 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json index 542f11331..a34a247b7 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json @@ -7,23 +7,6 @@ ], "gui_light": "front", "display": { - "thirdperson_lefthand": { - "rotation": [ - 90, - -90, - 0 - ], - "translation": [ - 0, - -2, - -1.25 - ], - "scale": [ - 1.1, - 1.1, - 1.1 - ] - }, "firstperson_righthand": { "translation": [ 2.75, @@ -37,16 +20,25 @@ ] }, "firstperson_lefthand": { - "rotation": [ - 13, - 36, - -17 - ], + "scale": [ + 0, + 0, + 0 + ] + }, + "thirdperson_righthand": { "translation": [ - 0.25, - -80, - -0.25 + -1.5, + 0, + -3 ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { "scale": [ 0, 0, @@ -56,13 +48,13 @@ "ground": { "translation": [ 0, - 1.5, - 0 + 5.5, + 0.25 ], "scale": [ - 1.2, - 1.2, - 1.2 + 0.75, + 0.75, + 0.75 ] }, "gui": { @@ -72,12 +64,19 @@ 0 ], "scale": [ - 0.6, - 0.6, - 0.6 + 0.5, + 0.5, + 0.5 ] }, "head": { + "translation": [ + 0, + 7.75, + -3 + ] + }, + "fixed": { "rotation": [ 0, -90, @@ -85,30 +84,13 @@ ], "translation": [ 0, - 17.25, + -0.25, 0 ], "scale": [ - 2.5, - 2.5, - 2.5 - ] - }, - "fixed": { - "rotation": [ - 0, - 90, - 0 - ], - "translation": [ - 0.25, - 2.75, - -1.75 - ], - "scale": [ - 2, - 2, - 2 + 1.25, + 1.25, + 1.25 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json index f03d02a1a..58ebaea78 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json @@ -80,9 +80,9 @@ 0 ], "scale": [ - 1.3, - 1.3, - 1.3 + 1.55, + 1.55, + 1.55 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json index 831987c30..c04245fe1 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json @@ -75,9 +75,9 @@ 0 ], "scale": [ - 1.3, - 1.3, - 1.3 + 1.55, + 1.55, + 1.55 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json index 20b402baf..4e3480f9e 100644 --- a/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json @@ -70,9 +70,9 @@ 0 ], "scale": [ - 1.2, - 1.2, - 1.2 + 1.5, + 1.5, + 1.5 ] } } diff --git a/src/main/resources/assets/superbwarfare/models/lod/rpg.json b/src/main/resources/assets/superbwarfare/models/lod/rpg.json deleted file mode 100644 index 3094950b2..000000000 --- a/src/main/resources/assets/superbwarfare/models/lod/rpg.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "superbwarfare:item/lod/rpg", - "particle": "superbwarfare:item/lod/rpg" - }, - "elements": [ - { - "from": [7, 1.3, 9.25], - "to": [9, 3.3, 21], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [7.5, 0.5, 8.5, 1.5], "texture": "#2"}, - "east": {"uv": [0, 0, 6, 1], "texture": "#2"}, - "south": {"uv": [7, 7.5, 8, 8.5], "texture": "#2"}, - "west": {"uv": [0, 1, 6, 2], "texture": "#2"}, - "up": {"uv": [1, 8, 0, 2], "texture": "#2"}, - "down": {"uv": [2, 2, 1, 8], "texture": "#2"} - } - }, - { - "from": [7.25, 1.55, 21], - "to": [8.75, 3.05, 27], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [8.5, 9, 9.5, 9.5], "texture": "#2"}, - "east": {"uv": [6, 7, 9, 7.5], "texture": "#2"}, - "south": {"uv": [9, 8.5, 10, 9], "texture": "#2"}, - "west": {"uv": [7.5, 0, 10.5, 0.5], "texture": "#2"}, - "up": {"uv": [4, 6, 3, 3], "texture": "#2"}, - "down": {"uv": [5, 3, 4, 6], "texture": "#2"} - } - }, - { - "from": [7.5, 1.8, 1.75], - "to": [8.5, 2.8, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [8, 4.5, 8.5, 5], "texture": "#2"}, - "east": {"uv": [6, 1.5, 10, 2], "texture": "#2"}, - "south": {"uv": [9.5, 3, 10, 3.5], "texture": "#2"}, - "west": {"uv": [6, 6.5, 10, 7], "texture": "#2"}, - "up": {"uv": [4.5, 10, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 10], "texture": "#2"} - } - }, - { - "from": [6.75, 2.3, 3.25], - "to": [7.5, 4.8, 3.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [8, 3, 8.5, 4.5], "texture": "#2"}, - "east": {"uv": [5, 8, 5.5, 9.5], "texture": "#2"}, - "south": {"uv": [5.5, 8, 6, 9.5], "texture": "#2"}, - "west": {"uv": [8, 7.5, 8.5, 9], "texture": "#2"}, - "up": {"uv": [10, 4, 9.5, 3.5], "texture": "#2"}, - "down": {"uv": [10, 4, 9.5, 4.5], "texture": "#2"} - } - }, - { - "from": [6.75, 2.3, 11.75], - "to": [7.5, 4.8, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [8.5, 3, 9, 4.5], "texture": "#2"}, - "east": {"uv": [8.5, 4.5, 9, 6], "texture": "#2"}, - "south": {"uv": [7, 8.5, 7.5, 10], "texture": "#2"}, - "west": {"uv": [7.5, 8.5, 8, 10], "texture": "#2"}, - "up": {"uv": [5.5, 10, 5, 9.5], "texture": "#2"}, - "down": {"uv": [6, 9.5, 5.5, 10], "texture": "#2"} - } - }, - { - "from": [7.5, 1.8, -13], - "to": [8.5, 2.8, 1.75], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [9.5, 7, 10, 7.5], "texture": "#2"}, - "east": {"uv": [2, 2, 9.5, 2.5], "texture": "#2"}, - "south": {"uv": [9.5, 7.5, 10, 8], "texture": "#2"}, - "west": {"uv": [2, 2.5, 9.5, 3], "texture": "#2"}, - "up": {"uv": [2.5, 10.5, 2, 3], "texture": "#2"}, - "down": {"uv": [3, 3, 2.5, 10.5], "texture": "#2"} - } - }, - { - "from": [7, 1.3, -7.5], - "to": [9, 3.3, -2], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "east": {"uv": [5, 3, 8, 4], "texture": "#2"}, - "south": {"uv": [1, 8, 2, 9], "texture": "#2"}, - "west": {"uv": [5, 4, 8, 5], "texture": "#2"}, - "up": {"uv": [6, 8, 5, 5], "texture": "#2"}, - "down": {"uv": [4, 6, 3, 9], "texture": "#2"} - } - }, - { - "from": [7.25, 1.55, -12.5], - "to": [8.75, 3.05, -10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [9.5, 2, 10.5, 2.5], "texture": "#2"}, - "east": {"uv": [8.5, 0.5, 10, 1], "texture": "#2"}, - "south": {"uv": [9.5, 2.5, 10.5, 3], "texture": "#2"}, - "west": {"uv": [8.5, 1, 10, 1.5], "texture": "#2"}, - "up": {"uv": [8.5, 6.5, 7.5, 5], "texture": "#2"}, - "down": {"uv": [7, 7.5, 6, 9], "texture": "#2"} - } - }, - { - "from": [7.5, -1.2, 11.75], - "to": [8.5, 1.3, 12.75], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [8.5, 7.5, 9, 9], "texture": "#2"}, - "east": {"uv": [0, 9, 0.5, 10.5], "texture": "#2"}, - "south": {"uv": [0.5, 9, 1, 10.5], "texture": "#2"}, - "west": {"uv": [1, 9, 1.5, 10.5], "texture": "#2"}, - "up": {"uv": [10, 8.5, 9.5, 8], "texture": "#2"}, - "down": {"uv": [9, 9.5, 8.5, 10], "texture": "#2"} - } - }, - { - "from": [7.5, -1.95, 6.25], - "to": [8.5, 0.55, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [1.5, 9, 2, 10.5], "texture": "#2"}, - "east": {"uv": [3, 9, 3.5, 10.5], "texture": "#2"}, - "south": {"uv": [9, 3, 9.5, 4.5], "texture": "#2"}, - "west": {"uv": [3.5, 9, 4, 10.5], "texture": "#2"}, - "up": {"uv": [9.5, 10, 9, 9.5], "texture": "#2"}, - "down": {"uv": [10, 9, 9.5, 9.5], "texture": "#2"} - } - }, - { - "from": [7.5, 0.55, 4.75], - "to": [8.5, 1.8, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [9.5, 9.5, 10, 10], "texture": "#2"}, - "east": {"uv": [8.5, 6, 10, 6.5], "texture": "#2"}, - "south": {"uv": [10, 0.5, 10.5, 1], "texture": "#2"}, - "west": {"uv": [9, 4.5, 10.5, 5], "texture": "#2"}, - "up": {"uv": [6.5, 10.5, 6, 9], "texture": "#2"}, - "down": {"uv": [7, 9, 6.5, 10.5], "texture": "#2"} - } - }, - { - "from": [6.5, 0.8, 27], - "to": [9.5, 3.8, 28], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]}, - "faces": { - "north": {"uv": [6, 0, 7.5, 1.5], "texture": "#2"}, - "east": {"uv": [9, 7, 9.5, 8.5], "texture": "#2"}, - "south": {"uv": [6, 5, 7.5, 6.5], "texture": "#2"}, - "west": {"uv": [8, 9, 8.5, 10.5], "texture": "#2"}, - "up": {"uv": [10.5, 5.5, 9, 5], "texture": "#2"}, - "down": {"uv": [10.5, 5.5, 9, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [-1.25, 7.5, 2.25] - }, - "thirdperson_lefthand": { - "scale": [0, 0, 0] - }, - "ground": { - "translation": [0, 6, -5] - }, - "head": { - "translation": [0, 14.75, -5.25] - }, - "fixed": { - "rotation": [90, -45, 90], - "translation": [-0.5, 7.25, 0] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/lod/secondary_cataclysm.json b/src/main/resources/assets/superbwarfare/models/lod/secondary_cataclysm.json deleted file mode 100644 index be89d4007..000000000 --- a/src/main/resources/assets/superbwarfare/models/lod/secondary_cataclysm.json +++ /dev/null @@ -1,4378 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "superbwarfare:item/lod/secondary_cataclysm" - }, - "elements": [ - { - "from": [3.76955, 7.32204, 6.86617], - "to": [4.15235, 7.81704, 11.08617], - "rotation": {"angle": 0, "axis": "y", "origin": [7.53723, 8.74762, 6.84877]}, - "faces": { - "north": {"uv": [2.875, 7.875, 2.92188, 7.9375], "texture": "#1"}, - "east": {"uv": [5.875, 1.75, 6.40625, 1.8125], "texture": "#1"}, - "south": {"uv": [7.875, 2.875, 7.92188, 2.9375], "texture": "#1"}, - "west": {"uv": [5.875, 4.375, 6.40625, 4.4375], "texture": "#1"}, - "up": {"uv": [0.29688, 7.03125, 0.25, 6.5], "texture": "#1"}, - "down": {"uv": [0.42188, 6.5, 0.375, 7.03125], "texture": "#1"} - } - }, - { - "from": [3.96017, 7.24309, 6.86617], - "to": [4.34297, 7.73809, 11.08617], - "rotation": {"angle": -45, "axis": "z", "origin": [4.15157, 7.54559, 8.35117]}, - "faces": { - "north": {"uv": [3, 7.875, 3.04688, 7.9375], "texture": "#1"}, - "east": {"uv": [6, 0, 6.53125, 0.0625], "texture": "#1"}, - "south": {"uv": [7.875, 3, 7.92188, 3.0625], "texture": "#1"}, - "west": {"uv": [1.375, 6, 1.90625, 6.0625], "texture": "#1"}, - "up": {"uv": [0.54688, 7.03125, 0.5, 6.5], "texture": "#1"}, - "down": {"uv": [0.67188, 6.5, 0.625, 7.03125], "texture": "#1"} - } - }, - { - "from": [3.92803, 7.16356, 6.86617], - "to": [4.42303, 7.54636, 11.08617], - "rotation": {"angle": 0, "axis": "y", "origin": [4.23053, 7.35496, 8.35117]}, - "faces": { - "north": {"uv": [3.125, 7.875, 3.1875, 7.92188], "texture": "#1"}, - "east": {"uv": [6.5, 1.75, 7.03125, 1.79688], "texture": "#1"}, - "south": {"uv": [7.875, 3.125, 7.9375, 3.17188], "texture": "#1"}, - "west": {"uv": [6.5, 3.625, 7.03125, 3.67188], "texture": "#1"}, - "up": {"uv": [1.1875, 6.53125, 1.125, 6], "texture": "#1"}, - "down": {"uv": [2.0625, 6, 2, 6.53125], "texture": "#1"} - } - }, - { - "from": [3.84907, 6.97294, 6.86617], - "to": [4.34407, 7.35574, 11.08617], - "rotation": {"angle": -45, "axis": "z", "origin": [4.15157, 7.16434, 8.35117]}, - "faces": { - "north": {"uv": [3.25, 7.875, 3.3125, 7.92188], "texture": "#1"}, - "east": {"uv": [6.5, 3.75, 7.03125, 3.79688], "texture": "#1"}, - "south": {"uv": [7.875, 3.25, 7.9375, 3.29688], "texture": "#1"}, - "west": {"uv": [4.125, 6.5, 4.65625, 6.54688], "texture": "#1"}, - "up": {"uv": [2.1875, 6.53125, 2.125, 6], "texture": "#1"}, - "down": {"uv": [2.3125, 6, 2.25, 6.53125], "texture": "#1"} - } - }, - { - "from": [3.76955, 6.89288, 6.86617], - "to": [4.15235, 7.38788, 11.08617], - "rotation": {"angle": 0, "axis": "y", "origin": [3.96095, 7.08538, 8.35117]}, - "faces": { - "north": {"uv": [3.375, 7.875, 3.42188, 7.9375], "texture": "#1"}, - "east": {"uv": [6, 1.625, 6.53125, 1.6875], "texture": "#1"}, - "south": {"uv": [7.875, 3.375, 7.92188, 3.4375], "texture": "#1"}, - "west": {"uv": [6, 1.875, 6.53125, 1.9375], "texture": "#1"}, - "up": {"uv": [0.79688, 7.03125, 0.75, 6.5], "texture": "#1"}, - "down": {"uv": [3.04688, 6.5, 3, 7.03125], "texture": "#1"} - } - }, - { - "from": [3.57893, 6.97184, 6.86617], - "to": [3.96173, 7.46684, 11.08617], - "rotation": {"angle": -45, "axis": "z", "origin": [3.77033, 7.16434, 8.35117]}, - "faces": { - "north": {"uv": [3.5, 7.875, 3.54688, 7.9375], "texture": "#1"}, - "east": {"uv": [6, 2, 6.53125, 2.0625], "texture": "#1"}, - "south": {"uv": [7.875, 3.5, 7.92188, 3.5625], "texture": "#1"}, - "west": {"uv": [6, 2.125, 6.53125, 2.1875], "texture": "#1"}, - "up": {"uv": [3.67188, 7.03125, 3.625, 6.5], "texture": "#1"}, - "down": {"uv": [4.79688, 6.5, 4.75, 7.03125], "texture": "#1"} - } - }, - { - "from": [3.49887, 7.16356, 6.86617], - "to": [3.99387, 7.54636, 11.08617], - "rotation": {"angle": 0, "axis": "y", "origin": [3.69137, 7.35496, 8.35117]}, - "faces": { - "north": {"uv": [3.625, 7.875, 3.6875, 7.92188], "texture": "#1"}, - "east": {"uv": [6.5, 4.25, 7.03125, 4.29688], "texture": "#1"}, - "south": {"uv": [7.875, 3.625, 7.9375, 3.67188], "texture": "#1"}, - "west": {"uv": [6.5, 4.375, 7.03125, 4.42188], "texture": "#1"}, - "up": {"uv": [2.4375, 6.53125, 2.375, 6], "texture": "#1"}, - "down": {"uv": [2.5625, 6, 2.5, 6.53125], "texture": "#1"} - } - }, - { - "from": [3.57783, 7.35419, 6.86617], - "to": [4.07283, 7.73699, 11.08617], - "rotation": {"angle": -45, "axis": "z", "origin": [3.77033, 7.54559, 8.35117]}, - "faces": { - "north": {"uv": [3.75, 7.875, 3.8125, 7.92188], "texture": "#1"}, - "east": {"uv": [6.5, 5.375, 7.03125, 5.42188], "texture": "#1"}, - "south": {"uv": [7.875, 3.75, 7.9375, 3.79688], "texture": "#1"}, - "west": {"uv": [6.5, 5.5, 7.03125, 5.54688], "texture": "#1"}, - "up": {"uv": [2.6875, 6.53125, 2.625, 6], "texture": "#1"}, - "down": {"uv": [2.8125, 6, 2.75, 6.53125], "texture": "#1"} - } - }, - { - "from": [4.45494, 7.0772, 5.74517], - "to": [5.53494, 7.6172, 6.28517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 2.875, 7.51563, 2.9375], "texture": "#1"}, - "east": {"uv": [2.625, 7.75, 2.6875, 7.8125], "texture": "#1"}, - "south": {"uv": [7.375, 3, 7.51563, 3.0625], "texture": "#1"}, - "west": {"uv": [7.75, 2.625, 7.8125, 2.6875], "texture": "#1"}, - "up": {"uv": [7.51563, 3.5625, 7.375, 3.5], "texture": "#1"}, - "down": {"uv": [7.51563, 3.625, 7.375, 3.6875], "texture": "#1"} - } - }, - { - "from": [4.72053, 7.0772, 3.977], - "to": [5.80053, 7.6172, 4.517], - "rotation": {"angle": 45, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 3.75, 7.51563, 3.8125], "texture": "#1"}, - "east": {"uv": [2.75, 7.75, 2.8125, 7.8125], "texture": "#1"}, - "south": {"uv": [7.375, 4.25, 7.51563, 4.3125], "texture": "#1"}, - "west": {"uv": [7.75, 2.75, 7.8125, 2.8125], "texture": "#1"}, - "up": {"uv": [7.51563, 4.6875, 7.375, 4.625], "texture": "#1"}, - "down": {"uv": [7.51563, 4.75, 7.375, 4.8125], "texture": "#1"} - } - }, - { - "from": [3.69127, 7.0772, 6.50885], - "to": [4.23127, 7.6172, 7.58885], - "rotation": {"angle": 0, "axis": "y", "origin": [3.96127, 7.3472, 7.04885]}, - "faces": { - "north": {"uv": [2.875, 7.75, 2.9375, 7.8125], "texture": "#1"}, - "east": {"uv": [4.875, 7.375, 5.01563, 7.4375], "texture": "#1"}, - "south": {"uv": [7.75, 2.875, 7.8125, 2.9375], "texture": "#1"}, - "west": {"uv": [7.375, 4.875, 7.51563, 4.9375], "texture": "#1"}, - "up": {"uv": [5.3125, 7.51563, 5.25, 7.375], "texture": "#1"}, - "down": {"uv": [5.4375, 7.375, 5.375, 7.51563], "texture": "#1"} - } - }, - { - "from": [3.83855, 7.34793, 11.01924], - "to": [4.08251, 7.64889, 11.15844], - "rotation": {"angle": 0, "axis": "y", "origin": [3.97478, 7.38441, 9.13484]}, - "faces": { - "north": {"uv": [0.5, 8.875, 0.51563, 8.89063], "texture": "#1"}, - "east": {"uv": [7.75, 5.875, 7.95313, 5.89063], "texture": "#1"}, - "south": {"uv": [8.875, 0.375, 8.89063, 0.39063], "texture": "#1"}, - "west": {"uv": [6, 7.75, 6.20313, 7.76563], "texture": "#1"}, - "up": {"uv": [7.95313, 6.01563, 7.75, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.95313, 6.5, 7.75, 6.51563], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.70823, 7.33425, 11.01924], - "to": [4.00919, 7.57821, 11.15844], - "rotation": {"angle": -45, "axis": "z", "origin": [3.85871, 7.45623, 9.13484]}, - "faces": { - "north": {"uv": [0.625, 8.875, 0.64063, 8.89063], "texture": "#1"}, - "east": {"uv": [6.75, 7.75, 6.95313, 7.76563], "texture": "#1"}, - "south": {"uv": [8.875, 0.5, 8.89063, 0.51563], "texture": "#1"}, - "west": {"uv": [7.75, 6.75, 7.95313, 6.76563], "texture": "#1"}, - "up": {"uv": [7.20313, 7.76563, 7, 7.75], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.45313, 7.75, 7.25, 7.76563], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.70823, 7.13061, 11.01924], - "to": [4.00919, 7.37457, 11.15844], - "rotation": {"angle": 45, "axis": "z", "origin": [3.85871, 7.25259, 9.13484]}, - "faces": { - "north": {"uv": [0.75, 8.875, 0.76563, 8.89063], "texture": "#1"}, - "east": {"uv": [7.5, 7.75, 7.70313, 7.76563], "texture": "#1"}, - "south": {"uv": [8.875, 0.625, 8.89063, 0.64063], "texture": "#1"}, - "west": {"uv": [7.75, 7.625, 7.95313, 7.64063], "texture": "#1"}, - "up": {"uv": [7.95313, 7.76563, 7.75, 7.75], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0.20313, 7.875, 0, 7.89063], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.66605, 7.23243, 11.01924], - "to": [3.96701, 7.47639, 11.15844], - "rotation": {"angle": 0, "axis": "y", "origin": [3.81653, 7.35441, 9.13484]}, - "faces": { - "north": {"uv": [0.875, 8.875, 0.89063, 8.89063], "texture": "#1"}, - "east": {"uv": [7.875, 0, 8.07813, 0.01563], "texture": "#1"}, - "south": {"uv": [8.875, 0.75, 8.89063, 0.76563], "texture": "#1"}, - "west": {"uv": [7.875, 0.125, 8.07813, 0.14063], "texture": "#1"}, - "up": {"uv": [0.45313, 7.89063, 0.25, 7.875], "rotation": 90, "texture": "#1"}, - "down": {"uv": [8.07813, 0.375, 7.875, 0.39063], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.83855, 7.05993, 11.01924], - "to": [4.08251, 7.36089, 11.15844], - "rotation": {"angle": 0, "axis": "y", "origin": [3.96053, 7.21041, 9.13484]}, - "faces": { - "north": {"uv": [1, 8.875, 1.01563, 8.89063], "texture": "#1"}, - "east": {"uv": [0.5, 7.875, 0.70313, 7.89063], "texture": "#1"}, - "south": {"uv": [8.875, 0.875, 8.89063, 0.89063], "texture": "#1"}, - "west": {"uv": [0.75, 7.875, 0.95313, 7.89063], "texture": "#1"}, - "up": {"uv": [1.20313, 7.89063, 1, 7.875], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1.57813, 7.875, 1.375, 7.89063], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.95405, 7.23243, 11.01924], - "to": [4.25501, 7.47639, 11.15844], - "rotation": {"angle": 0, "axis": "y", "origin": [4.10453, 7.35441, 9.13484]}, - "faces": { - "north": {"uv": [1.125, 8.875, 1.14063, 8.89063], "texture": "#1"}, - "east": {"uv": [1.625, 7.875, 1.82813, 7.89063], "texture": "#1"}, - "south": {"uv": [8.875, 1, 8.89063, 1.01563], "texture": "#1"}, - "west": {"uv": [7.875, 1.75, 8.07813, 1.76563], "texture": "#1"}, - "up": {"uv": [2.07813, 7.89063, 1.875, 7.875], "rotation": 90, "texture": "#1"}, - "down": {"uv": [2.32813, 7.875, 2.125, 7.89063], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.91187, 7.33425, 11.01924], - "to": [4.21283, 7.57821, 11.15844], - "rotation": {"angle": 45, "axis": "z", "origin": [4.06235, 7.45623, 9.13484]}, - "faces": { - "north": {"uv": [1.25, 8.875, 1.26563, 8.89063], "texture": "#1"}, - "east": {"uv": [7.875, 2.125, 8.07813, 2.14063], "texture": "#1"}, - "south": {"uv": [8.875, 1.125, 8.89063, 1.14063], "texture": "#1"}, - "west": {"uv": [7.875, 2.25, 8.07813, 2.26563], "texture": "#1"}, - "up": {"uv": [2.57813, 7.89063, 2.375, 7.875], "rotation": 90, "texture": "#1"}, - "down": {"uv": [8.07813, 2.375, 7.875, 2.39063], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.94037, 7.10211, 11.01924], - "to": [4.18433, 7.40307, 11.15844], - "rotation": {"angle": 45, "axis": "z", "origin": [4.06235, 7.25259, 9.13484]}, - "faces": { - "north": {"uv": [1.375, 8.875, 1.39063, 8.89063], "texture": "#1"}, - "east": {"uv": [7.875, 2.5, 8.07813, 2.51563], "texture": "#1"}, - "south": {"uv": [8.875, 1.25, 8.89063, 1.26563], "texture": "#1"}, - "west": {"uv": [2.625, 7.875, 2.82813, 7.89063], "texture": "#1"}, - "up": {"uv": [8.07813, 2.64063, 7.875, 2.625], "rotation": 90, "texture": "#1"}, - "down": {"uv": [8.07813, 2.75, 7.875, 2.76563], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.20454, 6.96381, 4.88117], - "to": [6.47454, 8.96181, 11.36117], - "rotation": {"angle": -45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.5, 7.5, 0.53125, 7.75], "texture": "#1"}, - "east": {"uv": [3.25, 1.375, 4.0625, 1.625], "texture": "#1"}, - "south": {"uv": [0.625, 7.5, 0.65625, 7.75], "texture": "#1"}, - "west": {"uv": [2.25, 3.25, 3.0625, 3.5], "texture": "#1"}, - "up": {"uv": [0.03125, 7.3125, 0, 6.5], "texture": "#1"}, - "down": {"uv": [0.15625, 6.5, 0.125, 7.3125], "texture": "#1"} - } - }, - { - "from": [6.70228, 9.34932, 4.88117], - "to": [9.29428, 9.61532, 11.36117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.25, 3.125, 7.57813, 3.15625], "texture": "#1"}, - "east": {"uv": [6.375, 2.875, 7.1875, 2.90625], "texture": "#1"}, - "south": {"uv": [7.25, 3.25, 7.57813, 3.28125], "texture": "#1"}, - "west": {"uv": [6.375, 5.125, 7.1875, 5.15625], "texture": "#1"}, - "up": {"uv": [2.32813, 1.3125, 2, 0.5], "texture": "#1"}, - "down": {"uv": [1.07813, 2, 0.75, 2.8125], "texture": "#1"} - } - }, - { - "from": [5.29828, 5.78532, 4.88117], - "to": [5.56828, 8.21532, 11.36117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.875, 7.375, 2.90625, 7.67188], "texture": "#1"}, - "east": {"uv": [2.375, 0.875, 3.1875, 1.17188], "texture": "#1"}, - "south": {"uv": [3, 7.375, 3.03125, 7.67188], "texture": "#1"}, - "west": {"uv": [2.375, 1.25, 3.1875, 1.54688], "texture": "#1"}, - "up": {"uv": [5.78125, 7.1875, 5.75, 6.375], "texture": "#1"}, - "down": {"uv": [5.90625, 6.375, 5.875, 7.1875], "texture": "#1"} - } - }, - { - "from": [3.82414, 6.02483, 4.88117], - "to": [4.09414, 8.02283, 11.36117], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.125, 7.5, 0.15625, 7.75], "texture": "#1"}, - "east": {"uv": [3.25, 0.375, 4.0625, 0.625], "texture": "#1"}, - "south": {"uv": [0.25, 7.5, 0.28125, 7.75], "texture": "#1"}, - "west": {"uv": [3.25, 0.625, 4.0625, 0.875], "texture": "#1"}, - "up": {"uv": [6.03125, 7.1875, 6, 6.375], "texture": "#1"}, - "down": {"uv": [6.15625, 6.375, 6.125, 7.1875], "texture": "#1"} - } - }, - { - "from": [6.70228, 4.38132, 4.88117], - "to": [9.29428, 4.59732, 11.36117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.25, 3.375, 7.57813, 3.40625], "texture": "#1"}, - "east": {"uv": [6.375, 5.25, 7.1875, 5.28125], "texture": "#1"}, - "south": {"uv": [7.25, 3.875, 7.57813, 3.90625], "texture": "#1"}, - "west": {"uv": [6.5, 0.125, 7.3125, 0.15625], "texture": "#1"}, - "up": {"uv": [2.32813, 2.1875, 2, 1.375], "texture": "#1"}, - "down": {"uv": [1.82813, 2.125, 1.5, 2.9375], "texture": "#1"} - } - }, - { - "from": [11.47119, 7.06592, 4.88117], - "to": [11.74119, 9.06392, 11.36117], - "rotation": {"angle": -45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.5, 0.25, 7.53125, 0.5], "texture": "#1"}, - "east": {"uv": [3.25, 0.875, 4.0625, 1.125], "texture": "#1"}, - "south": {"uv": [0.375, 7.5, 0.40625, 7.75], "texture": "#1"}, - "west": {"uv": [3.25, 1.125, 4.0625, 1.375], "texture": "#1"}, - "up": {"uv": [6.28125, 7.1875, 6.25, 6.375], "texture": "#1"}, - "down": {"uv": [6.40625, 6.25, 6.375, 7.0625], "texture": "#1"} - } - }, - { - "from": [10.42828, 5.78532, 4.88117], - "to": [10.69828, 8.21532, 11.36117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.875, 7.375, 1.90625, 7.67188], "texture": "#1"}, - "east": {"uv": [1.875, 2.25, 2.6875, 2.54688], "texture": "#1"}, - "south": {"uv": [7.375, 2.5, 7.40625, 2.79688], "texture": "#1"}, - "west": {"uv": [2.375, 0.5, 3.1875, 0.79688], "texture": "#1"}, - "up": {"uv": [5.53125, 7.1875, 5.5, 6.375], "texture": "#1"}, - "down": {"uv": [5.65625, 6.375, 5.625, 7.1875], "texture": "#1"} - } - }, - { - "from": [9.09079, 5.92271, 4.88117], - "to": [9.36079, 7.92071, 11.36117], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 7.125, 7.40625, 7.375], "texture": "#1"}, - "east": {"uv": [2.25, 3, 3.0625, 3.25], "texture": "#1"}, - "south": {"uv": [7.375, 7.375, 7.40625, 7.625], "texture": "#1"}, - "west": {"uv": [3.125, 3, 3.9375, 3.25], "texture": "#1"}, - "up": {"uv": [5.28125, 7.1875, 5.25, 6.375], "texture": "#1"}, - "down": {"uv": [5.40625, 6.375, 5.375, 7.1875], "texture": "#1"} - } - }, - { - "from": [5.70937, 4.46968, 5.20517], - "to": [7.43737, 5.33368, 10.92917], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.625, 0, 6.84375, 0.10938], "texture": "#1"}, - "east": {"uv": [5.125, 4.125, 5.84375, 4.23438], "texture": "#1"}, - "south": {"uv": [6.625, 0.75, 6.84375, 0.85938], "texture": "#1"}, - "west": {"uv": [5.25, 0, 5.96875, 0.10938], "texture": "#1"}, - "up": {"uv": [1.71875, 4.34375, 1.5, 3.625], "texture": "#1"}, - "down": {"uv": [3.84375, 1.625, 3.625, 2.34375], "texture": "#1"} - } - }, - { - "from": [9.18628, 5.78532, 5.20517], - "to": [10.48228, 8.16132, 10.92917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2, 5.625, 2.15625, 5.92188], "texture": "#1"}, - "east": {"uv": [1.875, 2.625, 2.59375, 2.92188], "texture": "#1"}, - "south": {"uv": [5.625, 2.375, 5.78125, 2.67188], "texture": "#1"}, - "west": {"uv": [2.625, 2.625, 3.34375, 2.92188], "texture": "#1"}, - "up": {"uv": [3.90625, 5.09375, 3.75, 4.375], "texture": "#1"}, - "down": {"uv": [3.28125, 4.5, 3.125, 5.21875], "texture": "#1"} - } - }, - { - "from": [8.19337, 6.08968, 5.20517], - "to": [9.16537, 7.81768, 10.92917], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.75, 6, 3.875, 6.21875], "texture": "#1"}, - "east": {"uv": [3.625, 0, 4.34375, 0.21875], "texture": "#1"}, - "south": {"uv": [0.75, 6.25, 0.875, 6.46875], "texture": "#1"}, - "west": {"uv": [3.75, 3.25, 4.46875, 3.46875], "texture": "#1"}, - "up": {"uv": [1.25, 5.09375, 1.125, 4.375], "texture": "#1"}, - "down": {"uv": [4.125, 4.375, 4, 5.09375], "texture": "#1"} - } - }, - { - "from": [6.81028, 4.59732, 5.20517], - "to": [9.18628, 9.34932, 10.92917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.25, 3.5, 2.54688, 4.09375], "texture": "#1"}, - "east": {"uv": [0, 0, 0.71875, 0.59375], "texture": "#1"}, - "south": {"uv": [2.625, 3.5, 2.92188, 4.09375], "texture": "#1"}, - "west": {"uv": [0, 0.625, 0.71875, 1.21875], "texture": "#1"}, - "up": {"uv": [0.42188, 3.34375, 0.125, 2.625], "texture": "#1"}, - "down": {"uv": [0.79688, 2.875, 0.5, 3.59375], "texture": "#1"} - } - }, - { - "from": [5.70937, 8.57368, 5.20517], - "to": [7.43737, 9.54568, 10.92917], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.875, 3.75, 1.09375, 3.875], "texture": "#1"}, - "east": {"uv": [3.5, 2.375, 4.21875, 2.5], "texture": "#1"}, - "south": {"uv": [6.375, 0.75, 6.59375, 0.875], "texture": "#1"}, - "west": {"uv": [4.75, 3.875, 5.46875, 4], "texture": "#1"}, - "up": {"uv": [1.96875, 4.34375, 1.75, 3.625], "texture": "#1"}, - "down": {"uv": [2.21875, 3.625, 2, 4.34375], "texture": "#1"} - } - }, - { - "from": [5.51428, 5.78532, 5.20517], - "to": [6.81028, 8.16132, 10.92917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.625, 2.75, 5.78125, 3.04688], "texture": "#1"}, - "east": {"uv": [2.75, 2.125, 3.46875, 2.42188], "texture": "#1"}, - "south": {"uv": [3.625, 5.625, 3.78125, 5.92188], "texture": "#1"}, - "west": {"uv": [2.875, 0, 3.59375, 0.29688], "texture": "#1"}, - "up": {"uv": [4.65625, 3.96875, 4.5, 3.25], "texture": "#1"}, - "down": {"uv": [4.53125, 4.5, 4.375, 5.21875], "texture": "#1"} - } - }, - { - "from": [4.08937, 6.08968, 5.20517], - "to": [4.95337, 7.81768, 10.92917], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.25, 6.625, 1.35938, 6.84375], "texture": "#1"}, - "east": {"uv": [3.75, 3.5, 4.46875, 3.71875], "texture": "#1"}, - "south": {"uv": [1.375, 6.625, 1.48438, 6.84375], "texture": "#1"}, - "west": {"uv": [3.75, 3.75, 4.46875, 3.96875], "texture": "#1"}, - "up": {"uv": [1.98438, 5.96875, 1.875, 5.25], "texture": "#1"}, - "down": {"uv": [2.85938, 5.25, 2.75, 5.96875], "texture": "#1"} - } - }, - { - "from": [5.14555, 5.72205, 4.98917], - "to": [5.41555, 8.36805, 5.96117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.25, 2.25, 7.28125, 2.57813], "texture": "#1"}, - "east": {"uv": [5.875, 4, 6, 4.32813], "texture": "#1"}, - "south": {"uv": [7.25, 2.625, 7.28125, 2.95313], "texture": "#1"}, - "west": {"uv": [4.375, 5.875, 4.5, 6.20313], "texture": "#1"}, - "up": {"uv": [1.15625, 7.875, 1.125, 7.75], "texture": "#1"}, - "down": {"uv": [1.90625, 7.75, 1.875, 7.875], "texture": "#1"} - } - }, - { - "from": [5.08228, 6.54132, 4.66517], - "to": [5.35228, 7.56732, 6.50117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2, 7.75, 2.03125, 7.875], "texture": "#1"}, - "east": {"uv": [2.375, 2.125, 2.60938, 2.25], "texture": "#1"}, - "south": {"uv": [2.125, 7.75, 2.15625, 7.875], "texture": "#1"}, - "west": {"uv": [2.875, 0.375, 3.10938, 0.5], "texture": "#1"}, - "up": {"uv": [7.53125, 1.73438, 7.5, 1.5], "texture": "#1"}, - "down": {"uv": [1.65625, 7.5, 1.625, 7.73438], "texture": "#1"} - } - }, - { - "from": [5.98854, 6.96381, 4.98917], - "to": [6.25854, 8.96181, 5.96117], - "rotation": {"angle": -45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.75, 7.5, 0.78125, 7.75], "texture": "#1"}, - "east": {"uv": [3.5, 2.125, 3.625, 2.375], "texture": "#1"}, - "south": {"uv": [7.5, 0.75, 7.53125, 1], "texture": "#1"}, - "west": {"uv": [0, 4.5, 0.125, 4.75], "texture": "#1"}, - "up": {"uv": [2.28125, 7.875, 2.25, 7.75], "texture": "#1"}, - "down": {"uv": [2.40625, 7.75, 2.375, 7.875], "texture": "#1"} - } - }, - { - "from": [6.32359, 7.53114, 4.66517], - "to": [11.50759, 8.61114, 4.88117], - "rotation": {"angle": -45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.875, 3, 5.51563, 3.14063], "texture": "#1"}, - "east": {"uv": [4, 7.625, 4.03125, 7.76563], "texture": "#1"}, - "south": {"uv": [2.25, 5, 2.89063, 5.14063], "texture": "#1"}, - "west": {"uv": [4.125, 7.625, 4.15625, 7.76563], "texture": "#1"}, - "up": {"uv": [7.39063, 5.65625, 6.75, 5.625], "texture": "#1"}, - "down": {"uv": [7.39063, 5.75, 6.75, 5.78125], "texture": "#1"} - } - }, - { - "from": [4.1341, 6.45841, 11.03717], - "to": [9.3181, 7.43041, 11.25317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.125, 1.75, 5.76563, 1.875], "texture": "#1"}, - "east": {"uv": [2.5, 7.75, 2.53125, 7.875], "texture": "#1"}, - "south": {"uv": [5.125, 4, 5.76563, 4.125], "texture": "#1"}, - "west": {"uv": [7.75, 2.5, 7.78125, 2.625], "texture": "#1"}, - "up": {"uv": [7.39063, 5.90625, 6.75, 5.875], "texture": "#1"}, - "down": {"uv": [7.39063, 6, 6.75, 6.03125], "texture": "#1"} - } - }, - { - "from": [6.0781, 6.35041, 10.06517], - "to": [7.2661, 7.53841, 11.68517], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.5, 5.625, 6.65625, 5.78125], "texture": "#1"}, - "east": {"uv": [6, 3.25, 6.20313, 3.40625], "texture": "#1"}, - "south": {"uv": [6.5, 5.875, 6.65625, 6.03125], "texture": "#1"}, - "west": {"uv": [6, 4, 6.20313, 4.15625], "texture": "#1"}, - "up": {"uv": [4.78125, 6.20313, 4.625, 6], "texture": "#1"}, - "down": {"uv": [6.15625, 5.375, 6, 5.57813], "texture": "#1"} - } - }, - { - "from": [7.69665, 6.65859, 11.14517], - "to": [8.45265, 7.41459, 11.79317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.125, 0.5, 5.21875, 0.59375], "texture": "#1"}, - "east": {"uv": [7.5, 0, 7.57813, 0.09375], "texture": "#1"}, - "south": {"uv": [5.25, 1.125, 5.34375, 1.21875], "texture": "#1"}, - "west": {"uv": [1.75, 7.5, 1.82813, 7.59375], "texture": "#1"}, - "up": {"uv": [2.09375, 7.57813, 2, 7.5], "texture": "#1"}, - "down": {"uv": [2.21875, 7.5, 2.125, 7.57813], "texture": "#1"} - } - }, - { - "from": [5.40628, 6.97332, 4.98917], - "to": [10.37428, 8.16132, 5.20517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.75, 1.875, 5.375, 2.03125], "texture": "#1"}, - "east": {"uv": [7.625, 2.875, 7.65625, 3.03125], "texture": "#1"}, - "south": {"uv": [4.75, 2.125, 5.375, 2.28125], "texture": "#1"}, - "west": {"uv": [3.125, 7.625, 3.15625, 7.78125], "texture": "#1"}, - "up": {"uv": [7.125, 6.78125, 6.5, 6.75], "texture": "#1"}, - "down": {"uv": [7.375, 6.5, 6.75, 6.53125], "texture": "#1"} - } - }, - { - "from": [5.51428, 5.78532, 4.98917], - "to": [10.37428, 6.64932, 5.20517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.75, 2.5, 3.35938, 2.60938], "texture": "#1"}, - "east": {"uv": [5.125, 7.75, 5.15625, 7.85938], "texture": "#1"}, - "south": {"uv": [4.125, 1.5, 4.73438, 1.60938], "texture": "#1"}, - "west": {"uv": [5.25, 7.75, 5.28125, 7.85938], "texture": "#1"}, - "up": {"uv": [7.48438, 0.78125, 6.875, 0.75], "texture": "#1"}, - "down": {"uv": [1.85938, 6.875, 1.25, 6.90625], "texture": "#1"} - } - }, - { - "from": [7.73428, 9.29932, -2.60483], - "to": [8.26228, 9.34932, -1.35483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 4.75, 8.3125, 4.76563], "texture": "#1"}, - "east": {"uv": [8.125, 1.75, 8.28125, 1.76563], "texture": "#1"}, - "south": {"uv": [4.875, 8.25, 4.9375, 8.26563], "texture": "#1"}, - "west": {"uv": [1.875, 8.125, 2.03125, 8.14063], "texture": "#1"}, - "up": {"uv": [3.5625, 7.40625, 3.5, 7.25], "texture": "#1"}, - "down": {"uv": [4.0625, 7.25, 4, 7.40625], "texture": "#1"} - } - }, - { - "from": [7.53878, 8.77044, -2.60483], - "to": [8.06678, 8.82044, -1.35483], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 4.875, 8.3125, 4.89063], "texture": "#1"}, - "east": {"uv": [8.125, 1.875, 8.28125, 1.89063], "texture": "#1"}, - "south": {"uv": [5, 8.25, 5.0625, 8.26563], "texture": "#1"}, - "west": {"uv": [8.125, 2, 8.28125, 2.01563], "texture": "#1"}, - "up": {"uv": [5.5625, 7.40625, 5.5, 7.25], "texture": "#1"}, - "down": {"uv": [5.6875, 7.25, 5.625, 7.40625], "texture": "#1"} - } - }, - { - "from": [7.36093, 8.44797, -2.60483], - "to": [7.41093, 8.97597, -1.35483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5, 8.26563, 5.0625], "texture": "#1"}, - "east": {"uv": [7.25, 5.25, 7.40625, 5.3125], "texture": "#1"}, - "south": {"uv": [5.125, 8.25, 5.14063, 8.3125], "texture": "#1"}, - "west": {"uv": [5.75, 7.25, 5.90625, 7.3125], "texture": "#1"}, - "up": {"uv": [2.14063, 8.28125, 2.125, 8.125], "texture": "#1"}, - "down": {"uv": [8.14063, 2.125, 8.125, 2.28125], "texture": "#1"} - } - }, - { - "from": [7.16543, 7.91909, -2.60483], - "to": [7.21543, 8.44709, -1.35483], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5.125, 8.26563, 5.1875], "texture": "#1"}, - "east": {"uv": [6, 7.25, 6.15625, 7.3125], "texture": "#1"}, - "south": {"uv": [5.25, 8.25, 5.26563, 8.3125], "texture": "#1"}, - "west": {"uv": [7.25, 6.25, 7.40625, 6.3125], "texture": "#1"}, - "up": {"uv": [2.26563, 8.28125, 2.25, 8.125], "texture": "#1"}, - "down": {"uv": [2.39063, 8.125, 2.375, 8.28125], "texture": "#1"} - } - }, - { - "from": [7.73428, 8.07461, -2.60483], - "to": [8.26228, 8.12461, -1.35483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5.25, 8.3125, 5.26563], "texture": "#1"}, - "east": {"uv": [8.125, 2.375, 8.28125, 2.39063], "texture": "#1"}, - "south": {"uv": [5.375, 8.25, 5.4375, 8.26563], "texture": "#1"}, - "west": {"uv": [2.5, 8.125, 2.65625, 8.14063], "texture": "#1"}, - "up": {"uv": [6.3125, 7.40625, 6.25, 7.25], "texture": "#1"}, - "down": {"uv": [7.1875, 7.25, 7.125, 7.40625], "texture": "#1"} - } - }, - { - "from": [7.53878, 7.54573, -2.60483], - "to": [8.06678, 7.59573, -1.35483], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5.375, 8.3125, 5.39063], "texture": "#1"}, - "east": {"uv": [8.125, 2.5, 8.28125, 2.51563], "texture": "#1"}, - "south": {"uv": [5.5, 8.25, 5.5625, 8.26563], "texture": "#1"}, - "west": {"uv": [8.125, 2.625, 8.28125, 2.64063], "texture": "#1"}, - "up": {"uv": [7.3125, 7.40625, 7.25, 7.25], "texture": "#1"}, - "down": {"uv": [0.0625, 7.375, 0, 7.53125], "texture": "#1"} - } - }, - { - "from": [8.58563, 8.44797, -2.60483], - "to": [8.63563, 8.97597, -1.35483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5.5, 8.26563, 5.5625], "texture": "#1"}, - "east": {"uv": [7.25, 6.375, 7.40625, 6.4375], "texture": "#1"}, - "south": {"uv": [5.625, 8.25, 5.64063, 8.3125], "texture": "#1"}, - "west": {"uv": [7.25, 6.625, 7.40625, 6.6875], "texture": "#1"}, - "up": {"uv": [2.76563, 8.28125, 2.75, 8.125], "texture": "#1"}, - "down": {"uv": [8.14063, 2.75, 8.125, 2.90625], "texture": "#1"} - } - }, - { - "from": [8.39013, 7.91909, -2.60483], - "to": [8.44013, 8.44709, -1.35483], - "rotation": {"angle": 45, "axis": "z", "origin": [7.26212, 8.68352, 6.73536]}, - "faces": { - "north": {"uv": [8.25, 5.625, 8.26563, 5.6875], "texture": "#1"}, - "east": {"uv": [7.25, 6.875, 7.40625, 6.9375], "texture": "#1"}, - "south": {"uv": [5.75, 8.25, 5.76563, 8.3125], "texture": "#1"}, - "west": {"uv": [0.125, 7.375, 0.28125, 7.4375], "texture": "#1"}, - "up": {"uv": [2.89063, 8.28125, 2.875, 8.125], "texture": "#1"}, - "down": {"uv": [3.01563, 8.125, 3, 8.28125], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.13749, 7.73237], - "to": [10.57728, 10.44689, 7.96997], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 3.875, 7.76563, 3.90625], "texture": "#1"}, - "east": {"uv": [8.25, 5.75, 8.28125, 5.78125], "texture": "#1"}, - "south": {"uv": [4.25, 7.625, 4.39063, 7.65625], "texture": "#1"}, - "west": {"uv": [5.875, 8.25, 5.90625, 8.28125], "texture": "#1"}, - "up": {"uv": [7.76563, 4.28125, 7.625, 4.25], "texture": "#1"}, - "down": {"uv": [7.76563, 4.375, 7.625, 4.40625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.67079, 6.28824], - "to": [10.57728, 10.98019, 6.52584], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.5, 7.625, 4.64063, 7.65625], "texture": "#1"}, - "east": {"uv": [8.25, 5.875, 8.28125, 5.90625], "texture": "#1"}, - "south": {"uv": [7.625, 4.5, 7.76563, 4.53125], "texture": "#1"}, - "west": {"uv": [6, 8.25, 6.03125, 8.28125], "texture": "#1"}, - "up": {"uv": [7.76563, 4.65625, 7.625, 4.625], "texture": "#1"}, - "down": {"uv": [4.89063, 7.625, 4.75, 7.65625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.04128, 7.82858], - "to": [10.57728, 10.27888, 8.13798], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 4.75, 7.76563, 4.78125], "texture": "#1"}, - "east": {"uv": [6.125, 8.25, 6.15625, 8.28125], "texture": "#1"}, - "south": {"uv": [7.625, 4.875, 7.76563, 4.90625], "texture": "#1"}, - "west": {"uv": [8.25, 6.125, 8.28125, 6.15625], "texture": "#1"}, - "up": {"uv": [7.76563, 5.03125, 7.625, 5], "texture": "#1"}, - "down": {"uv": [5.39063, 7.625, 5.25, 7.65625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.57458, 6.38445], - "to": [10.57728, 10.81218, 6.69385], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 5.375, 7.76563, 5.40625], "texture": "#1"}, - "east": {"uv": [6.25, 8.25, 6.28125, 8.28125], "texture": "#1"}, - "south": {"uv": [5.5, 7.625, 5.64063, 7.65625], "texture": "#1"}, - "west": {"uv": [8.25, 6.25, 8.28125, 6.28125], "texture": "#1"}, - "up": {"uv": [7.76563, 5.53125, 7.625, 5.5], "texture": "#1"}, - "down": {"uv": [5.89063, 7.625, 5.75, 7.65625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.57458, 6.12023], - "to": [10.57728, 10.81218, 6.42963], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6, 7.625, 6.14063, 7.65625], "texture": "#1"}, - "east": {"uv": [6.375, 8.25, 6.40625, 8.28125], "texture": "#1"}, - "south": {"uv": [7.625, 6.125, 7.76563, 6.15625], "texture": "#1"}, - "west": {"uv": [8.25, 6.375, 8.28125, 6.40625], "texture": "#1"}, - "up": {"uv": [7.76563, 6.65625, 7.625, 6.625], "texture": "#1"}, - "down": {"uv": [6.89063, 7.625, 6.75, 7.65625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.04128, 7.56436], - "to": [10.57728, 10.27888, 7.87376], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 6.875, 7.76563, 6.90625], "texture": "#1"}, - "east": {"uv": [6.5, 8.25, 6.53125, 8.28125], "texture": "#1"}, - "south": {"uv": [7, 7.625, 7.14063, 7.65625], "texture": "#1"}, - "west": {"uv": [8.25, 6.5, 8.28125, 6.53125], "texture": "#1"}, - "up": {"uv": [7.76563, 7.03125, 7.625, 7], "texture": "#1"}, - "down": {"uv": [7.76563, 7.125, 7.625, 7.15625], "texture": "#1"} - } - }, - { - "from": [9.48328, 10.40658, 6.28824], - "to": [10.57728, 10.71598, 6.52584], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.25, 7.625, 7.39063, 7.65625], "texture": "#1"}, - "east": {"uv": [6.625, 8.25, 6.65625, 8.28125], "texture": "#1"}, - "south": {"uv": [7.625, 7.25, 7.76563, 7.28125], "texture": "#1"}, - "west": {"uv": [8.25, 6.625, 8.28125, 6.65625], "texture": "#1"}, - "up": {"uv": [7.76563, 7.40625, 7.625, 7.375], "texture": "#1"}, - "down": {"uv": [7.64063, 7.625, 7.5, 7.65625], "texture": "#1"} - } - }, - { - "from": [9.48328, 9.87327, 7.73237], - "to": [10.57728, 10.18267, 7.96997], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 7.5, 7.76563, 7.53125], "texture": "#1"}, - "east": {"uv": [6.75, 8.25, 6.78125, 8.28125], "texture": "#1"}, - "south": {"uv": [0.125, 7.75, 0.26563, 7.78125], "texture": "#1"}, - "west": {"uv": [8.25, 6.75, 8.28125, 6.78125], "texture": "#1"}, - "up": {"uv": [7.89063, 0.28125, 7.75, 0.25], "texture": "#1"}, - "down": {"uv": [0.51563, 7.75, 0.375, 7.78125], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 17.52717], - "to": [8.45918, 11.23876, 17.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 17.63017]}, - "faces": { - "north": {"uv": [5.75, 8.5, 5.76563, 8.53125], "texture": "#1"}, - "east": {"uv": [6.875, 8.25, 6.90625, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 5.75, 8.51563, 5.78125], "texture": "#1"}, - "west": {"uv": [8.25, 6.875, 8.28125, 6.90625], "texture": "#1"}, - "up": {"uv": [5.89063, 8.53125, 5.875, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 5.875, 8.5, 5.90625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 17.52717], - "to": [8.39628, 11.26482, 17.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 6.48536]}, - "faces": { - "north": {"uv": [3.875, 7.875, 3.96875, 7.90625], "texture": "#1"}, - "east": {"uv": [7, 8.25, 7.03125, 8.28125], "texture": "#1"}, - "south": {"uv": [7.875, 3.875, 7.96875, 3.90625], "texture": "#1"}, - "west": {"uv": [8.25, 7, 8.28125, 7.03125], "texture": "#1"}, - "up": {"uv": [4.09375, 7.90625, 4, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 4, 7.875, 4.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 17.52717], - "to": [7.80524, 11.02, 17.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 17.60517]}, - "faces": { - "north": {"uv": [6, 8.5, 6.01563, 8.53125], "texture": "#1"}, - "east": {"uv": [7.125, 8.25, 7.15625, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 6, 8.51563, 6.03125], "texture": "#1"}, - "west": {"uv": [8.25, 7.125, 8.28125, 7.15625], "texture": "#1"}, - "up": {"uv": [6.14063, 8.53125, 6.125, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 6.125, 8.5, 6.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 17.12717], - "to": [8.45918, 11.23876, 17.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 17.23017]}, - "faces": { - "north": {"uv": [6.25, 8.5, 6.26563, 8.53125], "texture": "#1"}, - "east": {"uv": [7.25, 8.25, 7.28125, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 6.25, 8.51563, 6.28125], "texture": "#1"}, - "west": {"uv": [8.25, 7.25, 8.28125, 7.28125], "texture": "#1"}, - "up": {"uv": [6.39063, 8.53125, 6.375, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 6.375, 8.5, 6.40625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 17.12717], - "to": [8.39628, 11.26482, 17.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 6.08536]}, - "faces": { - "north": {"uv": [4.125, 7.875, 4.21875, 7.90625], "texture": "#1"}, - "east": {"uv": [7.375, 8.25, 7.40625, 8.28125], "texture": "#1"}, - "south": {"uv": [7.875, 4.125, 7.96875, 4.15625], "texture": "#1"}, - "west": {"uv": [8.25, 7.375, 8.28125, 7.40625], "texture": "#1"}, - "up": {"uv": [4.34375, 7.90625, 4.25, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 4.25, 7.875, 4.28125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 17.12717], - "to": [7.80524, 11.02, 17.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 17.20517]}, - "faces": { - "north": {"uv": [6.5, 8.5, 6.51563, 8.53125], "texture": "#1"}, - "east": {"uv": [7.5, 8.25, 7.53125, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 6.5, 8.51563, 6.53125], "texture": "#1"}, - "west": {"uv": [8.25, 7.5, 8.28125, 7.53125], "texture": "#1"}, - "up": {"uv": [6.64063, 8.53125, 6.625, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 6.625, 8.5, 6.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 16.32717], - "to": [7.80524, 11.02, 16.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 16.40517]}, - "faces": { - "north": {"uv": [6.75, 8.5, 6.76563, 8.53125], "texture": "#1"}, - "east": {"uv": [7.625, 8.25, 7.65625, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 6.75, 8.51563, 6.78125], "texture": "#1"}, - "west": {"uv": [8.25, 7.625, 8.28125, 7.65625], "texture": "#1"}, - "up": {"uv": [6.89063, 8.53125, 6.875, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 6.875, 8.5, 6.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 16.72717], - "to": [8.45918, 11.23876, 16.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 16.83017]}, - "faces": { - "north": {"uv": [7, 8.5, 7.01563, 8.53125], "texture": "#1"}, - "east": {"uv": [7.75, 8.25, 7.78125, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 7, 8.51563, 7.03125], "texture": "#1"}, - "west": {"uv": [8.25, 7.75, 8.28125, 7.78125], "texture": "#1"}, - "up": {"uv": [7.14063, 8.53125, 7.125, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 7.125, 8.5, 7.15625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 16.72717], - "to": [8.39628, 11.26482, 16.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 5.68536]}, - "faces": { - "north": {"uv": [4.375, 7.875, 4.46875, 7.90625], "texture": "#1"}, - "east": {"uv": [7.875, 8.25, 7.90625, 8.28125], "texture": "#1"}, - "south": {"uv": [7.875, 4.375, 7.96875, 4.40625], "texture": "#1"}, - "west": {"uv": [8.25, 7.875, 8.28125, 7.90625], "texture": "#1"}, - "up": {"uv": [4.59375, 7.90625, 4.5, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 4.5, 7.875, 4.53125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 16.72717], - "to": [7.80524, 11.02, 16.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 16.80517]}, - "faces": { - "north": {"uv": [7.25, 8.5, 7.26563, 8.53125], "texture": "#1"}, - "east": {"uv": [8, 8.25, 8.03125, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 7.25, 8.51563, 7.28125], "texture": "#1"}, - "west": {"uv": [8.25, 8, 8.28125, 8.03125], "texture": "#1"}, - "up": {"uv": [7.39063, 8.53125, 7.375, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 7.375, 8.5, 7.40625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 16.32717], - "to": [8.45918, 11.23876, 16.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 16.43017]}, - "faces": { - "north": {"uv": [7.5, 8.5, 7.51563, 8.53125], "texture": "#1"}, - "east": {"uv": [8.125, 8.25, 8.15625, 8.28125], "texture": "#1"}, - "south": {"uv": [8.5, 7.5, 8.51563, 7.53125], "texture": "#1"}, - "west": {"uv": [8.25, 8.125, 8.28125, 8.15625], "texture": "#1"}, - "up": {"uv": [7.64063, 8.53125, 7.625, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 7.625, 8.5, 7.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 16.32717], - "to": [8.39628, 11.26482, 16.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 5.28536]}, - "faces": { - "north": {"uv": [4.625, 7.875, 4.71875, 7.90625], "texture": "#1"}, - "east": {"uv": [8.25, 8.25, 8.28125, 8.28125], "texture": "#1"}, - "south": {"uv": [7.875, 4.625, 7.96875, 4.65625], "texture": "#1"}, - "west": {"uv": [0, 8.375, 0.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [4.84375, 7.90625, 4.75, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 4.75, 7.875, 4.78125], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 15.92717], - "to": [8.45918, 11.23876, 16.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 16.03017]}, - "faces": { - "north": {"uv": [7.75, 8.5, 7.76563, 8.53125], "texture": "#1"}, - "east": {"uv": [8.375, 0, 8.40625, 0.03125], "texture": "#1"}, - "south": {"uv": [8.5, 7.75, 8.51563, 7.78125], "texture": "#1"}, - "west": {"uv": [0.125, 8.375, 0.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [7.89063, 8.53125, 7.875, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 7.875, 8.5, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 15.92717], - "to": [8.39628, 11.26482, 16.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 4.88536]}, - "faces": { - "north": {"uv": [4.875, 7.875, 4.96875, 7.90625], "texture": "#1"}, - "east": {"uv": [8.375, 0.125, 8.40625, 0.15625], "texture": "#1"}, - "south": {"uv": [7.875, 4.875, 7.96875, 4.90625], "texture": "#1"}, - "west": {"uv": [0.25, 8.375, 0.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [5.09375, 7.90625, 5, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 5, 7.875, 5.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 15.92717], - "to": [7.80524, 11.02, 16.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 16.00517]}, - "faces": { - "north": {"uv": [8, 8.5, 8.01563, 8.53125], "texture": "#1"}, - "east": {"uv": [8.375, 0.25, 8.40625, 0.28125], "texture": "#1"}, - "south": {"uv": [8.5, 8, 8.51563, 8.03125], "texture": "#1"}, - "west": {"uv": [0.375, 8.375, 0.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.14063, 8.53125, 8.125, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 8.125, 8.5, 8.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 15.52717], - "to": [8.45918, 11.23876, 15.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 15.63017]}, - "faces": { - "north": {"uv": [8.25, 8.5, 8.26563, 8.53125], "texture": "#1"}, - "east": {"uv": [8.375, 0.375, 8.40625, 0.40625], "texture": "#1"}, - "south": {"uv": [8.5, 8.25, 8.51563, 8.28125], "texture": "#1"}, - "west": {"uv": [0.5, 8.375, 0.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.39063, 8.53125, 8.375, 8.5], "texture": "#1"}, - "down": {"uv": [8.51563, 8.375, 8.5, 8.40625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 15.52717], - "to": [8.39628, 11.26482, 15.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 4.48536]}, - "faces": { - "north": {"uv": [5.125, 7.875, 5.21875, 7.90625], "texture": "#1"}, - "east": {"uv": [8.375, 0.5, 8.40625, 0.53125], "texture": "#1"}, - "south": {"uv": [5.25, 7.875, 5.34375, 7.90625], "texture": "#1"}, - "west": {"uv": [0.625, 8.375, 0.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [5.46875, 7.90625, 5.375, 7.875], "texture": "#1"}, - "down": {"uv": [7.96875, 5.375, 7.875, 5.40625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 15.52717], - "to": [7.80524, 11.02, 15.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 15.60517]}, - "faces": { - "north": {"uv": [8.5, 8.5, 8.51563, 8.53125], "texture": "#1"}, - "east": {"uv": [8.375, 0.625, 8.40625, 0.65625], "texture": "#1"}, - "south": {"uv": [0, 8.625, 0.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [0.75, 8.375, 0.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 0.03125, 8.625, 0], "texture": "#1"}, - "down": {"uv": [0.14063, 8.625, 0.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 14.72717], - "to": [7.80524, 11.02, 14.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 14.80517]}, - "faces": { - "north": {"uv": [8.625, 0.125, 8.64063, 0.15625], "texture": "#1"}, - "east": {"uv": [8.375, 0.75, 8.40625, 0.78125], "texture": "#1"}, - "south": {"uv": [0.25, 8.625, 0.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [0.875, 8.375, 0.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 0.28125, 8.625, 0.25], "texture": "#1"}, - "down": {"uv": [0.39063, 8.625, 0.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 15.12717], - "to": [8.45918, 11.23876, 15.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 15.23017]}, - "faces": { - "north": {"uv": [8.625, 0.375, 8.64063, 0.40625], "texture": "#1"}, - "east": {"uv": [8.375, 0.875, 8.40625, 0.90625], "texture": "#1"}, - "south": {"uv": [0.5, 8.625, 0.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [1, 8.375, 1.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 0.53125, 8.625, 0.5], "texture": "#1"}, - "down": {"uv": [0.64063, 8.625, 0.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 15.12717], - "to": [8.39628, 11.26482, 15.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 4.08536]}, - "faces": { - "north": {"uv": [5.5, 7.875, 5.59375, 7.90625], "texture": "#1"}, - "east": {"uv": [8.375, 1, 8.40625, 1.03125], "texture": "#1"}, - "south": {"uv": [7.875, 5.5, 7.96875, 5.53125], "texture": "#1"}, - "west": {"uv": [1.125, 8.375, 1.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [5.71875, 7.90625, 5.625, 7.875], "texture": "#1"}, - "down": {"uv": [5.84375, 7.875, 5.75, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 15.12717], - "to": [7.80524, 11.02, 15.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 15.20517]}, - "faces": { - "north": {"uv": [8.625, 0.625, 8.64063, 0.65625], "texture": "#1"}, - "east": {"uv": [8.375, 1.125, 8.40625, 1.15625], "texture": "#1"}, - "south": {"uv": [0.75, 8.625, 0.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [1.25, 8.375, 1.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 0.78125, 8.625, 0.75], "texture": "#1"}, - "down": {"uv": [0.89063, 8.625, 0.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 14.72717], - "to": [8.45918, 11.23876, 14.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 14.83017]}, - "faces": { - "north": {"uv": [8.625, 0.875, 8.64063, 0.90625], "texture": "#1"}, - "east": {"uv": [8.375, 1.25, 8.40625, 1.28125], "texture": "#1"}, - "south": {"uv": [1, 8.625, 1.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [1.375, 8.375, 1.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 1.03125, 8.625, 1], "texture": "#1"}, - "down": {"uv": [1.14063, 8.625, 1.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 14.72717], - "to": [8.39628, 11.26482, 14.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 3.68536]}, - "faces": { - "north": {"uv": [7.875, 5.75, 7.96875, 5.78125], "texture": "#1"}, - "east": {"uv": [8.375, 1.375, 8.40625, 1.40625], "texture": "#1"}, - "south": {"uv": [5.875, 7.875, 5.96875, 7.90625], "texture": "#1"}, - "west": {"uv": [1.5, 8.375, 1.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [6.09375, 7.90625, 6, 7.875], "texture": "#1"}, - "down": {"uv": [6.21875, 7.875, 6.125, 7.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 14.32717], - "to": [8.45918, 11.23876, 14.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 14.43017]}, - "faces": { - "north": {"uv": [8.625, 1.125, 8.64063, 1.15625], "texture": "#1"}, - "east": {"uv": [8.375, 1.5, 8.40625, 1.53125], "texture": "#1"}, - "south": {"uv": [1.25, 8.625, 1.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [1.625, 8.375, 1.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 1.28125, 8.625, 1.25], "texture": "#1"}, - "down": {"uv": [1.39063, 8.625, 1.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 14.32717], - "to": [8.39628, 11.26482, 14.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 3.28536]}, - "faces": { - "north": {"uv": [7.875, 6.125, 7.96875, 6.15625], "texture": "#1"}, - "east": {"uv": [8.375, 1.625, 8.40625, 1.65625], "texture": "#1"}, - "south": {"uv": [7.875, 6.625, 7.96875, 6.65625], "texture": "#1"}, - "west": {"uv": [1.75, 8.375, 1.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [6.84375, 7.90625, 6.75, 7.875], "texture": "#1"}, - "down": {"uv": [6.96875, 7.875, 6.875, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 14.32717], - "to": [7.80524, 11.02, 14.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 14.40517]}, - "faces": { - "north": {"uv": [8.625, 1.375, 8.64063, 1.40625], "texture": "#1"}, - "east": {"uv": [8.375, 1.75, 8.40625, 1.78125], "texture": "#1"}, - "south": {"uv": [1.5, 8.625, 1.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [1.875, 8.375, 1.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 1.53125, 8.625, 1.5], "texture": "#1"}, - "down": {"uv": [1.64063, 8.625, 1.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 13.92717], - "to": [8.45918, 11.23876, 14.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 14.03017]}, - "faces": { - "north": {"uv": [8.625, 1.625, 8.64063, 1.65625], "texture": "#1"}, - "east": {"uv": [8.375, 1.875, 8.40625, 1.90625], "texture": "#1"}, - "south": {"uv": [1.75, 8.625, 1.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [2, 8.375, 2.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 1.78125, 8.625, 1.75], "texture": "#1"}, - "down": {"uv": [1.89063, 8.625, 1.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 13.92717], - "to": [8.39628, 11.26482, 14.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 2.88536]}, - "faces": { - "north": {"uv": [7.875, 6.875, 7.96875, 6.90625], "texture": "#1"}, - "east": {"uv": [8.375, 2, 8.40625, 2.03125], "texture": "#1"}, - "south": {"uv": [7, 7.875, 7.09375, 7.90625], "texture": "#1"}, - "west": {"uv": [2.125, 8.375, 2.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [7.96875, 7.03125, 7.875, 7], "texture": "#1"}, - "down": {"uv": [7.21875, 7.875, 7.125, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 13.92717], - "to": [7.80524, 11.02, 14.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 14.00517]}, - "faces": { - "north": {"uv": [8.625, 1.875, 8.64063, 1.90625], "texture": "#1"}, - "east": {"uv": [8.375, 2.125, 8.40625, 2.15625], "texture": "#1"}, - "south": {"uv": [2, 8.625, 2.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [2.25, 8.375, 2.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 2.03125, 8.625, 2], "texture": "#1"}, - "down": {"uv": [2.14063, 8.625, 2.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 13.12717], - "to": [7.80524, 11.02, 13.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 13.20517]}, - "faces": { - "north": {"uv": [8.625, 2.125, 8.64063, 2.15625], "texture": "#1"}, - "east": {"uv": [8.375, 2.25, 8.40625, 2.28125], "texture": "#1"}, - "south": {"uv": [2.25, 8.625, 2.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [2.375, 8.375, 2.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 2.28125, 8.625, 2.25], "texture": "#1"}, - "down": {"uv": [2.39063, 8.625, 2.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 13.52717], - "to": [8.45918, 11.23876, 13.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 13.63017]}, - "faces": { - "north": {"uv": [8.625, 2.375, 8.64063, 2.40625], "texture": "#1"}, - "east": {"uv": [8.375, 2.375, 8.40625, 2.40625], "texture": "#1"}, - "south": {"uv": [2.5, 8.625, 2.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [2.5, 8.375, 2.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 2.53125, 8.625, 2.5], "texture": "#1"}, - "down": {"uv": [2.64063, 8.625, 2.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 13.52717], - "to": [8.39628, 11.26482, 13.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 2.48536]}, - "faces": { - "north": {"uv": [7.875, 7.125, 7.96875, 7.15625], "texture": "#1"}, - "east": {"uv": [8.375, 2.5, 8.40625, 2.53125], "texture": "#1"}, - "south": {"uv": [7.25, 7.875, 7.34375, 7.90625], "texture": "#1"}, - "west": {"uv": [2.625, 8.375, 2.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [7.96875, 7.28125, 7.875, 7.25], "texture": "#1"}, - "down": {"uv": [7.46875, 7.875, 7.375, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 13.52717], - "to": [7.80524, 11.02, 13.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 13.60517]}, - "faces": { - "north": {"uv": [8.625, 2.625, 8.64063, 2.65625], "texture": "#1"}, - "east": {"uv": [8.375, 2.625, 8.40625, 2.65625], "texture": "#1"}, - "south": {"uv": [2.75, 8.625, 2.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [2.75, 8.375, 2.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 2.78125, 8.625, 2.75], "texture": "#1"}, - "down": {"uv": [2.89063, 8.625, 2.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 13.12717], - "to": [8.45918, 11.23876, 13.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 13.23017]}, - "faces": { - "north": {"uv": [8.625, 2.875, 8.64063, 2.90625], "texture": "#1"}, - "east": {"uv": [8.375, 2.75, 8.40625, 2.78125], "texture": "#1"}, - "south": {"uv": [3, 8.625, 3.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [2.875, 8.375, 2.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 3.03125, 8.625, 3], "texture": "#1"}, - "down": {"uv": [3.14063, 8.625, 3.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 13.12717], - "to": [8.39628, 11.26482, 13.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 2.08536]}, - "faces": { - "north": {"uv": [7.875, 7.375, 7.96875, 7.40625], "texture": "#1"}, - "east": {"uv": [8.375, 2.875, 8.40625, 2.90625], "texture": "#1"}, - "south": {"uv": [7.5, 7.875, 7.59375, 7.90625], "texture": "#1"}, - "west": {"uv": [3, 8.375, 3.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [7.96875, 7.53125, 7.875, 7.5], "texture": "#1"}, - "down": {"uv": [7.71875, 7.875, 7.625, 7.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 12.72717], - "to": [8.45918, 11.23876, 12.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 12.83017]}, - "faces": { - "north": {"uv": [8.625, 3.125, 8.64063, 3.15625], "texture": "#1"}, - "east": {"uv": [8.375, 3, 8.40625, 3.03125], "texture": "#1"}, - "south": {"uv": [3.25, 8.625, 3.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [3.125, 8.375, 3.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 3.28125, 8.625, 3.25], "texture": "#1"}, - "down": {"uv": [3.39063, 8.625, 3.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 12.72717], - "to": [8.39628, 11.26482, 12.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 1.68536]}, - "faces": { - "north": {"uv": [7.75, 7.875, 7.84375, 7.90625], "texture": "#1"}, - "east": {"uv": [8.375, 3.125, 8.40625, 3.15625], "texture": "#1"}, - "south": {"uv": [7.875, 7.875, 7.96875, 7.90625], "texture": "#1"}, - "west": {"uv": [3.25, 8.375, 3.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [0.09375, 8.03125, 0, 8], "texture": "#1"}, - "down": {"uv": [0.21875, 8, 0.125, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 12.72717], - "to": [7.80524, 11.02, 12.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 12.80517]}, - "faces": { - "north": {"uv": [8.625, 3.375, 8.64063, 3.40625], "texture": "#1"}, - "east": {"uv": [8.375, 3.25, 8.40625, 3.28125], "texture": "#1"}, - "south": {"uv": [3.5, 8.625, 3.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [3.375, 8.375, 3.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 3.53125, 8.625, 3.5], "texture": "#1"}, - "down": {"uv": [3.64063, 8.625, 3.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 12.32717], - "to": [8.45918, 11.23876, 12.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 12.43017]}, - "faces": { - "north": {"uv": [8.625, 3.625, 8.64063, 3.65625], "texture": "#1"}, - "east": {"uv": [8.375, 3.375, 8.40625, 3.40625], "texture": "#1"}, - "south": {"uv": [3.75, 8.625, 3.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [3.5, 8.375, 3.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 3.78125, 8.625, 3.75], "texture": "#1"}, - "down": {"uv": [3.89063, 8.625, 3.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 12.32717], - "to": [8.39628, 11.26482, 12.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 1.28536]}, - "faces": { - "north": {"uv": [0.25, 8, 0.34375, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 3.5, 8.40625, 3.53125], "texture": "#1"}, - "south": {"uv": [8, 0.25, 8.09375, 0.28125], "texture": "#1"}, - "west": {"uv": [3.625, 8.375, 3.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [0.46875, 8.03125, 0.375, 8], "texture": "#1"}, - "down": {"uv": [0.59375, 8, 0.5, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 12.32717], - "to": [7.80524, 11.02, 12.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 12.40517]}, - "faces": { - "north": {"uv": [8.625, 3.875, 8.64063, 3.90625], "texture": "#1"}, - "east": {"uv": [8.375, 3.625, 8.40625, 3.65625], "texture": "#1"}, - "south": {"uv": [4, 8.625, 4.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [3.75, 8.375, 3.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 4.03125, 8.625, 4], "texture": "#1"}, - "down": {"uv": [4.14063, 8.625, 4.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 11.52717], - "to": [7.80524, 11.02, 11.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 11.60517]}, - "faces": { - "north": {"uv": [8.625, 4.125, 8.64063, 4.15625], "texture": "#1"}, - "east": {"uv": [8.375, 3.75, 8.40625, 3.78125], "texture": "#1"}, - "south": {"uv": [4.25, 8.625, 4.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [3.875, 8.375, 3.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 4.28125, 8.625, 4.25], "texture": "#1"}, - "down": {"uv": [4.39063, 8.625, 4.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 11.92717], - "to": [8.45918, 11.23876, 12.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 12.03017]}, - "faces": { - "north": {"uv": [8.625, 4.375, 8.64063, 4.40625], "texture": "#1"}, - "east": {"uv": [8.375, 3.875, 8.40625, 3.90625], "texture": "#1"}, - "south": {"uv": [4.5, 8.625, 4.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [4, 8.375, 4.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 4.53125, 8.625, 4.5], "texture": "#1"}, - "down": {"uv": [4.64063, 8.625, 4.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 11.92717], - "to": [8.39628, 11.26482, 12.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 0.88536]}, - "faces": { - "north": {"uv": [8, 0.5, 8.09375, 0.53125], "texture": "#1"}, - "east": {"uv": [8.375, 4, 8.40625, 4.03125], "texture": "#1"}, - "south": {"uv": [0.625, 8, 0.71875, 8.03125], "texture": "#1"}, - "west": {"uv": [4.125, 8.375, 4.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.09375, 0.65625, 8, 0.625], "texture": "#1"}, - "down": {"uv": [0.84375, 8, 0.75, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 11.92717], - "to": [7.80524, 11.02, 12.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 12.00517]}, - "faces": { - "north": {"uv": [8.625, 4.625, 8.64063, 4.65625], "texture": "#1"}, - "east": {"uv": [8.375, 4.125, 8.40625, 4.15625], "texture": "#1"}, - "south": {"uv": [4.75, 8.625, 4.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [4.25, 8.375, 4.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 4.78125, 8.625, 4.75], "texture": "#1"}, - "down": {"uv": [4.89063, 8.625, 4.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 11.52717], - "to": [8.45918, 11.23876, 11.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 11.63017]}, - "faces": { - "north": {"uv": [8.625, 4.875, 8.64063, 4.90625], "texture": "#1"}, - "east": {"uv": [8.375, 4.25, 8.40625, 4.28125], "texture": "#1"}, - "south": {"uv": [5, 8.625, 5.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [4.375, 8.375, 4.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 5.03125, 8.625, 5], "texture": "#1"}, - "down": {"uv": [5.14063, 8.625, 5.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 11.52717], - "to": [8.39628, 11.26482, 11.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 0.48536]}, - "faces": { - "north": {"uv": [8, 0.75, 8.09375, 0.78125], "texture": "#1"}, - "east": {"uv": [8.375, 4.375, 8.40625, 4.40625], "texture": "#1"}, - "south": {"uv": [0.875, 8, 0.96875, 8.03125], "texture": "#1"}, - "west": {"uv": [4.5, 8.375, 4.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.09375, 0.90625, 8, 0.875], "texture": "#1"}, - "down": {"uv": [1.09375, 8, 1, 8.03125], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 11.12717], - "to": [8.45918, 11.23876, 11.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 11.23017]}, - "faces": { - "north": {"uv": [8.625, 5.125, 8.64063, 5.15625], "texture": "#1"}, - "east": {"uv": [8.375, 4.5, 8.40625, 4.53125], "texture": "#1"}, - "south": {"uv": [5.25, 8.625, 5.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [4.625, 8.375, 4.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 5.28125, 8.625, 5.25], "texture": "#1"}, - "down": {"uv": [5.39063, 8.625, 5.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 11.12717], - "to": [8.39628, 11.26482, 11.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, 0.08536]}, - "faces": { - "north": {"uv": [8, 1, 8.09375, 1.03125], "texture": "#1"}, - "east": {"uv": [8.375, 4.625, 8.40625, 4.65625], "texture": "#1"}, - "south": {"uv": [1.125, 8, 1.21875, 8.03125], "texture": "#1"}, - "west": {"uv": [4.75, 8.375, 4.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.09375, 1.15625, 8, 1.125], "texture": "#1"}, - "down": {"uv": [1.34375, 8, 1.25, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 11.12717], - "to": [7.80524, 11.02, 11.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 11.20517]}, - "faces": { - "north": {"uv": [8.625, 5.375, 8.64063, 5.40625], "texture": "#1"}, - "east": {"uv": [8.375, 4.75, 8.40625, 4.78125], "texture": "#1"}, - "south": {"uv": [5.5, 8.625, 5.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [4.875, 8.375, 4.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 5.53125, 8.625, 5.5], "texture": "#1"}, - "down": {"uv": [5.64063, 8.625, 5.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 10.72717], - "to": [8.45918, 11.23876, 10.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 10.83017]}, - "faces": { - "north": {"uv": [8.625, 5.625, 8.64063, 5.65625], "texture": "#1"}, - "east": {"uv": [8.375, 4.875, 8.40625, 4.90625], "texture": "#1"}, - "south": {"uv": [5.75, 8.625, 5.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [5, 8.375, 5.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 5.78125, 8.625, 5.75], "texture": "#1"}, - "down": {"uv": [5.89063, 8.625, 5.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 10.72717], - "to": [8.39628, 11.26482, 10.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -0.31464]}, - "faces": { - "north": {"uv": [8, 1.25, 8.09375, 1.28125], "texture": "#1"}, - "east": {"uv": [8.375, 5, 8.40625, 5.03125], "texture": "#1"}, - "south": {"uv": [1.375, 8, 1.46875, 8.03125], "texture": "#1"}, - "west": {"uv": [5.125, 8.375, 5.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.09375, 1.40625, 8, 1.375], "texture": "#1"}, - "down": {"uv": [1.59375, 8, 1.5, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 10.72717], - "to": [7.80524, 11.02, 10.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 10.80517]}, - "faces": { - "north": {"uv": [8.625, 5.875, 8.64063, 5.90625], "texture": "#1"}, - "east": {"uv": [8.375, 5.125, 8.40625, 5.15625], "texture": "#1"}, - "south": {"uv": [6, 8.625, 6.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [5.25, 8.375, 5.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 6.03125, 8.625, 6], "texture": "#1"}, - "down": {"uv": [6.14063, 8.625, 6.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 9.92717], - "to": [7.80524, 11.02, 10.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 10.00517]}, - "faces": { - "north": {"uv": [8.625, 6.125, 8.64063, 6.15625], "texture": "#1"}, - "east": {"uv": [8.375, 5.25, 8.40625, 5.28125], "texture": "#1"}, - "south": {"uv": [6.25, 8.625, 6.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [5.375, 8.375, 5.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 6.28125, 8.625, 6.25], "texture": "#1"}, - "down": {"uv": [6.39063, 8.625, 6.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 10.32717], - "to": [8.45918, 11.23876, 10.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 10.43017]}, - "faces": { - "north": {"uv": [8.625, 6.375, 8.64063, 6.40625], "texture": "#1"}, - "east": {"uv": [8.375, 5.375, 8.40625, 5.40625], "texture": "#1"}, - "south": {"uv": [6.5, 8.625, 6.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [5.5, 8.375, 5.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 6.53125, 8.625, 6.5], "texture": "#1"}, - "down": {"uv": [6.64063, 8.625, 6.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 10.32717], - "to": [8.39628, 11.26482, 10.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -0.71464]}, - "faces": { - "north": {"uv": [8, 1.5, 8.09375, 1.53125], "texture": "#1"}, - "east": {"uv": [8.375, 5.5, 8.40625, 5.53125], "texture": "#1"}, - "south": {"uv": [1.625, 8, 1.71875, 8.03125], "texture": "#1"}, - "west": {"uv": [5.625, 8.375, 5.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.09375, 1.65625, 8, 1.625], "texture": "#1"}, - "down": {"uv": [1.84375, 8, 1.75, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 10.32717], - "to": [7.80524, 11.02, 10.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 10.40517]}, - "faces": { - "north": {"uv": [8.625, 6.625, 8.64063, 6.65625], "texture": "#1"}, - "east": {"uv": [8.375, 5.625, 8.40625, 5.65625], "texture": "#1"}, - "south": {"uv": [6.75, 8.625, 6.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [5.75, 8.375, 5.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 6.78125, 8.625, 6.75], "texture": "#1"}, - "down": {"uv": [6.89063, 8.625, 6.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 9.92717], - "to": [8.45918, 11.23876, 10.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 10.03017]}, - "faces": { - "north": {"uv": [8.625, 6.875, 8.64063, 6.90625], "texture": "#1"}, - "east": {"uv": [8.375, 5.75, 8.40625, 5.78125], "texture": "#1"}, - "south": {"uv": [7, 8.625, 7.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [5.875, 8.375, 5.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 7.03125, 8.625, 7], "texture": "#1"}, - "down": {"uv": [7.14063, 8.625, 7.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 9.92717], - "to": [8.39628, 11.26482, 10.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -1.11464]}, - "faces": { - "north": {"uv": [1.875, 8, 1.96875, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 5.875, 8.40625, 5.90625], "texture": "#1"}, - "south": {"uv": [8, 1.875, 8.09375, 1.90625], "texture": "#1"}, - "west": {"uv": [6, 8.375, 6.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [2.09375, 8.03125, 2, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 2, 8, 2.03125], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 9.52717], - "to": [8.45918, 11.23876, 9.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 9.63017]}, - "faces": { - "north": {"uv": [8.625, 7.125, 8.64063, 7.15625], "texture": "#1"}, - "east": {"uv": [8.375, 6, 8.40625, 6.03125], "texture": "#1"}, - "south": {"uv": [7.25, 8.625, 7.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [6.125, 8.375, 6.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 7.28125, 8.625, 7.25], "texture": "#1"}, - "down": {"uv": [7.39063, 8.625, 7.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 9.52717], - "to": [8.39628, 11.26482, 9.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -1.51464]}, - "faces": { - "north": {"uv": [2.125, 8, 2.21875, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 6.125, 8.40625, 6.15625], "texture": "#1"}, - "south": {"uv": [2.25, 8, 2.34375, 8.03125], "texture": "#1"}, - "west": {"uv": [6.25, 8.375, 6.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [2.46875, 8.03125, 2.375, 8], "texture": "#1"}, - "down": {"uv": [2.59375, 8, 2.5, 8.03125], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 9.52717], - "to": [7.80524, 11.02, 9.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 9.60517]}, - "faces": { - "north": {"uv": [8.625, 7.375, 8.64063, 7.40625], "texture": "#1"}, - "east": {"uv": [8.375, 6.25, 8.40625, 6.28125], "texture": "#1"}, - "south": {"uv": [7.5, 8.625, 7.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [6.375, 8.375, 6.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 7.53125, 8.625, 7.5], "texture": "#1"}, - "down": {"uv": [7.64063, 8.625, 7.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 9.12717], - "to": [8.45918, 11.23876, 9.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 9.23017]}, - "faces": { - "north": {"uv": [8.625, 7.625, 8.64063, 7.65625], "texture": "#1"}, - "east": {"uv": [8.375, 6.375, 8.40625, 6.40625], "texture": "#1"}, - "south": {"uv": [7.75, 8.625, 7.76563, 8.65625], "texture": "#1"}, - "west": {"uv": [6.5, 8.375, 6.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 7.78125, 8.625, 7.75], "texture": "#1"}, - "down": {"uv": [7.89063, 8.625, 7.875, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 9.12717], - "to": [8.39628, 11.26482, 9.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -1.91464]}, - "faces": { - "north": {"uv": [2.625, 8, 2.71875, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 6.5, 8.40625, 6.53125], "texture": "#1"}, - "south": {"uv": [2.75, 8, 2.84375, 8.03125], "texture": "#1"}, - "west": {"uv": [6.625, 8.375, 6.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [2.96875, 8.03125, 2.875, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 2.875, 8, 2.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 9.12717], - "to": [7.80524, 11.02, 9.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 9.20517]}, - "faces": { - "north": {"uv": [8.625, 7.875, 8.64063, 7.90625], "texture": "#1"}, - "east": {"uv": [8.375, 6.625, 8.40625, 6.65625], "texture": "#1"}, - "south": {"uv": [8, 8.625, 8.01563, 8.65625], "texture": "#1"}, - "west": {"uv": [6.75, 8.375, 6.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 8.03125, 8.625, 8], "texture": "#1"}, - "down": {"uv": [8.14063, 8.625, 8.125, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 8.32717], - "to": [7.80524, 11.02, 8.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 8.40517]}, - "faces": { - "north": {"uv": [8.625, 8.125, 8.64063, 8.15625], "texture": "#1"}, - "east": {"uv": [8.375, 6.75, 8.40625, 6.78125], "texture": "#1"}, - "south": {"uv": [8.25, 8.625, 8.26563, 8.65625], "texture": "#1"}, - "west": {"uv": [6.875, 8.375, 6.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 8.28125, 8.625, 8.25], "texture": "#1"}, - "down": {"uv": [8.39063, 8.625, 8.375, 8.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 8.72717], - "to": [8.45918, 11.23876, 8.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 8.83017]}, - "faces": { - "north": {"uv": [8.625, 8.375, 8.64063, 8.40625], "texture": "#1"}, - "east": {"uv": [8.375, 6.875, 8.40625, 6.90625], "texture": "#1"}, - "south": {"uv": [8.5, 8.625, 8.51563, 8.65625], "texture": "#1"}, - "west": {"uv": [7, 8.375, 7.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [8.64063, 8.53125, 8.625, 8.5], "texture": "#1"}, - "down": {"uv": [8.64063, 8.625, 8.625, 8.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 8.72717], - "to": [8.39628, 11.26482, 8.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -2.31464]}, - "faces": { - "north": {"uv": [3, 8, 3.09375, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 7, 8.40625, 7.03125], "texture": "#1"}, - "south": {"uv": [8, 3, 8.09375, 3.03125], "texture": "#1"}, - "west": {"uv": [7.125, 8.375, 7.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [3.21875, 8.03125, 3.125, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 3.125, 8, 3.15625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 8.72717], - "to": [7.80524, 11.02, 8.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 8.80517]}, - "faces": { - "north": {"uv": [0, 8.75, 0.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 7.125, 8.40625, 7.15625], "texture": "#1"}, - "south": {"uv": [8.75, 0, 8.76563, 0.03125], "texture": "#1"}, - "west": {"uv": [7.25, 8.375, 7.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [0.14063, 8.78125, 0.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 0.125, 8.75, 0.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 8.32717], - "to": [8.45918, 11.23876, 8.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 8.43017]}, - "faces": { - "north": {"uv": [0.25, 8.75, 0.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 7.25, 8.40625, 7.28125], "texture": "#1"}, - "south": {"uv": [8.75, 0.25, 8.76563, 0.28125], "texture": "#1"}, - "west": {"uv": [7.375, 8.375, 7.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [0.39063, 8.78125, 0.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 0.375, 8.75, 0.40625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 8.32717], - "to": [8.39628, 11.26482, 8.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -2.71464]}, - "faces": { - "north": {"uv": [3.25, 8, 3.34375, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 7.375, 8.40625, 7.40625], "texture": "#1"}, - "south": {"uv": [8, 3.25, 8.09375, 3.28125], "texture": "#1"}, - "west": {"uv": [7.5, 8.375, 7.53125, 8.40625], "texture": "#1"}, - "up": {"uv": [3.46875, 8.03125, 3.375, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 3.375, 8, 3.40625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 7.92717], - "to": [8.45918, 11.23876, 8.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 8.03017]}, - "faces": { - "north": {"uv": [0.5, 8.75, 0.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 7.5, 8.40625, 7.53125], "texture": "#1"}, - "south": {"uv": [8.75, 0.5, 8.76563, 0.53125], "texture": "#1"}, - "west": {"uv": [7.625, 8.375, 7.65625, 8.40625], "texture": "#1"}, - "up": {"uv": [0.64063, 8.78125, 0.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 0.625, 8.75, 0.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 7.92717], - "to": [8.39628, 11.26482, 8.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -3.11464]}, - "faces": { - "north": {"uv": [3.5, 8, 3.59375, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 7.625, 8.40625, 7.65625], "texture": "#1"}, - "south": {"uv": [8, 3.5, 8.09375, 3.53125], "texture": "#1"}, - "west": {"uv": [7.75, 8.375, 7.78125, 8.40625], "texture": "#1"}, - "up": {"uv": [3.71875, 8.03125, 3.625, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 3.625, 8, 3.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 7.92717], - "to": [7.80524, 11.02, 8.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 8.00517]}, - "faces": { - "north": {"uv": [0.75, 8.75, 0.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 7.75, 8.40625, 7.78125], "texture": "#1"}, - "south": {"uv": [8.75, 0.75, 8.76563, 0.78125], "texture": "#1"}, - "west": {"uv": [7.875, 8.375, 7.90625, 8.40625], "texture": "#1"}, - "up": {"uv": [0.89063, 8.78125, 0.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 0.875, 8.75, 0.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 7.52717], - "to": [8.45918, 11.23876, 7.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 7.63017]}, - "faces": { - "north": {"uv": [1, 8.75, 1.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 7.875, 8.40625, 7.90625], "texture": "#1"}, - "south": {"uv": [8.75, 1, 8.76563, 1.03125], "texture": "#1"}, - "west": {"uv": [8, 8.375, 8.03125, 8.40625], "texture": "#1"}, - "up": {"uv": [1.14063, 8.78125, 1.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 1.125, 8.75, 1.15625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 7.52717], - "to": [8.39628, 11.26482, 7.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -3.51464]}, - "faces": { - "north": {"uv": [3.75, 8, 3.84375, 8.03125], "texture": "#1"}, - "east": {"uv": [8.375, 8, 8.40625, 8.03125], "texture": "#1"}, - "south": {"uv": [8, 3.75, 8.09375, 3.78125], "texture": "#1"}, - "west": {"uv": [8.125, 8.375, 8.15625, 8.40625], "texture": "#1"}, - "up": {"uv": [3.96875, 8.03125, 3.875, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 3.875, 8, 3.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 7.52717], - "to": [7.80524, 11.02, 7.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 7.60517]}, - "faces": { - "north": {"uv": [1.25, 8.75, 1.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 8.125, 8.40625, 8.15625], "texture": "#1"}, - "south": {"uv": [8.75, 1.25, 8.76563, 1.28125], "texture": "#1"}, - "west": {"uv": [8.25, 8.375, 8.28125, 8.40625], "texture": "#1"}, - "up": {"uv": [1.39063, 8.78125, 1.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 1.375, 8.75, 1.40625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 6.72717], - "to": [7.80524, 11.02, 6.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 6.80517]}, - "faces": { - "north": {"uv": [1.5, 8.75, 1.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [8.375, 8.25, 8.40625, 8.28125], "texture": "#1"}, - "south": {"uv": [8.75, 1.5, 8.76563, 1.53125], "texture": "#1"}, - "west": {"uv": [8.375, 8.375, 8.40625, 8.40625], "texture": "#1"}, - "up": {"uv": [1.64063, 8.78125, 1.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 1.625, 8.75, 1.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 7.12717], - "to": [8.45918, 11.23876, 7.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 7.23017]}, - "faces": { - "north": {"uv": [1.75, 8.75, 1.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [0, 8.5, 0.03125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 1.75, 8.76563, 1.78125], "texture": "#1"}, - "west": {"uv": [8.5, 0, 8.53125, 0.03125], "texture": "#1"}, - "up": {"uv": [1.89063, 8.78125, 1.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 1.875, 8.75, 1.90625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 7.12717], - "to": [8.39628, 11.26482, 7.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -3.91464]}, - "faces": { - "north": {"uv": [4, 8, 4.09375, 8.03125], "texture": "#1"}, - "east": {"uv": [0.125, 8.5, 0.15625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 4, 8.09375, 4.03125], "texture": "#1"}, - "west": {"uv": [8.5, 0.125, 8.53125, 0.15625], "texture": "#1"}, - "up": {"uv": [4.21875, 8.03125, 4.125, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 4.125, 8, 4.15625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 7.12717], - "to": [7.80524, 11.02, 7.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 7.20517]}, - "faces": { - "north": {"uv": [2, 8.75, 2.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [0.25, 8.5, 0.28125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 2, 8.76563, 2.03125], "texture": "#1"}, - "west": {"uv": [8.5, 0.25, 8.53125, 0.28125], "texture": "#1"}, - "up": {"uv": [2.14063, 8.78125, 2.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 2.125, 8.75, 2.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 6.72717], - "to": [8.45918, 11.23876, 6.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 6.83017]}, - "faces": { - "north": {"uv": [2.25, 8.75, 2.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [0.375, 8.5, 0.40625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 2.25, 8.76563, 2.28125], "texture": "#1"}, - "west": {"uv": [8.5, 0.375, 8.53125, 0.40625], "texture": "#1"}, - "up": {"uv": [2.39063, 8.78125, 2.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 2.375, 8.75, 2.40625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 6.72717], - "to": [8.39628, 11.26482, 6.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -4.31464]}, - "faces": { - "north": {"uv": [4.25, 8, 4.34375, 8.03125], "texture": "#1"}, - "east": {"uv": [0.5, 8.5, 0.53125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 4.25, 8.09375, 4.28125], "texture": "#1"}, - "west": {"uv": [8.5, 0.5, 8.53125, 0.53125], "texture": "#1"}, - "up": {"uv": [4.46875, 8.03125, 4.375, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 4.375, 8, 4.40625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 6.32717], - "to": [8.45918, 11.23876, 6.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 6.43017]}, - "faces": { - "north": {"uv": [2.5, 8.75, 2.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [0.625, 8.5, 0.65625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 2.5, 8.76563, 2.53125], "texture": "#1"}, - "west": {"uv": [8.5, 0.625, 8.53125, 0.65625], "texture": "#1"}, - "up": {"uv": [2.64063, 8.78125, 2.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 2.625, 8.75, 2.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 6.32717], - "to": [8.39628, 11.26482, 6.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -4.71464]}, - "faces": { - "north": {"uv": [4.5, 8, 4.59375, 8.03125], "texture": "#1"}, - "east": {"uv": [0.75, 8.5, 0.78125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 4.5, 8.09375, 4.53125], "texture": "#1"}, - "west": {"uv": [8.5, 0.75, 8.53125, 0.78125], "texture": "#1"}, - "up": {"uv": [4.71875, 8.03125, 4.625, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 4.625, 8, 4.65625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 6.32717], - "to": [7.80524, 11.02, 6.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 6.40517]}, - "faces": { - "north": {"uv": [2.75, 8.75, 2.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [0.875, 8.5, 0.90625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 2.75, 8.76563, 2.78125], "texture": "#1"}, - "west": {"uv": [8.5, 0.875, 8.53125, 0.90625], "texture": "#1"}, - "up": {"uv": [2.89063, 8.78125, 2.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 2.875, 8.75, 2.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 5.92717], - "to": [8.45918, 11.23876, 6.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 6.03017]}, - "faces": { - "north": {"uv": [3, 8.75, 3.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [1, 8.5, 1.03125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 3, 8.76563, 3.03125], "texture": "#1"}, - "west": {"uv": [8.5, 1, 8.53125, 1.03125], "texture": "#1"}, - "up": {"uv": [3.14063, 8.78125, 3.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 3.125, 8.75, 3.15625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 5.92717], - "to": [8.39628, 11.26482, 6.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -5.11464]}, - "faces": { - "north": {"uv": [4.75, 8, 4.84375, 8.03125], "texture": "#1"}, - "east": {"uv": [1.125, 8.5, 1.15625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 4.75, 8.09375, 4.78125], "texture": "#1"}, - "west": {"uv": [8.5, 1.125, 8.53125, 1.15625], "texture": "#1"}, - "up": {"uv": [4.96875, 8.03125, 4.875, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 4.875, 8, 4.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 5.92717], - "to": [7.80524, 11.02, 6.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 6.00517]}, - "faces": { - "north": {"uv": [3.25, 8.75, 3.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [1.25, 8.5, 1.28125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 3.25, 8.76563, 3.28125], "texture": "#1"}, - "west": {"uv": [8.5, 1.25, 8.53125, 1.28125], "texture": "#1"}, - "up": {"uv": [3.39063, 8.78125, 3.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 3.375, 8.75, 3.40625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 5.12717], - "to": [7.80524, 11.02, 5.33317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 5.20517]}, - "faces": { - "north": {"uv": [3.5, 8.75, 3.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [1.375, 8.5, 1.40625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 3.5, 8.76563, 3.53125], "texture": "#1"}, - "west": {"uv": [8.5, 1.375, 8.53125, 1.40625], "texture": "#1"}, - "up": {"uv": [3.64063, 8.78125, 3.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 3.625, 8.75, 3.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 5.52717], - "to": [8.45918, 11.23876, 5.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 5.63017]}, - "faces": { - "north": {"uv": [3.75, 8.75, 3.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [1.5, 8.5, 1.53125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 3.75, 8.76563, 3.78125], "texture": "#1"}, - "west": {"uv": [8.5, 1.5, 8.53125, 1.53125], "texture": "#1"}, - "up": {"uv": [3.89063, 8.78125, 3.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 3.875, 8.75, 3.90625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 5.52717], - "to": [8.39628, 11.26482, 5.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -5.51464]}, - "faces": { - "north": {"uv": [5, 8, 5.09375, 8.03125], "texture": "#1"}, - "east": {"uv": [1.625, 8.5, 1.65625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 5, 8.09375, 5.03125], "texture": "#1"}, - "west": {"uv": [8.5, 1.625, 8.53125, 1.65625], "texture": "#1"}, - "up": {"uv": [5.21875, 8.03125, 5.125, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 5.125, 8, 5.15625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 5.52717], - "to": [7.80524, 11.02, 5.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 5.60517]}, - "faces": { - "north": {"uv": [4, 8.75, 4.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [1.75, 8.5, 1.78125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 4, 8.76563, 4.03125], "texture": "#1"}, - "west": {"uv": [8.5, 1.75, 8.53125, 1.78125], "texture": "#1"}, - "up": {"uv": [4.14063, 8.78125, 4.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 4.125, 8.75, 4.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 5.12717], - "to": [8.45918, 11.23876, 5.33317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 5.23017]}, - "faces": { - "north": {"uv": [4.25, 8.75, 4.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [1.875, 8.5, 1.90625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 4.25, 8.76563, 4.28125], "texture": "#1"}, - "west": {"uv": [8.5, 1.875, 8.53125, 1.90625], "texture": "#1"}, - "up": {"uv": [4.39063, 8.78125, 4.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 4.375, 8.75, 4.40625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 5.12717], - "to": [8.39628, 11.26482, 5.33317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -5.91464]}, - "faces": { - "north": {"uv": [5.25, 8, 5.34375, 8.03125], "texture": "#1"}, - "east": {"uv": [2, 8.5, 2.03125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 5.25, 8.09375, 5.28125], "texture": "#1"}, - "west": {"uv": [8.5, 2, 8.53125, 2.03125], "texture": "#1"}, - "up": {"uv": [5.46875, 8.03125, 5.375, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 5.375, 8, 5.40625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 3.52717], - "to": [7.80524, 11.02, 3.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 3.60517]}, - "faces": { - "north": {"uv": [4.5, 8.75, 4.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [2.125, 8.5, 2.15625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 4.5, 8.76563, 4.53125], "texture": "#1"}, - "west": {"uv": [8.5, 2.125, 8.53125, 2.15625], "texture": "#1"}, - "up": {"uv": [4.64063, 8.78125, 4.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 4.625, 8.75, 4.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 3.52717], - "to": [8.39628, 11.26482, 3.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -7.51464]}, - "faces": { - "north": {"uv": [5.5, 8, 5.59375, 8.03125], "texture": "#1"}, - "east": {"uv": [2.25, 8.5, 2.28125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 5.5, 8.09375, 5.53125], "texture": "#1"}, - "west": {"uv": [8.5, 2.25, 8.53125, 2.28125], "texture": "#1"}, - "up": {"uv": [5.71875, 8.03125, 5.625, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 5.625, 8, 5.65625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 3.52717], - "to": [8.45918, 11.23876, 3.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 3.63017]}, - "faces": { - "north": {"uv": [4.75, 8.75, 4.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [2.375, 8.5, 2.40625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 4.75, 8.76563, 4.78125], "texture": "#1"}, - "west": {"uv": [8.5, 2.375, 8.53125, 2.40625], "texture": "#1"}, - "up": {"uv": [4.89063, 8.78125, 4.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 4.875, 8.75, 4.90625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 3.92717], - "to": [7.80524, 11.02, 4.13317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 4.00517]}, - "faces": { - "north": {"uv": [5, 8.75, 5.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [2.5, 8.5, 2.53125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 5, 8.76563, 5.03125], "texture": "#1"}, - "west": {"uv": [8.5, 2.5, 8.53125, 2.53125], "texture": "#1"}, - "up": {"uv": [5.14063, 8.78125, 5.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 5.125, 8.75, 5.15625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 3.92717], - "to": [8.39628, 11.26482, 4.13317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -7.11464]}, - "faces": { - "north": {"uv": [5.75, 8, 5.84375, 8.03125], "texture": "#1"}, - "east": {"uv": [2.625, 8.5, 2.65625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 5.75, 8.09375, 5.78125], "texture": "#1"}, - "west": {"uv": [8.5, 2.625, 8.53125, 2.65625], "texture": "#1"}, - "up": {"uv": [5.96875, 8.03125, 5.875, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 5.875, 8, 5.90625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 3.92717], - "to": [8.45918, 11.23876, 4.13317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 4.03017]}, - "faces": { - "north": {"uv": [5.25, 8.75, 5.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [2.75, 8.5, 2.78125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 5.25, 8.76563, 5.28125], "texture": "#1"}, - "west": {"uv": [8.5, 2.75, 8.53125, 2.78125], "texture": "#1"}, - "up": {"uv": [5.39063, 8.78125, 5.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 5.375, 8.75, 5.40625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 4.32717], - "to": [7.80524, 11.02, 4.53317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 4.40517]}, - "faces": { - "north": {"uv": [5.5, 8.75, 5.51563, 8.78125], "texture": "#1"}, - "east": {"uv": [2.875, 8.5, 2.90625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 5.5, 8.76563, 5.53125], "texture": "#1"}, - "west": {"uv": [8.5, 2.875, 8.53125, 2.90625], "texture": "#1"}, - "up": {"uv": [5.64063, 8.78125, 5.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 5.625, 8.75, 5.65625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 4.32717], - "to": [8.39628, 11.26482, 4.53317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -6.71464]}, - "faces": { - "north": {"uv": [6, 8, 6.09375, 8.03125], "texture": "#1"}, - "east": {"uv": [3, 8.5, 3.03125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 6, 8.09375, 6.03125], "texture": "#1"}, - "west": {"uv": [8.5, 3, 8.53125, 3.03125], "texture": "#1"}, - "up": {"uv": [6.21875, 8.03125, 6.125, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 6.125, 8, 6.15625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 4.32717], - "to": [8.45918, 11.23876, 4.53317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 4.43017]}, - "faces": { - "north": {"uv": [5.75, 8.75, 5.76563, 8.78125], "texture": "#1"}, - "east": {"uv": [3.125, 8.5, 3.15625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 5.75, 8.76563, 5.78125], "texture": "#1"}, - "west": {"uv": [8.5, 3.125, 8.53125, 3.15625], "texture": "#1"}, - "up": {"uv": [5.89063, 8.78125, 5.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 5.875, 8.75, 5.90625], "texture": "#1"} - } - }, - { - "from": [7.60028, 11.01482, 4.72717], - "to": [8.39628, 11.26482, 4.93317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.75302, -6.31464]}, - "faces": { - "north": {"uv": [6.25, 8, 6.34375, 8.03125], "texture": "#1"}, - "east": {"uv": [3.25, 8.5, 3.28125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 6.25, 8.09375, 6.28125], "texture": "#1"}, - "west": {"uv": [8.5, 3.25, 8.53125, 3.28125], "texture": "#1"}, - "up": {"uv": [6.46875, 8.03125, 6.375, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 6.375, 8, 6.40625], "texture": "#1"} - } - }, - { - "from": [8.28193, 10.98876, 4.72717], - "to": [8.45918, 11.23876, 4.93317], - "rotation": {"angle": -45, "axis": "z", "origin": [8.37056, 11.11376, 4.83017]}, - "faces": { - "north": {"uv": [6, 8.75, 6.01563, 8.78125], "texture": "#1"}, - "east": {"uv": [3.375, 8.5, 3.40625, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 6, 8.76563, 6.03125], "texture": "#1"}, - "west": {"uv": [8.5, 3.375, 8.53125, 3.40625], "texture": "#1"}, - "up": {"uv": [6.14063, 8.78125, 6.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 6.125, 8.75, 6.15625], "texture": "#1"} - } - }, - { - "from": [7.62799, 10.77, 4.72717], - "to": [7.80524, 11.02, 4.93317], - "rotation": {"angle": 45, "axis": "z", "origin": [7.40724, 10.895, 4.80517]}, - "faces": { - "north": {"uv": [6.25, 8.75, 6.26563, 8.78125], "texture": "#1"}, - "east": {"uv": [3.5, 8.5, 3.53125, 8.53125], "texture": "#1"}, - "south": {"uv": [8.75, 6.25, 8.76563, 6.28125], "texture": "#1"}, - "west": {"uv": [8.5, 3.5, 8.53125, 3.53125], "texture": "#1"}, - "up": {"uv": [6.39063, 8.78125, 6.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 6.375, 8.75, 6.40625], "texture": "#1"} - } - }, - { - "from": [6.92078, 9.56532, 2.81467], - "to": [8.01828, 10.64532, 10.71067], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.375, 6.75, 2.51563, 6.89063], "texture": "#1"}, - "east": {"uv": [4.125, 1.25, 5.10938, 1.39063], "texture": "#1"}, - "south": {"uv": [4.125, 6.75, 4.26563, 6.89063], "texture": "#1"}, - "west": {"uv": [4.125, 4, 5.10938, 4.14063], "texture": "#1"}, - "up": {"uv": [1.39063, 5.23438, 1.25, 4.25], "texture": "#1"}, - "down": {"uv": [4.26563, 4.25, 4.125, 5.23438], "texture": "#1"} - } - }, - { - "from": [8.01828, 9.56532, 2.81467], - "to": [9.07828, 10.64532, 7.61067], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.875, 6.875, 2, 7.01563], "texture": "#1"}, - "east": {"uv": [5, 2.75, 5.59375, 2.89063], "texture": "#1"}, - "south": {"uv": [2.875, 6.875, 3, 7.01563], "texture": "#1"}, - "west": {"uv": [5, 3.625, 5.59375, 3.76563], "texture": "#1"}, - "up": {"uv": [3.375, 5.84375, 3.25, 5.25], "texture": "#1"}, - "down": {"uv": [4.25, 5.25, 4.125, 5.84375], "texture": "#1"} - } - }, - { - "from": [7.41828, 10.31532, 7.61067], - "to": [9.07828, 10.64532, 10.71917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 0.125, 7.57813, 0.17188], "texture": "#1"}, - "east": {"uv": [3.125, 6.875, 3.51563, 6.92188], "texture": "#1"}, - "south": {"uv": [0.375, 7.375, 0.57813, 7.42188], "texture": "#1"}, - "west": {"uv": [6.5, 6.875, 6.89063, 6.92188], "texture": "#1"}, - "up": {"uv": [1.57813, 5.64063, 1.375, 5.25], "texture": "#1"}, - "down": {"uv": [1.82813, 5.25, 1.625, 5.64063], "texture": "#1"} - } - }, - { - "from": [7.41828, 9.89782, 7.61067], - "to": [8.32828, 10.31532, 10.71917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.75, 7.625, 1.85938, 7.67188], "texture": "#1"}, - "east": {"uv": [7, 0.25, 7.39063, 0.29688], "texture": "#1"}, - "south": {"uv": [2.5, 7.625, 2.60938, 7.67188], "texture": "#1"}, - "west": {"uv": [7, 0.375, 7.39063, 0.42188], "texture": "#1"}, - "up": {"uv": [3.48438, 4.89063, 3.375, 4.5], "texture": "#1"}, - "down": {"uv": [4.10938, 5.875, 4, 6.26563], "texture": "#1"} - } - }, - { - "from": [7.41828, 9.56532, 7.61067], - "to": [9.07828, 9.89532, 10.71917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 0.5, 7.57813, 0.54688], "texture": "#1"}, - "east": {"uv": [0.875, 7, 1.26563, 7.04688], "texture": "#1"}, - "south": {"uv": [0.625, 7.375, 0.82813, 7.42188], "texture": "#1"}, - "west": {"uv": [1.375, 7, 1.76563, 7.04688], "texture": "#1"}, - "up": {"uv": [2.45313, 5.64063, 2.25, 5.25], "texture": "#1"}, - "down": {"uv": [2.70313, 5.25, 2.5, 5.64063], "texture": "#1"} - } - }, - { - "from": [6.92078, 9.56532, 10.71067], - "to": [9.08078, 10.64532, 20.85667], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6, 0.5, 6.26563, 0.64063], "texture": "#1"}, - "east": {"uv": [3.375, 2.5, 4.64063, 2.64063], "texture": "#1"}, - "south": {"uv": [6, 0.75, 6.26563, 0.89063], "texture": "#1"}, - "west": {"uv": [3.375, 2.75, 4.64063, 2.89063], "texture": "#1"}, - "up": {"uv": [0.26563, 2.51563, 0, 1.25], "texture": "#1"}, - "down": {"uv": [0.64063, 1.25, 0.375, 2.51563], "texture": "#1"} - } - }, - { - "from": [6.92078, 9.56532, -1.53933], - "to": [7.18078, 10.39532, 2.85667], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.375, 7.75, 5.40625, 7.85938], "texture": "#1"}, - "east": {"uv": [5.25, 0.125, 5.79688, 0.23438], "texture": "#1"}, - "south": {"uv": [5.5, 7.75, 5.53125, 7.85938], "texture": "#1"}, - "west": {"uv": [5.375, 1.625, 5.92188, 1.73438], "texture": "#1"}, - "up": {"uv": [2.53125, 7.54688, 2.5, 7], "texture": "#1"}, - "down": {"uv": [2.65625, 7, 2.625, 7.54688], "texture": "#1"} - } - }, - { - "from": [8.82078, 9.56532, -1.53933], - "to": [9.08078, 10.39532, 2.85667], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.625, 7.75, 5.65625, 7.85938], "texture": "#1"}, - "east": {"uv": [5.375, 3.25, 5.92188, 3.35938], "texture": "#1"}, - "south": {"uv": [5.75, 7.75, 5.78125, 7.85938], "texture": "#1"}, - "west": {"uv": [5.375, 3.375, 5.92188, 3.48438], "texture": "#1"}, - "up": {"uv": [2.78125, 7.54688, 2.75, 7], "texture": "#1"}, - "down": {"uv": [3.15625, 7, 3.125, 7.54688], "texture": "#1"} - } - }, - { - "from": [10.02698, 9.3676, -1.53933], - "to": [10.23698, 9.9476, 2.85667], - "rotation": {"angle": 45, "axis": "z", "origin": [8.41832, 8.4858, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 3, 8.15625, 3.07813], "texture": "#1"}, - "east": {"uv": [5.625, 3.125, 6.17188, 3.20313], "texture": "#1"}, - "south": {"uv": [3.125, 8.125, 3.15625, 8.20313], "texture": "#1"}, - "west": {"uv": [5.875, 0.125, 6.42188, 0.20313], "texture": "#1"}, - "up": {"uv": [3.28125, 7.54688, 3.25, 7], "texture": "#1"}, - "down": {"uv": [3.40625, 7, 3.375, 7.54688], "texture": "#1"} - } - }, - { - "from": [7.3309, 10.59544, -1.53933], - "to": [8.6734, 10.80544, 2.85667], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5552, 8.98678, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 1.75, 7.79688, 1.78125], "texture": "#1"}, - "east": {"uv": [7, 2.125, 7.54688, 2.15625], "texture": "#1"}, - "south": {"uv": [2, 7.625, 2.17188, 7.65625], "texture": "#1"}, - "west": {"uv": [4.125, 7, 4.67188, 7.03125], "texture": "#1"}, - "up": {"uv": [5.17188, 1.17188, 5, 0.625], "texture": "#1"}, - "down": {"uv": [2.17188, 5, 2, 5.54688], "texture": "#1"} - } - }, - { - "from": [7.7054, 11.92842, -1.53933], - "to": [8.2854, 12.13842, 2.85667], - "rotation": {"angle": 45, "axis": "z", "origin": [9.4172, 10.31975, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 3.125, 8.20313, 3.15625], "texture": "#1"}, - "east": {"uv": [7, 4.5, 7.54688, 4.53125], "texture": "#1"}, - "south": {"uv": [3.25, 8.125, 3.32813, 8.15625], "texture": "#1"}, - "west": {"uv": [7, 6.125, 7.54688, 6.15625], "texture": "#1"}, - "up": {"uv": [4.20313, 6.42188, 4.125, 5.875], "texture": "#1"}, - "down": {"uv": [4.32813, 5.875, 4.25, 6.42188], "texture": "#1"} - } - }, - { - "from": [7.60028, 10.64532, 3.52717], - "to": [8.39628, 11.01482, 17.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5, 7.625, 5.09375, 7.67188], "texture": "#1"}, - "east": {"uv": [5.125, 0.25, 6.90625, 0.29688], "texture": "#1"}, - "south": {"uv": [7.75, 0.375, 7.84375, 0.42188], "texture": "#1"}, - "west": {"uv": [5.125, 0.375, 6.90625, 0.42188], "texture": "#1"}, - "up": {"uv": [3.09375, 5.28125, 3, 3.5], "texture": "#1"}, - "down": {"uv": [0.84375, 3.625, 0.75, 5.40625], "texture": "#1"} - } - }, - { - "from": [8.19612, 11.56792, 3.52717], - "to": [8.19612, 11.76792, 17.73317], - "rotation": {"angle": 45, "axis": "z", "origin": [8.59412, 10.58317, 10.63017]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.03125], "texture": "#1"}, - "east": {"uv": [5.5, 4.625, 7.28125, 4.65625], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.03125], "texture": "#1"}, - "west": {"uv": [5.5, 4.75, 7.28125, 4.78125], "texture": "#1"}, - "up": {"uv": [0, 1.78125, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1.78125], "texture": "#1"} - } - }, - { - "from": [7.47495, 11.13848, 3.52717], - "to": [8.52495, 11.13848, 17.73317], - "rotation": {"angle": 0, "axis": "y", "origin": [6.4902, 10.74048, 10.63017]}, - "faces": { - "north": {"uv": [0, 0, 0.125, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1.78125, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 0.125, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1.78125, 0], "texture": "#1"}, - "up": {"uv": [1.25, 3.78125, 1.125, 2], "texture": "#1"}, - "down": {"uv": [0.125, 2.625, 0, 4.40625], "texture": "#1"} - } - }, - { - "from": [7.80044, 11.56792, 3.52717], - "to": [7.80044, 11.76792, 17.73317], - "rotation": {"angle": -45, "axis": "z", "origin": [7.40244, 10.58317, 10.63017]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.03125], "texture": "#1"}, - "east": {"uv": [5.5, 4.875, 7.28125, 4.90625], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.03125], "texture": "#1"}, - "west": {"uv": [5.5, 5, 7.28125, 5.03125], "texture": "#1"}, - "up": {"uv": [0, 1.78125, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1.78125], "texture": "#1"} - } - }, - { - "from": [7.56628, 4.03126, 0.53594], - "to": [8.43028, 9.05526, 1.58194], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3, 5.375, 3.10938, 6], "texture": "#1"}, - "east": {"uv": [2.875, 5.25, 3, 5.875], "texture": "#1"}, - "south": {"uv": [5.375, 4.5, 5.48438, 5.125], "texture": "#1"}, - "west": {"uv": [3.125, 5.25, 3.25, 5.875], "texture": "#1"}, - "up": {"uv": [3.23438, 0.5, 3.125, 0.375], "texture": "#1"}, - "down": {"uv": [3.73438, 5, 3.625, 5.125], "texture": "#1"} - } - }, - { - "from": [7.45828, 8.29926, 0.42794], - "to": [8.53828, 9.05526, 1.93994], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2, 7.125, 2.14063, 7.21875], "texture": "#1"}, - "east": {"uv": [7, 1.375, 7.1875, 1.46875], "texture": "#1"}, - "south": {"uv": [2.875, 7.125, 3.01563, 7.21875], "texture": "#1"}, - "west": {"uv": [2, 7, 2.1875, 7.09375], "texture": "#1"}, - "up": {"uv": [6.51563, 1.5625, 6.375, 1.375], "texture": "#1"}, - "down": {"uv": [1.64063, 6.375, 1.5, 6.5625], "texture": "#1"} - } - }, - { - "from": [7.35028, 1.97385, 0.92447], - "to": [8.64628, 2.18985, 1.89647], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 3.125, 7.78125, 3.15625], "texture": "#1"}, - "east": {"uv": [3, 7.75, 3.125, 7.78125], "texture": "#1"}, - "south": {"uv": [3.25, 7.625, 3.40625, 7.65625], "texture": "#1"}, - "west": {"uv": [7.75, 3, 7.875, 3.03125], "texture": "#1"}, - "up": {"uv": [6.90625, 6.75, 6.75, 6.625], "texture": "#1"}, - "down": {"uv": [7.03125, 0, 6.875, 0.125], "texture": "#1"} - } - }, - { - "from": [7.35028, 2.18985, 1.03247], - "to": [8.64628, 2.29785, 1.78847], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 3.25, 8.28125, 3.26563], "texture": "#1"}, - "east": {"uv": [8.125, 7.5, 8.21875, 7.51563], "texture": "#1"}, - "south": {"uv": [3.375, 8.125, 3.53125, 8.14063], "texture": "#1"}, - "west": {"uv": [7.625, 8.125, 7.71875, 8.14063], "texture": "#1"}, - "up": {"uv": [0.53125, 7.21875, 0.375, 7.125], "texture": "#1"}, - "down": {"uv": [7.28125, 0.5, 7.125, 0.59375], "texture": "#1"} - } - }, - { - "from": [7.35028, 2.29785, 1.24847], - "to": [8.64628, 2.51385, 1.68047], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 3.25, 7.78125, 3.28125], "texture": "#1"}, - "east": {"uv": [8.125, 7.625, 8.17188, 7.65625], "texture": "#1"}, - "south": {"uv": [7.625, 3.375, 7.78125, 3.40625], "texture": "#1"}, - "west": {"uv": [7.75, 8.125, 7.79688, 8.15625], "texture": "#1"}, - "up": {"uv": [7.65625, 2.54688, 7.5, 2.5], "texture": "#1"}, - "down": {"uv": [7.65625, 2.625, 7.5, 2.67188], "texture": "#1"} - } - }, - { - "from": [6.50645, 8.84033, 2.72117], - "to": [7.03845, 9.21633, 3.26117], - "rotation": {"angle": -45, "axis": "z", "origin": [9.72625, 7.29217, 6.48536]}, - "faces": { - "north": {"uv": [6.5, 8, 6.5625, 8.04688], "texture": "#1"}, - "east": {"uv": [8, 6.5, 8.0625, 6.54688], "texture": "#1"}, - "south": {"uv": [6.625, 8, 6.6875, 8.04688], "texture": "#1"}, - "west": {"uv": [8, 6.625, 8.0625, 6.67188], "texture": "#1"}, - "up": {"uv": [3.3125, 7.8125, 3.25, 7.75], "texture": "#1"}, - "down": {"uv": [3.4375, 7.75, 3.375, 7.8125], "texture": "#1"} - } - }, - { - "from": [8.95811, 8.84033, 2.72117], - "to": [9.49011, 9.21633, 3.26117], - "rotation": {"angle": 45, "axis": "z", "origin": [6.27031, 7.29217, 6.48536]}, - "faces": { - "north": {"uv": [6.75, 8, 6.8125, 8.04688], "texture": "#1"}, - "east": {"uv": [8, 6.75, 8.0625, 6.79688], "texture": "#1"}, - "south": {"uv": [6.875, 8, 6.9375, 8.04688], "texture": "#1"}, - "west": {"uv": [8, 6.875, 8.0625, 6.92188], "texture": "#1"}, - "up": {"uv": [3.5625, 7.8125, 3.5, 7.75], "texture": "#1"}, - "down": {"uv": [3.6875, 7.75, 3.625, 7.8125], "texture": "#1"} - } - }, - { - "from": [7.18646, 10.5535, 2.72117], - "to": [8.81221, 10.9295, 3.26117], - "rotation": {"angle": 0, "axis": "y", "origin": [5.74866, 9.00533, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 0.625, 7.57813, 0.67188], "texture": "#1"}, - "east": {"uv": [7, 8, 7.0625, 8.04688], "texture": "#1"}, - "south": {"uv": [1.375, 7.375, 1.57813, 7.42188], "texture": "#1"}, - "west": {"uv": [8, 7, 8.0625, 7.04688], "texture": "#1"}, - "up": {"uv": [7.32813, 3.8125, 7.125, 3.75], "texture": "#1"}, - "down": {"uv": [7.32813, 4.25, 7.125, 4.3125], "texture": "#1"} - } - }, - { - "from": [6.81028, 7.52132, 2.72117], - "to": [9.18628, 10.55332, 3.26117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.25, 4.625, 2.54688, 5], "texture": "#1"}, - "east": {"uv": [6.625, 1.875, 6.6875, 2.25], "texture": "#1"}, - "south": {"uv": [2.625, 4.625, 2.92188, 5], "texture": "#1"}, - "west": {"uv": [2, 6.625, 2.0625, 7], "texture": "#1"}, - "up": {"uv": [7.17188, 1.5625, 6.875, 1.5], "texture": "#1"}, - "down": {"uv": [7.17188, 1.625, 6.875, 1.6875], "texture": "#1"} - } - }, - { - "from": [7.89628, 9.99732, 7.66867], - "to": [9.51028, 10.32132, 8.03367], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.625, 7.375, 1.82813, 7.42188], "texture": "#1"}, - "east": {"uv": [5.75, 8.125, 5.79688, 8.17188], "texture": "#1"}, - "south": {"uv": [7.375, 1.75, 7.57813, 1.79688], "texture": "#1"}, - "west": {"uv": [8.125, 5.75, 8.17188, 5.79688], "texture": "#1"}, - "up": {"uv": [7.57813, 2.29688, 7.375, 2.25], "texture": "#1"}, - "down": {"uv": [7.57813, 2.375, 7.375, 2.42188], "texture": "#1"} - } - }, - { - "from": [9.07828, 9.99732, 10.71317], - "to": [9.29428, 10.32132, 10.82117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 7.75, 8.15625, 7.79688], "texture": "#1"}, - "east": {"uv": [5.125, 8.5, 5.14063, 8.54688], "texture": "#1"}, - "south": {"uv": [7.875, 8.125, 7.90625, 8.17188], "texture": "#1"}, - "west": {"uv": [8.5, 5.125, 8.51563, 5.17188], "texture": "#1"}, - "up": {"uv": [6.53125, 8.76563, 6.5, 8.75], "texture": "#1"}, - "down": {"uv": [8.78125, 6.5, 8.75, 6.51563], "texture": "#1"} - } - }, - { - "from": [9.07828, 9.99732, 7.47317], - "to": [9.29428, 10.32132, 7.58117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 7.875, 8.15625, 7.92188], "texture": "#1"}, - "east": {"uv": [5.25, 8.5, 5.26563, 8.54688], "texture": "#1"}, - "south": {"uv": [8, 8.125, 8.03125, 8.17188], "texture": "#1"}, - "west": {"uv": [8.5, 5.25, 8.51563, 5.29688], "texture": "#1"}, - "up": {"uv": [6.65625, 8.76563, 6.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.78125, 6.625, 8.75, 6.64063], "texture": "#1"} - } - }, - { - "from": [9.07828, 10.32132, 7.47317], - "to": [9.29428, 10.42932, 10.82117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.75, 8.75, 6.78125, 8.76563], "texture": "#1"}, - "east": {"uv": [7.5, 5.125, 7.92188, 5.14063], "texture": "#1"}, - "south": {"uv": [8.75, 6.75, 8.78125, 6.76563], "texture": "#1"}, - "west": {"uv": [7.5, 5.25, 7.92188, 5.26563], "texture": "#1"}, - "up": {"uv": [3.65625, 7.54688, 3.625, 7.125], "texture": "#1"}, - "down": {"uv": [3.78125, 7.125, 3.75, 7.54688], "texture": "#1"} - } - }, - { - "from": [9.07828, 9.88932, 7.47317], - "to": [9.29428, 9.99732, 10.82117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.875, 8.75, 6.90625, 8.76563], "texture": "#1"}, - "east": {"uv": [5.5, 7.5, 5.92188, 7.51563], "texture": "#1"}, - "south": {"uv": [8.75, 6.875, 8.78125, 6.89063], "texture": "#1"}, - "west": {"uv": [7.5, 5.625, 7.92188, 5.64063], "texture": "#1"}, - "up": {"uv": [4.15625, 7.54688, 4.125, 7.125], "texture": "#1"}, - "down": {"uv": [4.28125, 7.125, 4.25, 7.54688], "texture": "#1"} - } - }, - { - "from": [6.81028, 7.62132, -1.38283], - "to": [9.18628, 9.65332, -0.84283], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.25, 5.25, 4.54688, 5.5], "texture": "#1"}, - "east": {"uv": [3.5, 7, 3.5625, 7.25], "texture": "#1"}, - "south": {"uv": [5.25, 4.25, 5.54688, 4.5], "texture": "#1"}, - "west": {"uv": [0.25, 7.125, 0.3125, 7.375], "texture": "#1"}, - "up": {"uv": [7.17188, 2.3125, 6.875, 2.25], "texture": "#1"}, - "down": {"uv": [7.17188, 2.375, 6.875, 2.4375], "texture": "#1"} - } - }, - { - "from": [7.35028, 7.83732, -1.60483], - "to": [8.64628, 8.05332, 4.98917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 3.5, 7.78125, 3.53125], "texture": "#1"}, - "east": {"uv": [6.375, 0.875, 7.20313, 0.90625], "texture": "#1"}, - "south": {"uv": [3.625, 7.625, 3.78125, 7.65625], "texture": "#1"}, - "west": {"uv": [6.375, 2.5, 7.20313, 2.53125], "texture": "#1"}, - "up": {"uv": [0.65625, 5.20313, 0.5, 4.375], "texture": "#1"}, - "down": {"uv": [1.03125, 4.375, 0.875, 5.20313], "texture": "#1"} - } - }, - { - "from": [7.35028, 6.64932, -1.49083], - "to": [8.64628, 7.83732, 4.98917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.5, 6.25, 6.65625, 6.40625], "texture": "#1"}, - "east": {"uv": [4.375, 0, 5.1875, 0.15625], "texture": "#1"}, - "south": {"uv": [6.5, 6.5, 6.65625, 6.65625], "texture": "#1"}, - "west": {"uv": [4.375, 4.25, 5.1875, 4.40625], "texture": "#1"}, - "up": {"uv": [1.65625, 5.1875, 1.5, 4.375], "texture": "#1"}, - "down": {"uv": [1.90625, 4.375, 1.75, 5.1875], "texture": "#1"} - } - }, - { - "from": [7.13428, 9.34932, -1.60483], - "to": [8.86228, 9.56532, 4.98917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.5, 2.75, 7.71875, 2.78125], "texture": "#1"}, - "east": {"uv": [6.375, 2.625, 7.20313, 2.65625], "texture": "#1"}, - "south": {"uv": [3.875, 7.5, 4.09375, 7.53125], "texture": "#1"}, - "west": {"uv": [6.375, 2.75, 7.20313, 2.78125], "texture": "#1"}, - "up": {"uv": [1.09375, 3.70313, 0.875, 2.875], "texture": "#1"}, - "down": {"uv": [1.46875, 3.375, 1.25, 4.20313], "texture": "#1"} - } - }, - { - "from": [6.96376, 10.54156, 3.26042], - "to": [7.29176, 10.75756, 10.60442], - "rotation": {"angle": 45, "axis": "z", "origin": [7.07776, 10.64956, 7.03867]}, - "faces": { - "north": {"uv": [8.125, 8, 8.17188, 8.03125], "texture": "#1"}, - "east": {"uv": [6.125, 3, 7.04688, 3.03125], "texture": "#1"}, - "south": {"uv": [8.125, 8.125, 8.17188, 8.15625], "texture": "#1"}, - "west": {"uv": [6, 6.125, 6.92188, 6.15625], "texture": "#1"}, - "up": {"uv": [0.92188, 6.79688, 0.875, 5.875], "texture": "#1"}, - "down": {"uv": [1.04688, 5.875, 1, 6.79688], "texture": "#1"} - } - }, - { - "from": [8.70824, 10.54156, 3.26042], - "to": [9.03624, 10.75756, 10.60442], - "rotation": {"angle": -45, "axis": "z", "origin": [8.92224, 10.64956, 7.03867]}, - "faces": { - "north": {"uv": [0, 8.25, 0.04688, 8.28125], "texture": "#1"}, - "east": {"uv": [6.25, 3.125, 7.17188, 3.15625], "texture": "#1"}, - "south": {"uv": [8.25, 0, 8.29688, 0.03125], "texture": "#1"}, - "west": {"uv": [6.25, 3.25, 7.17188, 3.28125], "texture": "#1"}, - "up": {"uv": [2.92188, 6.79688, 2.875, 5.875], "texture": "#1"}, - "down": {"uv": [3.17188, 5.875, 3.125, 6.79688], "texture": "#1"} - } - }, - { - "from": [8.70824, 10.54156, 11.06042], - "to": [9.03624, 10.75756, 18.40442], - "rotation": {"angle": -45, "axis": "z", "origin": [8.92224, 10.64956, 14.83867]}, - "faces": { - "north": {"uv": [0.125, 8.25, 0.17188, 8.28125], "texture": "#1"}, - "east": {"uv": [6.25, 3.375, 7.17188, 3.40625], "texture": "#1"}, - "south": {"uv": [8.25, 0.125, 8.29688, 0.15625], "texture": "#1"}, - "west": {"uv": [6.25, 3.875, 7.17188, 3.90625], "texture": "#1"}, - "up": {"uv": [3.29688, 6.79688, 3.25, 5.875], "texture": "#1"}, - "down": {"uv": [3.42188, 5.875, 3.375, 6.79688], "texture": "#1"} - } - }, - { - "from": [7.15054, 10.66125, 3.26042], - "to": [8.84729, 10.87725, 18.40442], - "rotation": {"angle": 0, "axis": "y", "origin": [8.73329, 10.76925, 14.83867]}, - "faces": { - "north": {"uv": [7.5, 4, 7.71875, 4.03125], "texture": "#1"}, - "east": {"uv": [5.375, 3.5, 7.26563, 3.53125], "texture": "#1"}, - "south": {"uv": [7.5, 4.125, 7.71875, 4.15625], "texture": "#1"}, - "west": {"uv": [5.5, 1, 7.39063, 1.03125], "texture": "#1"}, - "up": {"uv": [0.96875, 1.89063, 0.75, 0], "texture": "#1"}, - "down": {"uv": [1.21875, 0, 1, 1.89063], "texture": "#1"} - } - }, - { - "from": [6.96376, 10.54156, 11.06042], - "to": [7.29176, 10.75756, 18.40442], - "rotation": {"angle": 45, "axis": "z", "origin": [7.07776, 10.64956, 14.83867]}, - "faces": { - "north": {"uv": [0.25, 8.25, 0.29688, 8.28125], "texture": "#1"}, - "east": {"uv": [6.25, 4, 7.17188, 4.03125], "texture": "#1"}, - "south": {"uv": [8.25, 0.25, 8.29688, 0.28125], "texture": "#1"}, - "west": {"uv": [6.25, 4.125, 7.17188, 4.15625], "texture": "#1"}, - "up": {"uv": [3.54688, 6.79688, 3.5, 5.875], "texture": "#1"}, - "down": {"uv": [3.92188, 5.875, 3.875, 6.79688], "texture": "#1"} - } - }, - { - "from": [8.64628, 7.83732, -1.60483], - "to": [8.86228, 9.34932, 4.98917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.5, 7.375, 7.53125, 7.5625], "texture": "#1"}, - "east": {"uv": [3.875, 1.625, 4.70313, 1.8125], "texture": "#1"}, - "south": {"uv": [0, 7.625, 0.03125, 7.8125], "texture": "#1"}, - "west": {"uv": [3.875, 1.875, 4.70313, 2.0625], "texture": "#1"}, - "up": {"uv": [3.78125, 7.07813, 3.75, 6.25], "texture": "#1"}, - "down": {"uv": [4.03125, 6.375, 4, 7.20313], "texture": "#1"} - } - }, - { - "from": [5.83828, 9.40332, 0.61517], - "to": [7.35028, 10.37532, 1.58717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.125, 6.625, 2.3125, 6.75], "texture": "#1"}, - "east": {"uv": [1.875, 2.125, 2, 2.25], "texture": "#1"}, - "south": {"uv": [6.625, 2.25, 6.8125, 2.375], "texture": "#1"}, - "west": {"uv": [2.625, 2.125, 2.75, 2.25], "texture": "#1"}, - "up": {"uv": [2.5625, 6.75, 2.375, 6.625], "texture": "#1"}, - "down": {"uv": [6.8125, 2.375, 6.625, 2.5], "texture": "#1"} - } - }, - { - "from": [5.62228, 9.40332, 1.04717], - "to": [5.83828, 13.93932, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.875, 6.875, 3.90625, 7.4375], "texture": "#1"}, - "east": {"uv": [5.125, 6.875, 5.15625, 7.4375], "texture": "#1"}, - "south": {"uv": [2.25, 7, 2.28125, 7.5625], "texture": "#1"}, - "west": {"uv": [2.375, 7, 2.40625, 7.5625], "texture": "#1"}, - "up": {"uv": [3.65625, 8.53125, 3.625, 8.5], "texture": "#1"}, - "down": {"uv": [8.53125, 3.625, 8.5, 3.65625], "texture": "#1"} - } - }, - { - "from": [5.83828, 10.69932, 1.04717], - "to": [6.59428, 10.91532, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.125, 8, 7.21875, 8.03125], "texture": "#1"}, - "east": {"uv": [3.75, 8.5, 3.78125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 7.125, 8.09375, 7.15625], "texture": "#1"}, - "west": {"uv": [8.5, 3.75, 8.53125, 3.78125], "texture": "#1"}, - "up": {"uv": [7.34375, 8.03125, 7.25, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 7.25, 8, 7.28125], "texture": "#1"} - } - }, - { - "from": [5.83828, 11.56332, 1.04717], - "to": [6.59428, 11.77932, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.375, 8, 7.46875, 8.03125], "texture": "#1"}, - "east": {"uv": [3.875, 8.5, 3.90625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 7.375, 8.09375, 7.40625], "texture": "#1"}, - "west": {"uv": [8.5, 3.875, 8.53125, 3.90625], "texture": "#1"}, - "up": {"uv": [7.59375, 8.03125, 7.5, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 7.5, 8, 7.53125], "texture": "#1"} - } - }, - { - "from": [5.83828, 12.53532, 1.04717], - "to": [6.59428, 12.75132, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 8, 7.71875, 8.03125], "texture": "#1"}, - "east": {"uv": [4, 8.5, 4.03125, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 7.625, 8.09375, 7.65625], "texture": "#1"}, - "west": {"uv": [8.5, 4, 8.53125, 4.03125], "texture": "#1"}, - "up": {"uv": [7.84375, 8.03125, 7.75, 8], "texture": "#1"}, - "down": {"uv": [8.09375, 7.75, 8, 7.78125], "texture": "#1"} - } - }, - { - "from": [5.83828, 13.72332, 1.04717], - "to": [6.59428, 13.93932, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.875, 8, 7.96875, 8.03125], "texture": "#1"}, - "east": {"uv": [4.125, 8.5, 4.15625, 8.53125], "texture": "#1"}, - "south": {"uv": [8, 7.875, 8.09375, 7.90625], "texture": "#1"}, - "west": {"uv": [8.5, 4.125, 8.53125, 4.15625], "texture": "#1"}, - "up": {"uv": [8.09375, 8.03125, 8, 8], "texture": "#1"}, - "down": {"uv": [0.09375, 8.125, 0, 8.15625], "texture": "#1"} - } - }, - { - "from": [5.83828, 9.07932, 1.58717], - "to": [7.35028, 10.26732, 1.80317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.5, 6.125, 5.6875, 6.28125], "texture": "#1"}, - "east": {"uv": [7.625, 3.625, 7.65625, 3.78125], "texture": "#1"}, - "south": {"uv": [5.75, 6.125, 5.9375, 6.28125], "texture": "#1"}, - "west": {"uv": [3.875, 7.625, 3.90625, 7.78125], "texture": "#1"}, - "up": {"uv": [7.8125, 0.03125, 7.625, 0], "texture": "#1"}, - "down": {"uv": [7.8125, 0.125, 7.625, 0.15625], "texture": "#1"} - } - }, - { - "from": [5.38117, 9.38654, 1.04717], - "to": [5.92117, 9.60254, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 6.125, 8.1875, 6.15625], "texture": "#1"}, - "east": {"uv": [4.25, 8.5, 4.28125, 8.53125], "texture": "#1"}, - "south": {"uv": [6.25, 8.125, 6.3125, 8.15625], "texture": "#1"}, - "west": {"uv": [8.5, 4.25, 8.53125, 4.28125], "texture": "#1"}, - "up": {"uv": [8.1875, 6.28125, 8.125, 6.25], "texture": "#1"}, - "down": {"uv": [6.4375, 8.125, 6.375, 8.15625], "texture": "#1"} - } - }, - { - "from": [5.17265, 8.81277, 1.04717], - "to": [5.38865, 9.56877, 1.26317], - "rotation": {"angle": -22.5, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.125, 0, 8.15625, 0.09375], "texture": "#1"}, - "east": {"uv": [0.125, 8.125, 0.15625, 8.21875], "texture": "#1"}, - "south": {"uv": [8.125, 0.125, 8.15625, 0.21875], "texture": "#1"}, - "west": {"uv": [0.25, 8.125, 0.28125, 8.21875], "texture": "#1"}, - "up": {"uv": [4.40625, 8.53125, 4.375, 8.5], "texture": "#1"}, - "down": {"uv": [8.53125, 4.375, 8.5, 4.40625], "texture": "#1"} - } - }, - { - "from": [6.59428, 10.37532, 1.04717], - "to": [6.81028, 13.93932, 1.26317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.875, 7.125, 0.90625, 7.57813], "texture": "#1"}, - "east": {"uv": [1, 7.125, 1.03125, 7.57813], "texture": "#1"}, - "south": {"uv": [1.125, 7.125, 1.15625, 7.57813], "texture": "#1"}, - "west": {"uv": [1.25, 7.125, 1.28125, 7.57813], "texture": "#1"}, - "up": {"uv": [4.53125, 8.53125, 4.5, 8.5], "texture": "#1"}, - "down": {"uv": [8.53125, 4.5, 8.5, 4.53125], "texture": "#1"} - } - }, - { - "from": [7.13428, 7.83732, -1.60483], - "to": [7.35028, 9.34932, 4.98917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.625, 0.25, 7.65625, 0.4375], "texture": "#1"}, - "east": {"uv": [3.875, 2.125, 4.70313, 2.3125], "texture": "#1"}, - "south": {"uv": [7.625, 0.5, 7.65625, 0.6875], "texture": "#1"}, - "west": {"uv": [4, 3, 4.82813, 3.1875], "texture": "#1"}, - "up": {"uv": [4.90625, 7.20313, 4.875, 6.375], "texture": "#1"}, - "down": {"uv": [5.03125, 6.375, 5, 7.20313], "texture": "#1"} - } - }, - { - "from": [7.24228, 6.75732, -1.49083], - "to": [7.35028, 7.40532, 1.74917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.125, 8.25, 3.14063, 8.32813], "texture": "#1"}, - "east": {"uv": [3.625, 0.25, 4.03125, 0.32813], "texture": "#1"}, - "south": {"uv": [8.25, 3.125, 8.26563, 3.20313], "texture": "#1"}, - "west": {"uv": [4.25, 2.375, 4.65625, 2.45313], "texture": "#1"}, - "up": {"uv": [6.26563, 7.90625, 6.25, 7.5], "texture": "#1"}, - "down": {"uv": [6.39063, 7.5, 6.375, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, -1.49083], - "to": [7.24228, 7.40532, -1.27483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.25, 8.25, 3.26563, 8.32813], "texture": "#1"}, - "east": {"uv": [8.125, 3.375, 8.15625, 3.45313], "texture": "#1"}, - "south": {"uv": [3.375, 8.25, 3.39063, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 3.5, 8.15625, 3.57813], "texture": "#1"}, - "up": {"uv": [7.01563, 8.78125, 7, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7, 8.75, 7.03125], "texture": "#1"} - } - }, - { - "from": [6.70228, 6.64932, -1.05883], - "to": [7.35028, 7.51332, 0.45317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6, 2.25, 6.07813, 2.35938], "texture": "#1"}, - "east": {"uv": [2.125, 6.75, 2.3125, 6.85938], "texture": "#1"}, - "south": {"uv": [6.375, 7.375, 6.45313, 7.48438], "texture": "#1"}, - "west": {"uv": [6.75, 2.125, 6.9375, 2.23438], "texture": "#1"}, - "up": {"uv": [0.70313, 7.3125, 0.625, 7.125], "texture": "#1"}, - "down": {"uv": [0.82813, 7.125, 0.75, 7.3125], "texture": "#1"} - } - }, - { - "from": [6.70228, 6.10932, 0.34517], - "to": [7.35028, 6.75732, 0.99317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.5, 6.625, 7.57813, 6.70313], "texture": "#1"}, - "east": {"uv": [6.75, 7.5, 6.82813, 7.57813], "texture": "#1"}, - "south": {"uv": [6.875, 7.5, 6.95313, 7.57813], "texture": "#1"}, - "west": {"uv": [7.5, 6.875, 7.57813, 6.95313], "texture": "#1"}, - "up": {"uv": [7.07813, 7.57813, 7, 7.5], "texture": "#1"}, - "down": {"uv": [7.57813, 7, 7.5, 7.07813], "texture": "#1"} - } - }, - { - "from": [6.81028, 3.00592, 2.99183], - "to": [7.13428, 3.43792, 3.96383], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.875, 8.125, 5.92188, 8.17188], "texture": "#1"}, - "east": {"uv": [7.625, 0.75, 7.75, 0.79688], "texture": "#1"}, - "south": {"uv": [8.125, 5.875, 8.17188, 5.92188], "texture": "#1"}, - "west": {"uv": [0.875, 7.625, 1, 7.67188], "texture": "#1"}, - "up": {"uv": [7.67188, 1, 7.625, 0.875], "texture": "#1"}, - "down": {"uv": [1.04688, 7.625, 1, 7.75], "texture": "#1"} - } - }, - { - "from": [7.02628, 7.4801, -0.60671], - "to": [7.35028, 7.5881, 0.36529], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.375, 8.5, 5.42188, 8.51563], "texture": "#1"}, - "east": {"uv": [8.125, 6.375, 8.25, 6.39063], "texture": "#1"}, - "south": {"uv": [8.5, 5.375, 8.54688, 5.39063], "texture": "#1"}, - "west": {"uv": [6.5, 8.125, 6.625, 8.14063], "texture": "#1"}, - "up": {"uv": [7.67188, 1.125, 7.625, 1], "texture": "#1"}, - "down": {"uv": [1.17188, 7.625, 1.125, 7.75], "texture": "#1"} - } - }, - { - "from": [7.02628, 7.4801, 0.36529], - "to": [7.35028, 7.5881, 0.47329], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.5, 8.5, 5.54688, 8.51563], "texture": "#1"}, - "east": {"uv": [8.875, 0.125, 8.89063, 0.14063], "texture": "#1"}, - "south": {"uv": [8.5, 5.5, 8.54688, 5.51563], "texture": "#1"}, - "west": {"uv": [0.25, 8.875, 0.26563, 8.89063], "texture": "#1"}, - "up": {"uv": [5.67188, 8.51563, 5.625, 8.5], "texture": "#1"}, - "down": {"uv": [8.54688, 5.625, 8.5, 5.64063], "texture": "#1"} - } - }, - { - "from": [6.91828, 6.75732, -3.97483], - "to": [7.13428, 7.40532, -1.05883], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.625, 8.125, 3.65625, 8.20313], "texture": "#1"}, - "east": {"uv": [6.25, 4.5, 6.60938, 4.57813], "texture": "#1"}, - "south": {"uv": [8.125, 3.625, 8.15625, 3.70313], "texture": "#1"}, - "west": {"uv": [6, 6.25, 6.35938, 6.32813], "texture": "#1"}, - "up": {"uv": [6.65625, 7.48438, 6.625, 7.125], "texture": "#1"}, - "down": {"uv": [6.78125, 7.125, 6.75, 7.48438], "texture": "#1"} - } - }, - { - "from": [6.91828, 6.86532, -6.89083], - "to": [7.13428, 7.29732, -3.97483], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.375, 8.25, 0.40625, 8.29688], "texture": "#1"}, - "east": {"uv": [7, 7, 7.35938, 7.04688], "texture": "#1"}, - "south": {"uv": [8.25, 0.375, 8.28125, 0.42188], "texture": "#1"}, - "west": {"uv": [7.125, 0, 7.48438, 0.04688], "texture": "#1"}, - "up": {"uv": [6.90625, 7.48438, 6.875, 7.125], "texture": "#1"}, - "down": {"uv": [7.03125, 7.125, 7, 7.48438], "texture": "#1"} - } - }, - { - "from": [6.91828, 6.97332, -10.13083], - "to": [7.13428, 7.18932, -6.89083], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.625, 8.5, 4.65625, 8.53125], "texture": "#1"}, - "east": {"uv": [7.125, 4.375, 7.53125, 4.40625], "texture": "#1"}, - "south": {"uv": [8.5, 4.625, 8.53125, 4.65625], "texture": "#1"}, - "west": {"uv": [7.125, 5.375, 7.53125, 5.40625], "texture": "#1"}, - "up": {"uv": [4.65625, 7.53125, 4.625, 7.125], "texture": "#1"}, - "down": {"uv": [4.78125, 7.125, 4.75, 7.53125], "texture": "#1"} - } - }, - { - "from": [7.02628, 6.97332, -13.37083], - "to": [7.13428, 7.08132, -10.13083], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.875, 0.25, 8.89063, 0.26563], "texture": "#1"}, - "east": {"uv": [7.5, 6.25, 7.90625, 6.26563], "texture": "#1"}, - "south": {"uv": [0.375, 8.875, 0.39063, 8.89063], "texture": "#1"}, - "west": {"uv": [7.5, 6.375, 7.90625, 6.39063], "texture": "#1"}, - "up": {"uv": [6.51563, 7.90625, 6.5, 7.5], "texture": "#1"}, - "down": {"uv": [6.64063, 7.5, 6.625, 7.90625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, -1.05883], - "to": [7.24228, 7.40532, -0.84283], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 3.375, 8.26563, 3.45313], "texture": "#1"}, - "east": {"uv": [3.75, 8.125, 3.78125, 8.20313], "texture": "#1"}, - "south": {"uv": [3.5, 8.25, 3.51563, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 3.75, 8.15625, 3.82813], "texture": "#1"}, - "up": {"uv": [7.14063, 8.78125, 7.125, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.125, 8.75, 7.15625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, -0.62683], - "to": [7.24228, 7.40532, -0.41083], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 3.5, 8.26563, 3.57813], "texture": "#1"}, - "east": {"uv": [3.875, 8.125, 3.90625, 8.20313], "texture": "#1"}, - "south": {"uv": [3.625, 8.25, 3.64063, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 3.875, 8.15625, 3.95313], "texture": "#1"}, - "up": {"uv": [7.26563, 8.78125, 7.25, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.25, 8.75, 7.28125], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, -0.19483], - "to": [7.24228, 7.40532, 0.02117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 3.625, 8.26563, 3.70313], "texture": "#1"}, - "east": {"uv": [4, 8.125, 4.03125, 8.20313], "texture": "#1"}, - "south": {"uv": [3.75, 8.25, 3.76563, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4, 8.15625, 4.07813], "texture": "#1"}, - "up": {"uv": [7.39063, 8.78125, 7.375, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.375, 8.75, 7.40625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, 1.10117], - "to": [7.24228, 7.40532, 1.31717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 3.75, 8.26563, 3.82813], "texture": "#1"}, - "east": {"uv": [4.125, 8.125, 4.15625, 8.20313], "texture": "#1"}, - "south": {"uv": [3.875, 8.25, 3.89063, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4.125, 8.15625, 4.20313], "texture": "#1"}, - "up": {"uv": [7.51563, 8.78125, 7.5, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.5, 8.75, 7.53125], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, 1.53317], - "to": [7.24228, 7.40532, 1.74917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 3.875, 8.26563, 3.95313], "texture": "#1"}, - "east": {"uv": [4.25, 8.125, 4.28125, 8.20313], "texture": "#1"}, - "south": {"uv": [4, 8.25, 4.01563, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4.25, 8.15625, 4.32813], "texture": "#1"}, - "up": {"uv": [7.64063, 8.78125, 7.625, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.625, 8.75, 7.65625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, 0.23717], - "to": [7.24228, 7.40532, 0.45317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 4, 8.26563, 4.07813], "texture": "#1"}, - "east": {"uv": [4.375, 8.125, 4.40625, 8.20313], "texture": "#1"}, - "south": {"uv": [4.125, 8.25, 4.14063, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4.375, 8.15625, 4.45313], "texture": "#1"}, - "up": {"uv": [7.76563, 8.78125, 7.75, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.75, 8.75, 7.78125], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.75732, 0.66917], - "to": [7.24228, 7.40532, 0.88517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 4.125, 8.26563, 4.20313], "texture": "#1"}, - "east": {"uv": [4.5, 8.125, 4.53125, 8.20313], "texture": "#1"}, - "south": {"uv": [4.25, 8.25, 4.26563, 8.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4.5, 8.15625, 4.57813], "texture": "#1"}, - "up": {"uv": [7.89063, 8.78125, 7.875, 8.75], "texture": "#1"}, - "down": {"uv": [8.76563, 7.875, 8.75, 7.90625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.41265, 0.58359], - "to": [7.37803, 6.61065, 0.74409], - "rotation": {"angle": 0, "axis": "y", "origin": [7.07928, 6.43665, 0.65447]}, - "faces": { - "north": {"uv": [8.125, 0.25, 8.21875, 0.28125], "texture": "#1"}, - "east": {"uv": [8, 8.75, 8.01563, 8.78125], "texture": "#1"}, - "south": {"uv": [0.375, 8.125, 0.46875, 8.15625], "texture": "#1"}, - "west": {"uv": [8.75, 8, 8.76563, 8.03125], "texture": "#1"}, - "up": {"uv": [0.59375, 8.26563, 0.5, 8.25], "texture": "#1"}, - "down": {"uv": [8.34375, 0.5, 8.25, 0.51563], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.40365, 0.63183], - "to": [7.37803, 6.56415, 0.82983], - "rotation": {"angle": -45, "axis": "x", "origin": [7.07928, 6.4839, 0.73083]}, - "faces": { - "north": {"uv": [0.625, 8.25, 0.71875, 8.26563], "texture": "#1"}, - "east": {"uv": [8.125, 8.75, 8.15625, 8.76563], "texture": "#1"}, - "south": {"uv": [8.25, 0.625, 8.34375, 0.64063], "texture": "#1"}, - "west": {"uv": [8.75, 8.125, 8.78125, 8.14063], "texture": "#1"}, - "up": {"uv": [8.21875, 0.40625, 8.125, 0.375], "texture": "#1"}, - "down": {"uv": [0.59375, 8.125, 0.5, 8.15625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.26967, 0.63183], - "to": [7.37803, 6.43017, 0.82983], - "rotation": {"angle": 45, "axis": "x", "origin": [7.07928, 6.34992, 0.73083]}, - "faces": { - "north": {"uv": [0.75, 8.25, 0.84375, 8.26563], "texture": "#1"}, - "east": {"uv": [8.25, 8.75, 8.28125, 8.76563], "texture": "#1"}, - "south": {"uv": [8.25, 0.75, 8.34375, 0.76563], "texture": "#1"}, - "west": {"uv": [8.75, 8.25, 8.78125, 8.26563], "texture": "#1"}, - "up": {"uv": [8.21875, 0.53125, 8.125, 0.5], "texture": "#1"}, - "down": {"uv": [0.71875, 8.125, 0.625, 8.15625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.33666, 0.65958], - "to": [7.37803, 6.49716, 0.85758], - "rotation": {"angle": 0, "axis": "y", "origin": [7.07928, 6.41691, 0.75858]}, - "faces": { - "north": {"uv": [0.875, 8.25, 0.96875, 8.26563], "texture": "#1"}, - "east": {"uv": [8.375, 8.75, 8.40625, 8.76563], "texture": "#1"}, - "south": {"uv": [8.25, 0.875, 8.34375, 0.89063], "texture": "#1"}, - "west": {"uv": [8.75, 8.375, 8.78125, 8.39063], "texture": "#1"}, - "up": {"uv": [8.21875, 0.65625, 8.125, 0.625], "texture": "#1"}, - "down": {"uv": [0.84375, 8.125, 0.75, 8.15625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.22317, 0.58359], - "to": [7.37803, 6.42117, 0.74409], - "rotation": {"angle": 0, "axis": "y", "origin": [7.07928, 6.32217, 0.66384]}, - "faces": { - "north": {"uv": [8.125, 0.75, 8.21875, 0.78125], "texture": "#1"}, - "east": {"uv": [8.5, 8.75, 8.51563, 8.78125], "texture": "#1"}, - "south": {"uv": [0.875, 8.125, 0.96875, 8.15625], "texture": "#1"}, - "west": {"uv": [8.75, 8.5, 8.76563, 8.53125], "texture": "#1"}, - "up": {"uv": [1.09375, 8.26563, 1, 8.25], "texture": "#1"}, - "down": {"uv": [8.34375, 1, 8.25, 1.01563], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.33666, 0.4701], - "to": [7.37803, 6.49716, 0.6681], - "rotation": {"angle": 0, "axis": "y", "origin": [7.07928, 6.41691, 0.5691]}, - "faces": { - "north": {"uv": [1.125, 8.25, 1.21875, 8.26563], "texture": "#1"}, - "east": {"uv": [8.625, 8.75, 8.65625, 8.76563], "texture": "#1"}, - "south": {"uv": [8.25, 1.125, 8.34375, 1.14063], "texture": "#1"}, - "west": {"uv": [8.75, 8.625, 8.78125, 8.64063], "texture": "#1"}, - "up": {"uv": [8.21875, 0.90625, 8.125, 0.875], "texture": "#1"}, - "down": {"uv": [1.09375, 8.125, 1, 8.15625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.40365, 0.49785], - "to": [7.37803, 6.56415, 0.69585], - "rotation": {"angle": 45, "axis": "x", "origin": [7.07928, 6.4839, 0.59685]}, - "faces": { - "north": {"uv": [1.25, 8.25, 1.34375, 8.26563], "texture": "#1"}, - "east": {"uv": [8.75, 8.75, 8.78125, 8.76563], "texture": "#1"}, - "south": {"uv": [8.25, 1.25, 8.34375, 1.26563], "texture": "#1"}, - "west": {"uv": [0, 8.875, 0.03125, 8.89063], "texture": "#1"}, - "up": {"uv": [8.21875, 1.03125, 8.125, 1], "texture": "#1"}, - "down": {"uv": [1.21875, 8.125, 1.125, 8.15625], "texture": "#1"} - } - }, - { - "from": [6.67428, 6.25092, 0.5166], - "to": [7.37803, 6.44892, 0.6771], - "rotation": {"angle": 45, "axis": "x", "origin": [7.07928, 6.34992, 0.59685]}, - "faces": { - "north": {"uv": [8.125, 1.125, 8.21875, 1.15625], "texture": "#1"}, - "east": {"uv": [8.875, 0, 8.89063, 0.03125], "texture": "#1"}, - "south": {"uv": [1.25, 8.125, 1.34375, 8.15625], "texture": "#1"}, - "west": {"uv": [0.125, 8.875, 0.14063, 8.90625], "texture": "#1"}, - "up": {"uv": [1.46875, 8.26563, 1.375, 8.25], "texture": "#1"}, - "down": {"uv": [8.34375, 1.375, 8.25, 1.39063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.95157, 13.04159], - "to": [8.92428, 7.08357, 13.14859], - "rotation": {"angle": 0, "axis": "y", "origin": [7.55428, 6.96757, 13.08884]}, - "faces": { - "north": {"uv": [7.75, 5.875, 7.95313, 5.89063], "texture": "#1"}, - "east": {"uv": [8.875, 0.375, 8.89063, 0.39063], "texture": "#1"}, - "south": {"uv": [6, 7.75, 6.20313, 7.76563], "texture": "#1"}, - "west": {"uv": [0.5, 8.875, 0.51563, 8.89063], "texture": "#1"}, - "up": {"uv": [7.95313, 6.01563, 7.75, 6], "texture": "#1"}, - "down": {"uv": [7.95313, 6.5, 7.75, 6.51563], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.94557, 13.07375], - "to": [8.92428, 7.05257, 13.20575], - "rotation": {"angle": -45, "axis": "x", "origin": [7.55428, 6.99907, 13.13975]}, - "faces": { - "north": {"uv": [6.75, 7.75, 6.95313, 7.76563], "texture": "#1"}, - "east": {"uv": [8.875, 0.5, 8.89063, 0.51563], "texture": "#1"}, - "south": {"uv": [7.75, 6.75, 7.95313, 6.76563], "texture": "#1"}, - "west": {"uv": [0.625, 8.875, 0.64063, 8.89063], "texture": "#1"}, - "up": {"uv": [7.20313, 7.76563, 7, 7.75], "texture": "#1"}, - "down": {"uv": [7.45313, 7.75, 7.25, 7.76563], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.85625, 13.07375], - "to": [8.92428, 6.96325, 13.20575], - "rotation": {"angle": 45, "axis": "x", "origin": [7.55428, 6.90975, 13.13975]}, - "faces": { - "north": {"uv": [7.5, 7.75, 7.70313, 7.76563], "texture": "#1"}, - "east": {"uv": [8.875, 0.625, 8.89063, 0.64063], "texture": "#1"}, - "south": {"uv": [7.75, 7.625, 7.95313, 7.64063], "texture": "#1"}, - "west": {"uv": [0.75, 8.875, 0.76563, 8.89063], "texture": "#1"}, - "up": {"uv": [7.95313, 7.76563, 7.75, 7.75], "texture": "#1"}, - "down": {"uv": [0.20313, 7.875, 0, 7.89063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.90091, 13.09225], - "to": [8.92428, 7.00791, 13.22425], - "rotation": {"angle": 0, "axis": "y", "origin": [7.55428, 6.95441, 13.15825]}, - "faces": { - "north": {"uv": [7.875, 0, 8.07813, 0.01563], "texture": "#1"}, - "east": {"uv": [8.875, 0.75, 8.89063, 0.76563], "texture": "#1"}, - "south": {"uv": [7.875, 0.125, 8.07813, 0.14063], "texture": "#1"}, - "west": {"uv": [0.875, 8.875, 0.89063, 8.89063], "texture": "#1"}, - "up": {"uv": [0.45313, 7.89063, 0.25, 7.875], "texture": "#1"}, - "down": {"uv": [8.07813, 0.375, 7.875, 0.39063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.82525, 13.04159], - "to": [8.92428, 6.95725, 13.14859], - "rotation": {"angle": 0, "axis": "y", "origin": [7.55428, 6.89125, 13.09509]}, - "faces": { - "north": {"uv": [0.5, 7.875, 0.70313, 7.89063], "texture": "#1"}, - "east": {"uv": [8.875, 0.875, 8.89063, 0.89063], "texture": "#1"}, - "south": {"uv": [0.75, 7.875, 0.95313, 7.89063], "texture": "#1"}, - "west": {"uv": [1, 8.875, 1.01563, 8.89063], "texture": "#1"}, - "up": {"uv": [1.20313, 7.89063, 1, 7.875], "texture": "#1"}, - "down": {"uv": [1.57813, 7.875, 1.375, 7.89063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.90091, 12.96593], - "to": [8.92428, 7.00791, 13.09793], - "rotation": {"angle": 0, "axis": "y", "origin": [7.55428, 6.95441, 13.03193]}, - "faces": { - "north": {"uv": [1.625, 7.875, 1.82813, 7.89063], "texture": "#1"}, - "east": {"uv": [8.875, 1, 8.89063, 1.01563], "texture": "#1"}, - "south": {"uv": [7.875, 1.75, 8.07813, 1.76563], "texture": "#1"}, - "west": {"uv": [1.125, 8.875, 1.14063, 8.89063], "texture": "#1"}, - "up": {"uv": [2.07813, 7.89063, 1.875, 7.875], "texture": "#1"}, - "down": {"uv": [2.32813, 7.875, 2.125, 7.89063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.94557, 12.98443], - "to": [8.92428, 7.05257, 13.11643], - "rotation": {"angle": 45, "axis": "x", "origin": [7.55428, 6.99907, 13.05043]}, - "faces": { - "north": {"uv": [7.875, 2.125, 8.07813, 2.14063], "texture": "#1"}, - "east": {"uv": [8.875, 1.125, 8.89063, 1.14063], "texture": "#1"}, - "south": {"uv": [7.875, 2.25, 8.07813, 2.26563], "texture": "#1"}, - "west": {"uv": [1.25, 8.875, 1.26563, 8.89063], "texture": "#1"}, - "up": {"uv": [2.57813, 7.89063, 2.375, 7.875], "texture": "#1"}, - "down": {"uv": [8.07813, 2.375, 7.875, 2.39063], "texture": "#1"} - } - }, - { - "from": [7.28428, 6.84375, 12.99693], - "to": [8.92428, 6.97575, 13.10393], - "rotation": {"angle": 45, "axis": "x", "origin": [7.55428, 6.90975, 13.05043]}, - "faces": { - "north": {"uv": [7.875, 2.5, 8.07813, 2.51563], "texture": "#1"}, - "east": {"uv": [8.875, 1.25, 8.89063, 1.26563], "texture": "#1"}, - "south": {"uv": [2.625, 7.875, 2.82813, 7.89063], "texture": "#1"}, - "west": {"uv": [1.375, 8.875, 1.39063, 8.89063], "texture": "#1"}, - "up": {"uv": [8.07813, 2.64063, 7.875, 2.625], "texture": "#1"}, - "down": {"uv": [8.07813, 2.75, 7.875, 2.76563], "texture": "#1"} - } - }, - { - "from": [7.43428, -1.40696, 14.20091], - "to": [8.75428, 0.62104, 14.41091], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26211, 8.63272, 6.47836]}, - "faces": { - "north": {"uv": [5.875, 1.125, 6.04688, 1.375], "texture": "#1"}, - "east": {"uv": [7.5, 1, 7.53125, 1.25], "texture": "#1"}, - "south": {"uv": [5.875, 1.375, 6.04688, 1.625], "texture": "#1"}, - "west": {"uv": [7.5, 1.25, 7.53125, 1.5], "texture": "#1"}, - "up": {"uv": [7.79688, 2.15625, 7.625, 2.125], "texture": "#1"}, - "down": {"uv": [2.42188, 7.625, 2.25, 7.65625], "texture": "#1"} - } - }, - { - "from": [7.43428, 3.8953, 15.97676], - "to": [8.75428, 5.9233, 16.18676], - "rotation": {"angle": -45, "axis": "x", "origin": [8.09428, 4.9093, 16.08176]}, - "faces": { - "north": {"uv": [5.875, 2.375, 6.04688, 2.625], "texture": "#1"}, - "east": {"uv": [1.375, 7.5, 1.40625, 7.75], "texture": "#1"}, - "south": {"uv": [5.875, 2.625, 6.04688, 2.875], "texture": "#1"}, - "west": {"uv": [1.5, 7.5, 1.53125, 7.75], "texture": "#1"}, - "up": {"uv": [7.79688, 2.28125, 7.625, 2.25], "texture": "#1"}, - "down": {"uv": [7.79688, 2.375, 7.625, 2.40625], "texture": "#1"} - } - }, - { - "from": [7.43428, -1.41079, 12.44167], - "to": [8.75428, 2.61721, 14.20167], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26211, 8.62889, 6.46912]}, - "faces": { - "north": {"uv": [3.375, 5, 3.54688, 5.5], "texture": "#1"}, - "east": {"uv": [4.625, 4.5, 4.84375, 5], "texture": "#1"}, - "south": {"uv": [4.625, 5, 4.79688, 5.5], "texture": "#1"}, - "west": {"uv": [0, 4.75, 0.21875, 5.25], "texture": "#1"}, - "up": {"uv": [5.67188, 6.09375, 5.5, 5.875], "texture": "#1"}, - "down": {"uv": [5.92188, 5.875, 5.75, 6.09375], "texture": "#1"} - } - }, - { - "from": [7.53428, 4.14193, 14.58911], - "to": [8.65428, 4.71993, 14.79911], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 4.60593, 15.76911]}, - "faces": { - "north": {"uv": [7.125, 5.5, 7.26563, 5.57813], "texture": "#1"}, - "east": {"uv": [4.625, 8.125, 4.65625, 8.20313], "texture": "#1"}, - "south": {"uv": [7.125, 6.75, 7.26563, 6.82813], "texture": "#1"}, - "west": {"uv": [8.125, 4.625, 8.15625, 4.70313], "texture": "#1"}, - "up": {"uv": [7.89063, 0.53125, 7.75, 0.5], "texture": "#1"}, - "down": {"uv": [0.76563, 7.75, 0.625, 7.78125], "texture": "#1"} - } - }, - { - "from": [7.53428, 3.72282, 14.76271], - "to": [8.65428, 4.30082, 14.97271], - "rotation": {"angle": -45, "axis": "x", "origin": [8.09428, 4.01182, 14.86771]}, - "faces": { - "north": {"uv": [7.125, 7.125, 7.26563, 7.20313], "texture": "#1"}, - "east": {"uv": [4.75, 8.125, 4.78125, 8.20313], "texture": "#1"}, - "south": {"uv": [0.375, 7.25, 0.51563, 7.32813], "texture": "#1"}, - "west": {"uv": [8.125, 4.75, 8.15625, 4.82813], "texture": "#1"}, - "up": {"uv": [7.89063, 0.65625, 7.75, 0.625], "texture": "#1"}, - "down": {"uv": [7.89063, 0.75, 7.75, 0.78125], "texture": "#1"} - } - }, - { - "from": [7.53428, 3.14193, 14.98911], - "to": [8.65428, 3.71993, 15.19911], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 3.60593, 16.16911]}, - "faces": { - "north": {"uv": [7.25, 0.875, 7.39063, 0.95313], "texture": "#1"}, - "east": {"uv": [4.875, 8.125, 4.90625, 8.20313], "texture": "#1"}, - "south": {"uv": [7.25, 1.125, 7.39063, 1.20313], "texture": "#1"}, - "west": {"uv": [8.125, 4.875, 8.15625, 4.95313], "texture": "#1"}, - "up": {"uv": [1.01563, 7.78125, 0.875, 7.75], "texture": "#1"}, - "down": {"uv": [7.89063, 0.875, 7.75, 0.90625], "texture": "#1"} - } - }, - { - "from": [7.53428, 2.72282, 15.16271], - "to": [8.65428, 3.30082, 15.37271], - "rotation": {"angle": -45, "axis": "x", "origin": [8.09428, 3.01182, 15.26771]}, - "faces": { - "north": {"uv": [7.25, 1.25, 7.39063, 1.32813], "texture": "#1"}, - "east": {"uv": [5, 8.125, 5.03125, 8.20313], "texture": "#1"}, - "south": {"uv": [7.25, 1.375, 7.39063, 1.45313], "texture": "#1"}, - "west": {"uv": [8.125, 5, 8.15625, 5.07813], "texture": "#1"}, - "up": {"uv": [7.89063, 1.03125, 7.75, 1], "texture": "#1"}, - "down": {"uv": [7.89063, 1.125, 7.75, 1.15625], "texture": "#1"} - } - }, - { - "from": [7.53428, 2.09269, 15.36829], - "to": [8.65428, 2.82069, 15.57829], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 2.08169, 15.47329]}, - "faces": { - "north": {"uv": [7.125, 3, 7.26563, 3.09375], "texture": "#1"}, - "east": {"uv": [8.125, 1.25, 8.15625, 1.34375], "texture": "#1"}, - "south": {"uv": [7.125, 3.625, 7.26563, 3.71875], "texture": "#1"}, - "west": {"uv": [1.375, 8.125, 1.40625, 8.21875], "texture": "#1"}, - "up": {"uv": [7.89063, 1.28125, 7.75, 1.25], "texture": "#1"}, - "down": {"uv": [1.51563, 7.75, 1.375, 7.78125], "texture": "#1"} - } - }, - { - "from": [7.53428, 1.63763, 15.37648], - "to": [8.65428, 1.96563, 15.83023], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 1.80163, 15.48148]}, - "faces": { - "north": {"uv": [4.375, 7.5, 4.51563, 7.54688], "texture": "#1"}, - "east": {"uv": [8.125, 1.375, 8.1875, 1.42188], "texture": "#1"}, - "south": {"uv": [4.875, 7.5, 5.01563, 7.54688], "texture": "#1"}, - "west": {"uv": [1.5, 8.125, 1.5625, 8.17188], "texture": "#1"}, - "up": {"uv": [7.51563, 5.0625, 7.375, 5], "texture": "#1"}, - "down": {"uv": [7.51563, 5.5, 7.375, 5.5625], "texture": "#1"} - } - }, - { - "from": [7.53428, 1.77052, 15.21022], - "to": [8.65428, 2.39852, 15.58272], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8.09428, 1.77202, 15.28397]}, - "faces": { - "north": {"uv": [1.5, 7.25, 1.64063, 7.32813], "texture": "#1"}, - "east": {"uv": [7.75, 3.625, 7.79688, 3.70313], "texture": "#1"}, - "south": {"uv": [7.25, 1.5, 7.39063, 1.57813], "texture": "#1"}, - "west": {"uv": [3.75, 7.75, 3.79688, 7.82813], "texture": "#1"}, - "up": {"uv": [7.64063, 5.79688, 7.5, 5.75], "texture": "#1"}, - "down": {"uv": [7.64063, 5.875, 7.5, 5.92188], "texture": "#1"} - } - }, - { - "from": [7.53428, 1.50641, 14.84969], - "to": [8.65428, 1.73441, 15.45969], - "rotation": {"angle": -45, "axis": "x", "origin": [8.09428, 2.20791, 14.95469]}, - "faces": { - "north": {"uv": [7.75, 1.375, 7.89063, 1.40625], "texture": "#1"}, - "east": {"uv": [5.125, 8.125, 5.20313, 8.15625], "texture": "#1"}, - "south": {"uv": [1.625, 7.75, 1.76563, 7.78125], "texture": "#1"}, - "west": {"uv": [8.125, 5.125, 8.20313, 5.15625], "texture": "#1"}, - "up": {"uv": [7.39063, 1.70313, 7.25, 1.625], "texture": "#1"}, - "down": {"uv": [1.89063, 7.25, 1.75, 7.32813], "texture": "#1"} - } - }, - { - "from": [7.43428, 5.36042, 14.1876], - "to": [8.75428, 8.53842, 15.9976], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 7.29942, 15.2176]}, - "faces": { - "north": {"uv": [5.375, 5.125, 5.54688, 5.51563], "texture": "#1"}, - "east": {"uv": [5.125, 1.25, 5.34375, 1.64063], "texture": "#1"}, - "south": {"uv": [5.5, 0.5, 5.67188, 0.89063], "texture": "#1"}, - "west": {"uv": [3.625, 5.125, 3.84375, 5.51563], "texture": "#1"}, - "up": {"uv": [0.17188, 6.21875, 0, 6], "texture": "#1"}, - "down": {"uv": [0.67188, 6, 0.5, 6.21875], "texture": "#1"} - } - }, - { - "from": [7.38428, -1.21079, 12.64167], - "to": [8.80428, 2.61721, 14.00167], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26211, 8.62889, 6.46912]}, - "faces": { - "north": {"uv": [4.875, 5.125, 5.04688, 5.60938], "texture": "#1"}, - "east": {"uv": [5.125, 5, 5.29688, 5.48438], "texture": "#1"}, - "south": {"uv": [0, 5.25, 0.17188, 5.73438], "texture": "#1"}, - "west": {"uv": [0.5, 5.25, 0.67188, 5.73438], "texture": "#1"}, - "up": {"uv": [5.29688, 6.29688, 5.125, 6.125], "texture": "#1"}, - "down": {"uv": [6.29688, 5.125, 6.125, 5.29688], "texture": "#1"} - } - }, - { - "from": [7.38428, 5.43695, 14.47238], - "to": [8.80428, 8.41495, 15.78238], - "rotation": {"angle": 0, "axis": "y", "origin": [8.09428, 7.17595, 15.30238]}, - "faces": { - "north": {"uv": [1.5, 1.75, 1.67188, 2.125], "texture": "#1"}, - "east": {"uv": [3.375, 5.5, 3.53125, 5.875], "texture": "#1"}, - "south": {"uv": [5.375, 2.375, 5.54688, 2.75], "texture": "#1"}, - "west": {"uv": [4.25, 5.5, 4.40625, 5.875], "texture": "#1"}, - "up": {"uv": [6.54688, 1.28125, 6.375, 1.125], "texture": "#1"}, - "down": {"uv": [1.42188, 6.375, 1.25, 6.53125], "texture": "#1"} - } - }, - { - "from": [7.53428, 6.5988, 15.88488], - "to": [8.65428, 7.6768, 16.29488], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8.09428, 7.3878, 16.18988]}, - "faces": { - "north": {"uv": [4.375, 6.75, 4.51563, 6.89063], "texture": "#1"}, - "east": {"uv": [3.5, 7.5, 3.54688, 7.64063], "texture": "#1"}, - "south": {"uv": [6.75, 6.25, 6.89063, 6.39063], "texture": "#1"}, - "west": {"uv": [5.125, 7.5, 5.17188, 7.64063], "texture": "#1"}, - "up": {"uv": [6.14063, 7.54688, 6, 7.5], "texture": "#1"}, - "down": {"uv": [7.64063, 6, 7.5, 6.04688], "texture": "#1"} - } - }, - { - "from": [7.53428, 7.3988, 16.13488], - "to": [8.65428, 7.8768, 16.29488], - "rotation": {"angle": 45, "axis": "x", "origin": [8.09428, 7.3878, 16.18988]}, - "faces": { - "north": {"uv": [5.75, 7.375, 5.89063, 7.4375], "texture": "#1"}, - "east": {"uv": [4.75, 8.5, 4.76563, 8.5625], "texture": "#1"}, - "south": {"uv": [6, 7.375, 6.14063, 7.4375], "texture": "#1"}, - "west": {"uv": [8.5, 4.75, 8.51563, 4.8125], "texture": "#1"}, - "up": {"uv": [6.14063, 8.14063, 6, 8.125], "texture": "#1"}, - "down": {"uv": [8.26563, 6, 8.125, 6.01563], "texture": "#1"} - } - }, - { - "from": [7.88228, 5.60002, 11.74728], - "to": [8.31428, 6.44802, 11.95528], - "rotation": {"angle": 0, "axis": "y", "origin": [7.36212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.625, 7.625, 2.67188, 7.73438], "texture": "#1"}, - "east": {"uv": [7.75, 5.75, 7.78125, 5.85938], "texture": "#1"}, - "south": {"uv": [2.75, 7.625, 2.79688, 7.73438], "texture": "#1"}, - "west": {"uv": [5.875, 7.75, 5.90625, 7.85938], "texture": "#1"}, - "up": {"uv": [1.54688, 8.28125, 1.5, 8.25], "texture": "#1"}, - "down": {"uv": [8.29688, 1.5, 8.25, 1.53125], "texture": "#1"} - } - }, - { - "from": [7.88228, 6.20002, 11.64728], - "to": [8.31428, 6.84802, 11.85528], - "rotation": {"angle": 45, "axis": "x", "origin": [8.09828, 6.12402, 11.85128]}, - "faces": { - "north": {"uv": [7.75, 3.75, 7.79688, 3.82813], "texture": "#1"}, - "east": {"uv": [5.25, 8.125, 5.28125, 8.20313], "texture": "#1"}, - "south": {"uv": [7.75, 4, 7.79688, 4.07813], "texture": "#1"}, - "west": {"uv": [8.125, 5.25, 8.15625, 5.32813], "texture": "#1"}, - "up": {"uv": [1.67188, 8.28125, 1.625, 8.25], "texture": "#1"}, - "down": {"uv": [8.29688, 1.625, 8.25, 1.65625], "texture": "#1"} - } - }, - { - "from": [7.89028, 8.77401, 13.33658], - "to": [8.30628, 9.41401, 13.54458], - "rotation": {"angle": 22.5, "axis": "x", "origin": [7.36212, 8.58352, 6.38536]}, - "faces": { - "north": {"uv": [7.75, 4.125, 7.79688, 4.20313], "texture": "#1"}, - "east": {"uv": [5.375, 8.125, 5.40625, 8.20313], "texture": "#1"}, - "south": {"uv": [4.25, 7.75, 4.29688, 7.82813], "texture": "#1"}, - "west": {"uv": [8.125, 5.375, 8.15625, 5.45313], "texture": "#1"}, - "up": {"uv": [1.79688, 8.28125, 1.75, 8.25], "texture": "#1"}, - "down": {"uv": [1.92188, 8.25, 1.875, 8.28125], "texture": "#1"} - } - }, - { - "from": [7.94028, 10.85123, 12.71871], - "to": [8.25628, 11.49923, 12.92671], - "rotation": {"angle": 45, "axis": "x", "origin": [7.36212, 8.58352, 6.38536]}, - "faces": { - "north": {"uv": [4.375, 7.75, 4.42188, 7.82813], "texture": "#1"}, - "east": {"uv": [5.5, 8.125, 5.53125, 8.20313], "texture": "#1"}, - "south": {"uv": [4.5, 7.75, 4.54688, 7.82813], "texture": "#1"}, - "west": {"uv": [8.125, 5.5, 8.15625, 5.57813], "texture": "#1"}, - "up": {"uv": [2.04688, 8.28125, 2, 8.25], "texture": "#1"}, - "down": {"uv": [8.29688, 2.125, 8.25, 2.15625], "texture": "#1"} - } - }, - { - "from": [7.88228, 2.07583, 8.16716], - "to": [8.31428, 2.72383, 8.37516], - "rotation": {"angle": -45, "axis": "x", "origin": [7.36212, 8.48351, 6.48535]}, - "faces": { - "north": {"uv": [4.625, 7.75, 4.67188, 7.82813], "texture": "#1"}, - "east": {"uv": [5.625, 8.125, 5.65625, 8.20313], "texture": "#1"}, - "south": {"uv": [4.75, 7.75, 4.79688, 7.82813], "texture": "#1"}, - "west": {"uv": [8.125, 5.625, 8.15625, 5.70313], "texture": "#1"}, - "up": {"uv": [8.29688, 2.28125, 8.25, 2.25], "texture": "#1"}, - "down": {"uv": [2.54688, 8.25, 2.5, 8.28125], "texture": "#1"} - } - }, - { - "from": [7.88228, 5.14181, 12.20549], - "to": [8.31428, 5.34981, 14.47349], - "rotation": {"angle": 0, "axis": "y", "origin": [7.36212, 8.48351, 6.48536]}, - "faces": { - "north": {"uv": [2.625, 8.25, 2.67188, 8.28125], "texture": "#1"}, - "east": {"uv": [7.375, 6.5, 7.65625, 6.53125], "texture": "#1"}, - "south": {"uv": [8.25, 2.75, 8.29688, 2.78125], "texture": "#1"}, - "west": {"uv": [7.375, 6.75, 7.65625, 6.78125], "texture": "#1"}, - "up": {"uv": [4.42188, 7.40625, 4.375, 7.125], "texture": "#1"}, - "down": {"uv": [4.54688, 7.125, 4.5, 7.40625], "texture": "#1"} - } - }, - { - "from": [7.56628, 6.96182, 17.82148], - "to": [7.67428, 7.06982, 18.79348], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.875, 1.375, 8.89063, 1.39063], "texture": "#1"}, - "east": {"uv": [8.125, 6.5, 8.25, 6.51563], "texture": "#1"}, - "south": {"uv": [1.5, 8.875, 1.51563, 8.89063], "texture": "#1"}, - "west": {"uv": [6.625, 8.125, 6.75, 8.14063], "texture": "#1"}, - "up": {"uv": [8.14063, 6.75, 8.125, 6.625], "texture": "#1"}, - "down": {"uv": [6.76563, 8.125, 6.75, 8.25], "texture": "#1"} - } - }, - { - "from": [7.56628, 15.48194, 14.74664], - "to": [7.67428, 15.58994, 15.71864], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.875, 1.5, 8.89063, 1.51563], "texture": "#1"}, - "east": {"uv": [8.125, 6.75, 8.25, 6.76563], "texture": "#1"}, - "south": {"uv": [1.625, 8.875, 1.64063, 8.89063], "texture": "#1"}, - "west": {"uv": [6.875, 8.125, 7, 8.14063], "texture": "#1"}, - "up": {"uv": [8.14063, 7, 8.125, 6.875], "texture": "#1"}, - "down": {"uv": [7.01563, 8.125, 7, 8.25], "texture": "#1"} - } - }, - { - "from": [8.21428, 7.17782, 17.82148], - "to": [8.32228, 7.28582, 18.79348], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.875, 1.625, 8.89063, 1.64063], "texture": "#1"}, - "east": {"uv": [8.125, 7, 8.25, 7.01563], "texture": "#1"}, - "south": {"uv": [1.75, 8.875, 1.76563, 8.89063], "texture": "#1"}, - "west": {"uv": [7.125, 8.125, 7.25, 8.14063], "texture": "#1"}, - "up": {"uv": [8.14063, 7.25, 8.125, 7.125], "texture": "#1"}, - "down": {"uv": [7.26563, 8.125, 7.25, 8.25], "texture": "#1"} - } - }, - { - "from": [8.21428, 15.63468, 14.5939], - "to": [8.32228, 15.74268, 15.5659], - "rotation": {"angle": 45, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.875, 1.75, 8.89063, 1.76563], "texture": "#1"}, - "east": {"uv": [8.125, 7.25, 8.25, 7.26563], "texture": "#1"}, - "south": {"uv": [1.875, 8.875, 1.89063, 8.89063], "texture": "#1"}, - "west": {"uv": [7.375, 8.125, 7.5, 8.14063], "texture": "#1"}, - "up": {"uv": [8.14063, 7.5, 8.125, 7.375], "texture": "#1"}, - "down": {"uv": [7.51563, 8.125, 7.5, 8.25], "texture": "#1"} - } - }, - { - "from": [8.43028, 7.29732, 11.36117], - "to": [9.61828, 9.56532, 15.57317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.125, 5.75, 5.28125, 6.03125], "texture": "#1"}, - "east": {"uv": [3.5, 4, 4.03125, 4.28125], "texture": "#1"}, - "south": {"uv": [0.25, 5.875, 0.40625, 6.15625], "texture": "#1"}, - "west": {"uv": [4.125, 0.25, 4.65625, 0.53125], "texture": "#1"}, - "up": {"uv": [5.40625, 1.03125, 5.25, 0.5], "texture": "#1"}, - "down": {"uv": [1.03125, 5.25, 0.875, 5.78125], "texture": "#1"} - } - }, - { - "from": [7.35028, 6.54132, 10.17317], - "to": [8.86228, 7.62132, 14.24517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [1.75, 6.375, 1.9375, 6.51563], "texture": "#1"}, - "east": {"uv": [5.375, 1.875, 5.89063, 2.01563], "texture": "#1"}, - "south": {"uv": [6.375, 2.25, 6.5625, 2.39063], "texture": "#1"}, - "west": {"uv": [5.375, 2.125, 5.89063, 2.26563], "texture": "#1"}, - "up": {"uv": [0.4375, 5.26563, 0.25, 4.75], "texture": "#1"}, - "down": {"uv": [4.9375, 2.375, 4.75, 2.89063], "texture": "#1"} - } - }, - { - "from": [7.35028, 7.62132, 10.17317], - "to": [8.86228, 9.56532, 22.37717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.5, 2.625, 0.6875, 2.875], "texture": "#1"}, - "east": {"uv": [1.25, 0, 2.78125, 0.25], "texture": "#1"}, - "south": {"uv": [4.625, 5.5, 4.8125, 5.75], "texture": "#1"}, - "west": {"uv": [1.25, 0.25, 2.78125, 0.5], "texture": "#1"}, - "up": {"uv": [1.9375, 2.03125, 1.75, 0.5], "texture": "#1"}, - "down": {"uv": [1.4375, 1.75, 1.25, 3.28125], "texture": "#1"} - } - }, - { - "from": [7.45828, 5.78532, 18.48917], - "to": [8.75428, 7.72932, 22.26917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [4.875, 5.875, 5.03125, 6.125], "texture": "#1"}, - "east": {"uv": [4.5, 0.625, 4.96875, 0.875], "texture": "#1"}, - "south": {"uv": [5.875, 5.125, 6.03125, 5.375], "texture": "#1"}, - "west": {"uv": [4.5, 0.875, 4.96875, 1.125], "texture": "#1"}, - "up": {"uv": [0.40625, 5.84375, 0.25, 5.375], "texture": "#1"}, - "down": {"uv": [5.53125, 1.125, 5.375, 1.59375], "texture": "#1"} - } - }, - { - "from": [7.13428, 8.05332, 13.08917], - "to": [9.07828, 9.56532, 22.37717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5.125, 5.5, 5.375, 5.6875], "texture": "#1"}, - "east": {"uv": [2.375, 1.625, 3.53125, 1.8125], "texture": "#1"}, - "south": {"uv": [5.625, 1.125, 5.875, 1.3125], "texture": "#1"}, - "west": {"uv": [2.375, 1.875, 3.53125, 2.0625], "texture": "#1"}, - "up": {"uv": [1.5, 1.65625, 1.25, 0.5], "texture": "#1"}, - "down": {"uv": [1.75, 0.5, 1.5, 1.65625], "texture": "#1"} - } - }, - { - "from": [7.13428, 6.43332, 11.46917], - "to": [10.05028, 9.78132, 12.11717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.875, 3.875, 1.23438, 4.29688], "texture": "#1"}, - "east": {"uv": [3, 6, 3.07813, 6.42188], "texture": "#1"}, - "south": {"uv": [3.125, 4, 3.48438, 4.42188], "texture": "#1"}, - "west": {"uv": [3.625, 6, 3.70313, 6.42188], "texture": "#1"}, - "up": {"uv": [6.73438, 0.57813, 6.375, 0.5], "texture": "#1"}, - "down": {"uv": [6.73438, 0.625, 6.375, 0.70313], "texture": "#1"} - } - }, - { - "from": [6.91828, 7.83732, 13.73717], - "to": [7.45828, 9.56532, 15.35717], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [7.125, 1.125, 7.1875, 1.34375], "texture": "#1"}, - "east": {"uv": [5.625, 1.375, 5.82813, 1.59375], "texture": "#1"}, - "south": {"uv": [1.375, 7.125, 1.4375, 7.34375], "texture": "#1"}, - "west": {"uv": [5.625, 3.625, 5.82813, 3.84375], "texture": "#1"}, - "up": {"uv": [6.4375, 7.32813, 6.375, 7.125], "texture": "#1"}, - "down": {"uv": [6.5625, 7.125, 6.5, 7.32813], "texture": "#1"} - } - }, - { - "from": [6.81028, 5.67732, 18.59717], - "to": [9.18628, 10.75332, 19.24517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [3.125, 3.25, 3.42188, 3.89063], "texture": "#1"}, - "east": {"uv": [0.75, 5.5, 0.82813, 6.14063], "texture": "#1"}, - "south": {"uv": [0.125, 3.375, 0.42188, 4.01563], "texture": "#1"}, - "west": {"uv": [4.5, 5.5, 4.57813, 6.14063], "texture": "#1"}, - "up": {"uv": [7.04688, 0.57813, 6.75, 0.5], "texture": "#1"}, - "down": {"uv": [7.04688, 0.625, 6.75, 0.70313], "texture": "#1"} - } - }, - { - "from": [7.24228, 10.64532, 19.46117], - "to": [7.89028, 10.77732, 20.10917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 4.25, 8.32813, 4.26563], "texture": "#1"}, - "east": {"uv": [4.375, 8.25, 4.45313, 8.26563], "texture": "#1"}, - "south": {"uv": [8.25, 4.375, 8.32813, 4.39063], "texture": "#1"}, - "west": {"uv": [4.5, 8.25, 4.57813, 8.26563], "texture": "#1"}, - "up": {"uv": [7.20313, 7.57813, 7.125, 7.5], "texture": "#1"}, - "down": {"uv": [7.57813, 7.125, 7.5, 7.20313], "texture": "#1"} - } - }, - { - "from": [8.21428, 10.64532, 19.46117], - "to": [8.86228, 10.77732, 20.10917], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 4.5, 8.32813, 4.51563], "texture": "#1"}, - "east": {"uv": [4.625, 8.25, 4.70313, 8.26563], "texture": "#1"}, - "south": {"uv": [8.25, 4.625, 8.32813, 4.64063], "texture": "#1"}, - "west": {"uv": [4.75, 8.25, 4.82813, 8.26563], "texture": "#1"}, - "up": {"uv": [7.32813, 7.57813, 7.25, 7.5], "texture": "#1"}, - "down": {"uv": [7.57813, 7.25, 7.5, 7.32813], "texture": "#1"} - } - }, - { - "from": [6.91828, 5.67732, 21.40517], - "to": [9.29428, 9.67332, 22.05317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [2.25, 4.125, 2.54688, 4.625], "texture": "#1"}, - "east": {"uv": [5.375, 5.875, 5.45313, 6.375], "texture": "#1"}, - "south": {"uv": [2.625, 4.125, 2.92188, 4.625], "texture": "#1"}, - "west": {"uv": [5.875, 5.375, 5.95313, 5.875], "texture": "#1"}, - "up": {"uv": [7.04688, 1.20313, 6.75, 1.125], "texture": "#1"}, - "down": {"uv": [7.04688, 1.25, 6.75, 1.32813], "texture": "#1"} - } - }, - { - "from": [8.86228, 7.94532, 14.27717], - "to": [9.72628, 9.78132, 14.92517], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [6.375, 3.625, 6.48438, 3.85938], "texture": "#1"}, - "east": {"uv": [5.125, 6.625, 5.20313, 6.85938], "texture": "#1"}, - "south": {"uv": [5.125, 6.375, 5.23438, 6.60938], "texture": "#1"}, - "west": {"uv": [4.625, 6.75, 4.70313, 6.98438], "texture": "#1"}, - "up": {"uv": [6.60938, 7.45313, 6.5, 7.375], "texture": "#1"}, - "down": {"uv": [7.48438, 7, 7.375, 7.07813], "texture": "#1"} - } - }, - { - "from": [6.79541, 7.07303, 12.22517], - "to": [9.06341, 9.55703, 12.87317], - "rotation": {"angle": 22.5, "axis": "z", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [5, 2.375, 5.28125, 2.6875], "texture": "#1"}, - "east": {"uv": [1.125, 6.625, 1.20313, 6.9375], "texture": "#1"}, - "south": {"uv": [5, 3.25, 5.28125, 3.5625], "texture": "#1"}, - "west": {"uv": [6.625, 1.125, 6.70313, 1.4375], "texture": "#1"}, - "up": {"uv": [7.03125, 1.95313, 6.75, 1.875], "texture": "#1"}, - "down": {"uv": [7.03125, 2, 6.75, 2.07813], "texture": "#1"} - } - }, - { - "from": [6.91828, 6.32532, 22.37717], - "to": [9.07828, 10.78532, 25.40117], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.125, 4.125, 0.39063, 4.6875], "texture": "#1"}, - "east": {"uv": [1.5, 3, 1.875, 3.5625], "texture": "#1"}, - "south": {"uv": [4.125, 0.625, 4.39063, 1.1875], "texture": "#1"}, - "west": {"uv": [1.875, 3, 2.25, 3.5625], "texture": "#1"}, - "up": {"uv": [5.01563, 0.625, 4.75, 0.25], "texture": "#1"}, - "down": {"uv": [5.01563, 1.5, 4.75, 1.875], "texture": "#1"} - } - }, - { - "from": [6.00445, 10.26914, 22.37717], - "to": [6.16445, 10.82914, 25.40117], - "rotation": {"angle": -45, "axis": "z", "origin": [7.08445, 9.42414, 23.88917]}, - "faces": { - "north": {"uv": [4.875, 8.5, 4.89063, 8.5625], "texture": "#1"}, - "east": {"uv": [4.125, 6.625, 4.5, 6.6875], "texture": "#1"}, - "south": {"uv": [8.5, 4.875, 8.51563, 4.9375], "texture": "#1"}, - "west": {"uv": [6.625, 4.5, 7, 4.5625], "texture": "#1"}, - "up": {"uv": [7.64063, 1.5, 7.625, 1.125], "texture": "#1"}, - "down": {"uv": [1.26563, 7.625, 1.25, 8], "texture": "#1"} - } - }, - { - "from": [6.0448, 12.81381, 22.37717], - "to": [6.6048, 12.97381, 25.40117], - "rotation": {"angle": -45, "axis": "z", "origin": [5.1998, 8.89381, 23.88917]}, - "faces": { - "north": {"uv": [5, 8.5, 5.0625, 8.51563], "texture": "#1"}, - "east": {"uv": [7.625, 1.5, 8, 1.51563], "texture": "#1"}, - "south": {"uv": [8.5, 5, 8.5625, 5.01563], "texture": "#1"}, - "west": {"uv": [7.625, 1.625, 8, 1.64063], "texture": "#1"}, - "up": {"uv": [2.6875, 7, 2.625, 6.625], "texture": "#1"}, - "down": {"uv": [2.8125, 6.625, 2.75, 7], "texture": "#1"} - } - }, - { - "from": [7.35828, 4.70532, 23.02517], - "to": [8.64628, 9.56532, 24.64517], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 6.53126, 24.27836]}, - "faces": { - "north": {"uv": [4.75, 3.25, 4.90625, 3.85938], "texture": "#1"}, - "east": {"uv": [2, 4.375, 2.20313, 4.98438], "texture": "#1"}, - "south": {"uv": [4.875, 4.5, 5.03125, 5.10938], "texture": "#1"}, - "west": {"uv": [3.5, 4.375, 3.70313, 4.98438], "texture": "#1"}, - "up": {"uv": [6.15625, 5.82813, 6, 5.625], "texture": "#1"}, - "down": {"uv": [6.15625, 5.875, 6, 6.07813], "texture": "#1"} - } - }, - { - "from": [7.10828, 5.4995, 24.20887], - "to": [8.89628, 7.0855, 25.82887], - "rotation": {"angle": 45, "axis": "x", "origin": [8.05228, 6.53126, 24.27836]}, - "faces": { - "north": {"uv": [3.875, 5.625, 4.09375, 5.82813], "texture": "#1"}, - "east": {"uv": [5.875, 2.875, 6.07813, 3.07813], "texture": "#1"}, - "south": {"uv": [5.625, 4.25, 5.84375, 4.45313], "texture": "#1"}, - "west": {"uv": [5.875, 3.625, 6.07813, 3.82813], "texture": "#1"}, - "up": {"uv": [5.09375, 5.82813, 4.875, 5.625], "texture": "#1"}, - "down": {"uv": [5.84375, 5.125, 5.625, 5.32813], "texture": "#1"} - } - }, - { - "from": [7.10828, 5.82679, 24.14664], - "to": [8.89628, 6.91279, 25.76664], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 6.85855, 24.21613]}, - "faces": { - "north": {"uv": [6.125, 1.125, 6.34375, 1.26563], "texture": "#1"}, - "east": {"uv": [0, 6.25, 0.20313, 6.39063], "texture": "#1"}, - "south": {"uv": [1.25, 6.125, 1.46875, 6.26563], "texture": "#1"}, - "west": {"uv": [0.25, 6.25, 0.45313, 6.39063], "texture": "#1"}, - "up": {"uv": [5.59375, 5.82813, 5.375, 5.625], "texture": "#1"}, - "down": {"uv": [5.84375, 5.375, 5.625, 5.57813], "texture": "#1"} - } - }, - { - "from": [7.10828, 8.47679, 25.39664], - "to": [8.89628, 9.06279, 25.76664], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 6.75855, 24.21613]}, - "faces": { - "north": {"uv": [7, 6.25, 7.21875, 6.32813], "texture": "#1"}, - "east": {"uv": [4.875, 7.75, 4.92188, 7.82813], "texture": "#1"}, - "south": {"uv": [7, 6.375, 7.21875, 6.45313], "texture": "#1"}, - "west": {"uv": [5, 7.75, 5.04688, 7.82813], "texture": "#1"}, - "up": {"uv": [3.09375, 7.29688, 2.875, 7.25], "texture": "#1"}, - "down": {"uv": [7.46875, 4, 7.25, 4.04688], "texture": "#1"} - } - }, - { - "from": [7.10828, 6.2409, 23.86983], - "to": [8.89628, 7.3269, 25.48983], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8.05228, 7.27265, 23.93932]}, - "faces": { - "north": {"uv": [6.125, 1.375, 6.34375, 1.51563], "texture": "#1"}, - "east": {"uv": [0.5, 6.25, 0.70313, 6.39063], "texture": "#1"}, - "south": {"uv": [1.5, 6.125, 1.71875, 6.26563], "texture": "#1"}, - "west": {"uv": [4.375, 6.25, 4.57813, 6.39063], "texture": "#1"}, - "up": {"uv": [5.84375, 5.82813, 5.625, 5.625], "texture": "#1"}, - "down": {"uv": [0.21875, 5.75, 0, 5.95313], "texture": "#1"} - } - }, - { - "from": [7.10828, 7.7421, 24.00051], - "to": [8.89628, 8.8281, 25.62051], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8.00228, 8.2851, 24.81051]}, - "faces": { - "north": {"uv": [1.75, 6.125, 1.96875, 6.26563], "texture": "#1"}, - "east": {"uv": [4.625, 6.25, 4.82813, 6.39063], "texture": "#1"}, - "south": {"uv": [6.125, 2.25, 6.34375, 2.39063], "texture": "#1"}, - "west": {"uv": [6.25, 5.375, 6.45313, 5.51563], "texture": "#1"}, - "up": {"uv": [0.71875, 5.95313, 0.5, 5.75], "texture": "#1"}, - "down": {"uv": [5.96875, 0.5, 5.75, 0.70313], "texture": "#1"} - } - }, - { - "from": [7.10828, 7.2409, 23.96983], - "to": [8.89628, 8.0769, 25.58983], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 7.27265, 23.93932]}, - "faces": { - "north": {"uv": [1.5, 6.625, 1.71875, 6.73438], "texture": "#1"}, - "east": {"uv": [4.5, 6.625, 4.70313, 6.73438], "texture": "#1"}, - "south": {"uv": [6.625, 1.5, 6.84375, 1.60938], "texture": "#1"}, - "west": {"uv": [6.75, 1.375, 6.95313, 1.48438], "texture": "#1"}, - "up": {"uv": [5.96875, 0.95313, 5.75, 0.75], "texture": "#1"}, - "down": {"uv": [1.59375, 5.75, 1.375, 5.95313], "texture": "#1"} - } - }, - { - "from": [7.10828, 10.42679, 25.39664], - "to": [8.89628, 10.91279, 25.76664], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 8.70855, 24.21613]}, - "faces": { - "north": {"uv": [7.125, 0.625, 7.34375, 0.6875], "texture": "#1"}, - "east": {"uv": [8.125, 1.5, 8.17188, 1.5625], "texture": "#1"}, - "south": {"uv": [1.5, 7.125, 1.71875, 7.1875], "texture": "#1"}, - "west": {"uv": [1.625, 8.125, 1.67188, 8.1875], "texture": "#1"}, - "up": {"uv": [7.46875, 4.17188, 7.25, 4.125], "texture": "#1"}, - "down": {"uv": [5.09375, 7.25, 4.875, 7.29688], "texture": "#1"} - } - }, - { - "from": [7.10828, 10.7108, 25.279], - "to": [8.89628, 11.1968, 25.649], - "rotation": {"angle": -45, "axis": "x", "origin": [8.00228, 10.9538, 25.464]}, - "faces": { - "north": {"uv": [1.75, 7.125, 1.96875, 7.1875], "texture": "#1"}, - "east": {"uv": [8.125, 1.625, 8.17188, 1.6875], "texture": "#1"}, - "south": {"uv": [7.125, 1.75, 7.34375, 1.8125], "texture": "#1"}, - "west": {"uv": [1.75, 8.125, 1.79688, 8.1875], "texture": "#1"}, - "up": {"uv": [7.46875, 5.17188, 7.25, 5.125], "texture": "#1"}, - "down": {"uv": [5.46875, 7.25, 5.25, 7.29688], "texture": "#1"} - } - }, - { - "from": [7.10828, 10.58645, 22.23699], - "to": [8.89628, 11.25645, 25.42299], - "rotation": {"angle": 0, "axis": "y", "origin": [8.00228, 11.07145, 25.17999]}, - "faces": { - "north": {"uv": [6.5, 7, 6.71875, 7.07813], "texture": "#1"}, - "east": {"uv": [4.5, 1.125, 4.89063, 1.20313], "texture": "#1"}, - "south": {"uv": [7, 6.625, 7.21875, 6.70313], "texture": "#1"}, - "west": {"uv": [6, 4.25, 6.39063, 4.32813], "texture": "#1"}, - "up": {"uv": [4.09375, 5.51563, 3.875, 5.125], "texture": "#1"}, - "down": {"uv": [5.34375, 4.5, 5.125, 4.89063], "texture": "#1"} - } - }, - { - "from": [7.10828, 9.6921, 25.00051], - "to": [8.89628, 10.7781, 25.62051], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8.00228, 10.2351, 24.81051]}, - "faces": { - "north": {"uv": [6.125, 2.5, 6.34375, 2.64063], "texture": "#1"}, - "east": {"uv": [2, 7.25, 2.07813, 7.39063], "texture": "#1"}, - "south": {"uv": [6.125, 2.75, 6.34375, 2.89063], "texture": "#1"}, - "west": {"uv": [2.125, 7.25, 2.20313, 7.39063], "texture": "#1"}, - "up": {"uv": [6.96875, 7.07813, 6.75, 7], "texture": "#1"}, - "down": {"uv": [7.21875, 6.875, 7, 6.95313], "texture": "#1"} - } - }, - { - "from": [7.10828, 9.1909, 23.96983], - "to": [8.89628, 10.0269, 25.58983], - "rotation": {"angle": 0, "axis": "y", "origin": [8.05228, 9.22265, 23.93932]}, - "faces": { - "north": {"uv": [6.625, 1.625, 6.84375, 1.73438], "texture": "#1"}, - "east": {"uv": [1.5, 6.75, 1.70313, 6.85938], "texture": "#1"}, - "south": {"uv": [1.75, 6.625, 1.96875, 6.73438], "texture": "#1"}, - "west": {"uv": [1.75, 6.75, 1.95313, 6.85938], "texture": "#1"}, - "up": {"uv": [1.84375, 5.95313, 1.625, 5.75], "texture": "#1"}, - "down": {"uv": [2.46875, 5.75, 2.25, 5.95313], "texture": "#1"} - } - }, - { - "from": [7.10828, 8.3909, 23.86983], - "to": [8.89628, 9.4769, 25.48983], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8.05228, 9.42265, 23.93932]}, - "faces": { - "north": {"uv": [6.125, 3.625, 6.34375, 3.76563], "texture": "#1"}, - "east": {"uv": [6.25, 5.625, 6.45313, 5.76563], "texture": "#1"}, - "south": {"uv": [4.875, 6.125, 5.09375, 6.26563], "texture": "#1"}, - "west": {"uv": [6.25, 5.875, 6.45313, 6.01563], "texture": "#1"}, - "up": {"uv": [2.71875, 5.95313, 2.5, 5.75], "texture": "#1"}, - "down": {"uv": [4.84375, 5.75, 4.625, 5.95313], "texture": "#1"} - } - }, - { - "from": [7.13428, 10.10532, 19.24517], - "to": [8.97028, 10.71932, 25.29317], - "rotation": {"angle": 0, "axis": "y", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [0.875, 6.875, 1.10938, 6.95313], "texture": "#1"}, - "east": {"uv": [5.5, 3.875, 6.25, 3.95313], "texture": "#1"}, - "south": {"uv": [2.125, 6.875, 2.35938, 6.95313], "texture": "#1"}, - "west": {"uv": [5.5, 4.5, 6.25, 4.57813], "texture": "#1"}, - "up": {"uv": [3.73438, 4, 3.5, 3.25], "texture": "#1"}, - "down": {"uv": [0.73438, 3.625, 0.5, 4.375], "texture": "#1"} - } - }, - { - "from": [7.67428, -1.3718, 13.73401], - "to": [8.43028, -1.3178, 20.75401], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.26212, 8.68352, 6.48536]}, - "faces": { - "north": {"uv": [8.25, 2.875, 8.34375, 2.89063], "texture": "#1"}, - "east": {"uv": [7.125, 1.875, 8, 1.89063], "texture": "#1"}, - "south": {"uv": [8.25, 3, 8.34375, 3.01563], "texture": "#1"}, - "west": {"uv": [7.125, 2, 8, 2.01563], "texture": "#1"}, - "up": {"uv": [1.21875, 6, 1.125, 5.125], "texture": "#1"}, - "down": {"uv": [1.34375, 5.25, 1.25, 6.125], "texture": "#1"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "translation": [0, 1, -2.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [0, 1, -2.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "translation": [-3.5, 3.75, -0.5] - }, - "firstperson_lefthand": { - "translation": [-3.5, 3.75, -0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.9, 0.9, 0.9] - }, - "gui": { - "rotation": [90, -45, 90], - "translation": [1, 0.75, -0.75], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [90, 45, -67], - "translation": [-1.75, -12, 6.25] - }, - "fixed": { - "rotation": [90, 45, -90], - "translation": [-2.5, 2, -0.75], - "scale": [0.8, 0.8, 0.8] - } - }, - "groups": [ - { - "name": "main", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "children": [ - { - "name": "tiba", - "origin": [4.06235, 7.25259, 9.13484], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18] - }, - { - "name": "dangu", - "origin": [7.26212, 8.68352, 6.48536], - "color": 0, - "nbt": "{}", - "children": [ - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - { - "name": "ammo", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "children": [ - { - "name": "group", - "origin": [8, 7.1, 8], - "color": 0, - "nbt": "{}", - "children": [27, 28, 29, 30, 31, 32, 33] - }, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42 - ] - } - ] - }, - { - "name": "body", - "origin": [8, 8, -0.45], - "color": 0, - "nbt": "{}", - "children": [ - { - "name": "group", - "origin": [-0.58547, -0.26268, -0.51883], - "color": 0, - "nbt": "{}", - "children": [43, 44, 45, 46, 47, 48, 49, 50] - }, - { - "name": "group", - "origin": [0, 0.4, 0], - "color": 0, - "nbt": "{}", - "children": [51, 52, 53, 54, 55, 56, 57, 58] - }, - { - "name": "group", - "origin": [7.26212, 8.75302, 6.48536], - "color": 0, - "nbt": "{}", - "children": [ - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166 - ] - }, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - { - "name": "group", - "origin": [5.65, 9.45, -0.45], - "color": 0, - "nbt": "{}", - "children": [206, 207, 208, 209, 210, 211, 212, 213, 214, 215] - }, - 216, - { - "name": "group", - "origin": [8, 8, -0.45], - "color": 0, - "nbt": "{}", - "children": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234] - }, - { - "name": "group", - "origin": [7.40428, 6.90975, 13.05043], - "color": 0, - "nbt": "{}", - "children": [235, 236, 237, 238, 239, 240, 241, 242] - } - ] - }, - { - "name": "banji", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "children": [ - { - "name": "group", - "origin": [7.40428, 6.90975, 13.05043], - "color": 0, - "nbt": "{}", - "children": [243, 244, 245, 246, 247, 248, 249, 250] - }, - { - "name": "group", - "origin": [7.40428, 6.90975, 13.05043], - "color": 0, - "nbt": "{}", - "children": [] - }, - 251, - 252, - 253, - { - "name": "group", - "origin": [8.09428, 4.01182, 14.86771], - "color": 0, - "nbt": "{}", - "children": [254, 255] - }, - { - "name": "group", - "origin": [8.09428, 4.01182, 14.86771], - "color": 0, - "nbt": "{}", - "children": [256, 257, 258, 259, 260, 261] - }, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289 - ] - }, - { - "name": "tuo", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "children": [290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/lod/sentinel.json b/src/main/resources/assets/superbwarfare/models/lod/sentinel.json deleted file mode 100644 index a0b50d9cf..000000000 --- a/src/main/resources/assets/superbwarfare/models/lod/sentinel.json +++ /dev/null @@ -1,240 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "superbwarfare:item/lod/sentinel", - "particle": "superbwarfare:item/lod/sentinel" - }, - "elements": [ - { - "from": [7.75, 6, -13], - "to": [8.5, 7, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1]}, - "faces": { - "north": {"uv": [6.5, 2.5, 6.75, 2.75], "texture": "#0"}, - "east": {"uv": [5.5, 3.25, 8.5, 3.5], "texture": "#0"}, - "south": {"uv": [3.75, 6.75, 4, 7], "texture": "#0"}, - "west": {"uv": [5.5, 3.5, 8.5, 3.75], "texture": "#0"}, - "up": {"uv": [5.75, 6.75, 5.5, 3.75], "texture": "#0"}, - "down": {"uv": [6, 3.75, 5.75, 6.75], "texture": "#0"} - } - }, - { - "from": [9, 6.5, 21.25], - "to": [10.75, 7.5, 22.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [5, 2.75, 5.5, 3], "texture": "#0"}, - "east": {"uv": [6.5, 7.5, 6.75, 7.75], "texture": "#0"}, - "south": {"uv": [7.5, 2, 8, 2.25], "texture": "#0"}, - "west": {"uv": [7.5, 6.5, 7.75, 6.75], "texture": "#0"}, - "up": {"uv": [8, 2.75, 7.5, 2.5], "texture": "#0"}, - "down": {"uv": [8, 2.75, 7.5, 3], "texture": "#0"} - } - }, - { - "from": [7.25, 5.5, -4.5], - "to": [9, 7.5, 29.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [4.5, 2.5, 5, 3], "texture": "#0"}, - "east": {"uv": [0, 0, 8.5, 0.5], "texture": "#0"}, - "south": {"uv": [7, 3.75, 7.5, 4.25], "texture": "#0"}, - "west": {"uv": [0, 0.5, 8.5, 1], "texture": "#0"}, - "up": {"uv": [0.5, 9.5, 0, 1], "texture": "#0"}, - "down": {"uv": [1, 1, 0.5, 9.5], "texture": "#0"} - } - }, - { - "from": [7.05, 6.75, 24.25], - "to": [9.2, 7.75, 28.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [7.5, 3.75, 8, 4], "texture": "#0"}, - "east": {"uv": [4.25, 7, 5.25, 7.25], "texture": "#0"}, - "south": {"uv": [7.5, 4, 8, 4.25], "texture": "#0"}, - "west": {"uv": [7, 4.25, 8, 4.5], "texture": "#0"}, - "up": {"uv": [1.5, 7.5, 1, 6.5], "texture": "#0"}, - "down": {"uv": [2, 6.5, 1.5, 7.5], "texture": "#0"} - } - }, - { - "from": [7.25, 7.5, 7.25], - "to": [9, 8, 21.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [7.5, 4.5, 8, 4.75], "texture": "#0"}, - "east": {"uv": [3.75, 1, 7.25, 1.25], "texture": "#0"}, - "south": {"uv": [7.5, 4.75, 8, 5], "texture": "#0"}, - "west": {"uv": [3.75, 1.25, 7.25, 1.5], "texture": "#0"}, - "up": {"uv": [1.5, 6.5, 1, 3], "texture": "#0"}, - "down": {"uv": [2, 3, 1.5, 6.5], "texture": "#0"} - } - }, - { - "from": [7, 8, 13], - "to": [9.25, 10, 17.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [7, 4.5, 7.5, 5], "texture": "#0"}, - "east": {"uv": [3.75, 1.5, 5, 2], "texture": "#0"}, - "south": {"uv": [7, 5, 7.5, 5.5], "texture": "#0"}, - "west": {"uv": [3.75, 2, 5, 2.5], "texture": "#0"}, - "up": {"uv": [5.5, 2.75, 5, 1.5], "texture": "#0"}, - "down": {"uv": [4.5, 5.75, 4, 7], "texture": "#0"} - } - }, - { - "from": [7.25, 2, 18.75], - "to": [9, 5.5, 29.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [6.5, 1.5, 7, 2.5], "texture": "#0"}, - "east": {"uv": [1, 1, 3.75, 2], "texture": "#0"}, - "south": {"uv": [6.5, 3.75, 7, 4.75], "texture": "#0"}, - "west": {"uv": [1, 2, 3.75, 3], "texture": "#0"}, - "up": {"uv": [3.5, 6.75, 3, 4], "texture": "#0"}, - "down": {"uv": [4, 4, 3.5, 6.75], "texture": "#0"} - } - }, - { - "from": [7.5, 0.5, 22.25], - "to": [8.75, 2, 25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [2.75, 7.5, 3, 8], "texture": "#0"}, - "east": {"uv": [3.75, 2.5, 4.5, 3], "texture": "#0"}, - "south": {"uv": [7.5, 5, 7.75, 5.5], "texture": "#0"}, - "west": {"uv": [6, 2.75, 6.75, 3.25], "texture": "#0"}, - "up": {"uv": [5.5, 7.75, 5.25, 7], "texture": "#0"}, - "down": {"uv": [3.75, 7.25, 3.5, 8], "texture": "#0"} - } - }, - { - "from": [7, 1, 29.75], - "to": [9.25, 7.75, 32], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [4, 4, 4.5, 5.75], "texture": "#0"}, - "east": {"uv": [4.5, 4, 5, 5.75], "texture": "#0"}, - "south": {"uv": [5, 4, 5.5, 5.75], "texture": "#0"}, - "west": {"uv": [5.5, 1.5, 6, 3.25], "texture": "#0"}, - "up": {"uv": [7.5, 6, 7, 5.5], "texture": "#0"}, - "down": {"uv": [7.5, 6, 7, 6.5], "texture": "#0"} - } - }, - { - "from": [7.25, 1.6, 25], - "to": [9, 2, 29.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [5.5, 7.5, 6, 7.75], "texture": "#0"}, - "east": {"uv": [6.75, 3, 8, 3.25], "texture": "#0"}, - "south": {"uv": [7.5, 5.5, 8, 5.75], "texture": "#0"}, - "west": {"uv": [7, 2.25, 8.25, 2.5], "texture": "#0"}, - "up": {"uv": [5, 7, 4.5, 5.75], "texture": "#0"}, - "down": {"uv": [5.5, 5.75, 5, 7], "texture": "#0"} - } - }, - { - "from": [7.25, 4, 0.5], - "to": [9, 5.5, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [7, 6.5, 7.5, 7], "texture": "#0"}, - "east": {"uv": [2, 3, 5.5, 3.5], "texture": "#0"}, - "south": {"uv": [7, 7, 7.5, 7.5], "texture": "#0"}, - "west": {"uv": [2, 3.5, 5.5, 4], "texture": "#0"}, - "up": {"uv": [2.5, 7.5, 2, 4], "texture": "#0"}, - "down": {"uv": [3, 4, 2.5, 7.5], "texture": "#0"} - } - }, - { - "from": [7.25, 0.79359, 14.97051], - "to": [9, 5.59359, 16.47051], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8.125, 0.59359, 15.72051]}, - "faces": { - "north": {"uv": [6, 1.5, 6.5, 2.75], "texture": "#0"}, - "east": {"uv": [6, 3.75, 6.5, 5], "texture": "#0"}, - "south": {"uv": [6, 5, 6.5, 6.25], "texture": "#0"}, - "west": {"uv": [6, 6.25, 6.5, 7.5], "texture": "#0"}, - "up": {"uv": [7.75, 1.5, 7.25, 1], "texture": "#0"}, - "down": {"uv": [3.5, 7.25, 3, 7.75], "texture": "#0"} - } - }, - { - "from": [7.25, 0.79359, 16.47051], - "to": [9, 2.34359, 19.72051], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8.125, 0.59359, 15.72051]}, - "faces": { - "north": {"uv": [4.25, 7.25, 4.75, 7.75], "texture": "#0"}, - "east": {"uv": [6.75, 2.5, 7.5, 3], "texture": "#0"}, - "south": {"uv": [4.75, 7.25, 5.25, 7.75], "texture": "#0"}, - "west": {"uv": [3, 6.75, 3.75, 7.25], "texture": "#0"}, - "up": {"uv": [6, 7.5, 5.5, 6.75], "texture": "#0"}, - "down": {"uv": [7, 6.75, 6.5, 7.5], "texture": "#0"} - } - }, - { - "from": [7.25, 3, 10.5], - "to": [9, 4, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]}, - "faces": { - "north": {"uv": [7.5, 5.75, 8, 6], "texture": "#0"}, - "east": {"uv": [1, 7.5, 2, 7.75], "texture": "#0"}, - "south": {"uv": [6, 7.5, 6.5, 7.75], "texture": "#0"}, - "west": {"uv": [7.5, 1.5, 8.5, 1.75], "texture": "#0"}, - "up": {"uv": [7, 5.75, 6.5, 4.75], "texture": "#0"}, - "down": {"uv": [7, 5.75, 6.5, 6.75], "texture": "#0"} - } - }, - { - "from": [7.25, 5.95, -16], - "to": [9, 7.05, -13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1]}, - "faces": { - "north": {"uv": [7.5, 6, 8, 6.25], "texture": "#0"}, - "east": {"uv": [7.5, 1.75, 8.25, 2], "texture": "#0"}, - "south": {"uv": [7.5, 6.25, 8, 6.5], "texture": "#0"}, - "west": {"uv": [2, 7.5, 2.75, 7.75], "texture": "#0"}, - "up": {"uv": [7.5, 2.25, 7, 1.5], "texture": "#0"}, - "down": {"uv": [4.25, 7, 3.75, 7.75], "texture": "#0"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "translation": [-1.5, 2, -4], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [-1.5, 2, -4], - "scale": [0, 0, 0] - }, - "ground": { - "translation": [0, 5.5, -3.25], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, -145, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "translation": [0, 12.25, -5.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0.25, 2.75, -1.75], - "scale": [1.2, 1.2, 1.2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/vehicles/a_10a.json b/src/main/resources/data/superbwarfare/vehicles/a_10a.json index 2c7efa788..c6da75f3f 100644 --- a/src/main/resources/data/superbwarfare/vehicles/a_10a.json +++ b/src/main/resources/data/superbwarfare/vehicles/a_10a.json @@ -2,7 +2,7 @@ "ID": "superbwarfare:a_10a", "MaxHealth": 350, "MaxEnergy": 10000000, - "UpStep": 0.5, + "UpStep": 1.1, "Mass": 20, "AllowFreeCam": true, "DamageModifiers": [ diff --git a/src/main/resources/data/superbwarfare/vehicles/tom_6.json b/src/main/resources/data/superbwarfare/vehicles/tom_6.json index 38fbd480a..6507ee30c 100644 --- a/src/main/resources/data/superbwarfare/vehicles/tom_6.json +++ b/src/main/resources/data/superbwarfare/vehicles/tom_6.json @@ -2,7 +2,7 @@ "ID": "superbwarfare:tom_6", "MaxHealth": 40, "MaxEnergy": 100000, - "UpStep": 0.5, + "UpStep": 1.1, "Mass": 0.02, "AllowFreeCam": true, "DamageModifiers": [