Compare commits

...

4 Commits

10 changed files with 921 additions and 32 deletions

View File

@ -1,6 +1,7 @@
package com.jenny.enhancedexplosives;
import com.jenny.enhancedexplosives.blocks.blocks;
import com.jenny.enhancedexplosives.config.ConfigCommon;
import com.jenny.enhancedexplosives.particles.particles;
import com.jenny.enhancedexplosives.config.ConfigClient;
import com.jenny.enhancedexplosives.entities.entities;
@ -39,11 +40,10 @@ public class EnhancedExplosives {
// Register ourselves for server and other game events we are interested in
MinecraftForge.EVENT_BUS.register(this);
ModLoadingContext.get().registerConfig(ModConfig.Type.CLIENT, ConfigClient.SPEC);
}
private void commonSetup(final FMLCommonSetupEvent event) {
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, ConfigCommon.SPEC);
}
// You can use SubscribeEvent and let the Event Bus discover methods to call
@ -58,6 +58,7 @@ public class EnhancedExplosives {
@SubscribeEvent
public static void onClientSetup(FMLClientSetupEvent event) {
ModLoadingContext.get().registerConfig(ModConfig.Type.CLIENT, ConfigClient.SPEC);
entities.registerRenderers();
}
}

View File

@ -0,0 +1,21 @@
package com.jenny.enhancedexplosives.config;
import net.minecraftforge.common.ForgeConfigSpec;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.config.ModConfigEvent;
import static com.jenny.enhancedexplosives.EnhancedExplosives.MODID;
@Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD)
public class ConfigCommon {
private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder();
public static final ForgeConfigSpec SPEC = BUILDER.build();
@SubscribeEvent
static void onLoad(final ModConfigEvent event)
{
}
}

View File

@ -1,43 +1,50 @@
package com.jenny.enhancedexplosives;
import com.jenny.enhancedexplosives.blocks.blocks;
import com.jenny.enhancedexplosives.items.items;
import com.jenny.enhancedexplosives.items.items;
import net.minecraft.core.registries.Registries;
import net.minecraft.network.chat.Component;
import net.minecraft.world.item.CreativeModeTab;
import net.minecraft.world.item.CreativeModeTabs;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraftforge.eventbus.api.IEventBus;
import net.minecraftforge.registries.DeferredRegister;
import net.minecraftforge.registries.RegistryObject;
import java.util.Arrays;
import static com.jenny.enhancedexplosives.EnhancedExplosives.MODID;
public class creativeTab {
public static final DeferredRegister<CreativeModeTab> CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID);
public static final RegistryObject<CreativeModeTab> CREATIVE_TAB = CREATIVE_MODE_TABS.register("enhancedexplosives", () -> CreativeModeTab.builder().withTabsBefore(CreativeModeTabs.COMBAT).icon(() -> blocks.TNT_8_ITEM.get().getDefaultInstance()).displayItems((parameters, output) -> {
output.accept(blocks.TNT_8.get());
output.accept(blocks.TNT_16.get());
output.accept(blocks.TNT_32.get());
output.accept(blocks.TNT_64.get());
output.accept(blocks.TNT_128.get());
output.accept(blocks.TNT_CLUSTER_2.get());
output.accept(blocks.TNT_CLUSTER_4.get());
output.accept(blocks.TNT_CLUSTER_8.get());
output.accept(blocks.TNT_HOMING.get());
output.accept(blocks.TNT_BLACK_HOLE.get());
output.accept(blocks.TNT_REPULSIVE.get());
output.accept(blocks.TNT_CLAYMORE.get());
output.accept(blocks.TNT_SELECTIVE.get());
output.accept(blocks.TNT_ENDER.get());
output.accept(items.TNT_ARROW.get());
output.accept(items.CONCUSSIVE_ARROW.get());
output.accept(items.CARPET_ARROW.get());
output.accept(items.TUNNEL_ARROW.get());
output.accept(items.DYNAMITE.get());
output.acceptAll(Arrays.stream(getBlocks()).toList());
output.acceptAll(Arrays.stream(getItems()).toList());
}).title(Component.literal("Enhanced Explosives")).build());
public static void register(IEventBus bus) {
CREATIVE_MODE_TABS.register(bus);
}
public static ItemStack[] getBlocks() {
ItemStack[] ret = new ItemStack[blocks.ITEMS.getEntries().size()];
int i = 0;
for (RegistryObject<Item> item : blocks.ITEMS.getEntries()) {
ret[i] = item.get().getDefaultInstance();
i++;
}
return ret;
}
public static ItemStack[] getItems() {
ItemStack[] ret = new ItemStack[items.ITEMS.getEntries().size()];
int i = 0;
for (RegistryObject<Item> item : items.ITEMS.getEntries()) {
ret[i] = item.get().getDefaultInstance();
i++;
}
return ret;
}
}

View File

@ -35,7 +35,7 @@ public class carpetArrow extends baseArrow {
protected void spawnChildren(int count) {
RandomSource rng = level().getRandom();
for (int i = 0; i < count; i++) {
carpetArrowPart arrow = new carpetArrowPart(entities.ARROW_CARPT_PART.get(), level());
carpetArrowPart arrow = new carpetArrowPart(entities.ARROW_CARPET_PART.get(), level());
double r = (double) rng.nextIntBetweenInclusive(-100, 100) / 200;
Vec3 move = new Vec3(
(double) rng.nextIntBetweenInclusive(-100, 100) / 100,

View File

@ -4,6 +4,9 @@ import com.jenny.enhancedexplosives.config.ConfigClient;
import com.jenny.enhancedexplosives.entities.entities;
import com.jenny.enhancedexplosives.items.items;
import com.jenny.enhancedexplosives.particles.particles;
import net.minecraft.world.damagesource.DamageSource;
import net.minecraft.world.damagesource.DamageType;
import net.minecraft.world.damagesource.DamageTypes;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.item.ItemStack;
@ -17,22 +20,32 @@ public class carpetArrowPart extends baseArrow {
}
public carpetArrowPart(Level pLevel, LivingEntity pShooter) {
super(pLevel, pShooter, entities.ARROW_CARPT_PART.get());
super(pLevel, pShooter, entities.ARROW_CARPET_PART.get());
}
@Override
public void tick() {
super.tick();
if (this.inGround) {
this.level().explode(this, getX(), getY(), getZ(), 8.0f, Level.ExplosionInteraction.NONE);
this.discard();
if (this.inGround || this.hurtMarked) {
explode();
}
}
@Override
protected void doPostHurtEffects(@NotNull LivingEntity pTarget) {
this.level().explode(this, getX(), getY(), getZ(), 8.0f, Level.ExplosionInteraction.NONE);
this.discard();
explode();
}
public void explode() {
if (!level().isClientSide) {
level().explode(this, getX(), getY(), getZ(), 8.0f, Level.ExplosionInteraction.NONE);
}
discard();
}
@Override
public boolean hurt(@NotNull DamageSource pSource, float pAmount) {
return super.hurt(pSource, pAmount) || pSource.is(DamageTypes.EXPLOSION);
}
@NotNull

View File

@ -67,7 +67,7 @@ public class entities {
ENTITY_TYPES.register("arrow_claymore", () -> EntityType.Builder.<claymoreArrow>of(claymoreArrow::new, MobCategory.MISC)
.sized(0.48F, 0.48F).clientTrackingRange(64).build("arrow_claymore"));
public static final RegistryObject<EntityType<carpetArrowPart>> ARROW_CARPT_PART =
public static final RegistryObject<EntityType<carpetArrowPart>> ARROW_CARPET_PART =
ENTITY_TYPES.register("arrow_carpet_part", () -> EntityType.Builder.<carpetArrowPart>of(carpetArrowPart::new, MobCategory.MISC)
.sized(0.48F, 0.48F).clientTrackingRange(64).build("arrow_carpet_part"));
@ -99,7 +99,7 @@ public class entities {
EntityRenderers.register(ARROW_TNT.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_CONCUSSIVE.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_CARPET.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_CARPT_PART.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_CARPET_PART.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_TUNNEL.get(), TNTArrowRenderer::new);
EntityRenderers.register(ARROW_CLAYMORE.get(), baseArrowRenderer::new);

View File

@ -14,8 +14,8 @@ public class items {
public static final RegistryObject<Item> TNT_ARROW = ITEMS.register("arrow_tnt", () -> new ArrowTNT(new Item.Properties()));
public static final RegistryObject<Item> CONCUSSIVE_ARROW = ITEMS.register("arrow_concussive", () -> new ArrowConcussive(new Item.Properties()));
public static final RegistryObject<Item> CARPET_ARROW = ITEMS.register("arrow_carpet", () -> new ArrowCarpet(new Item.Properties()));
public static final RegistryObject<Item> DYNAMITE = ITEMS.register("dynamite", () -> new Dynamite(new Item.Properties()));
public static final RegistryObject<Item> TUNNEL_ARROW = ITEMS.register("arrow_tunnel", () -> new ArrowTunnel(new Item.Properties()));
public static final RegistryObject<Item> DYNAMITE = ITEMS.register("dynamite", () -> new Dynamite(new Item.Properties()));
public static void register(IEventBus bus) {
ITEMS.register(bus);

View File

@ -0,0 +1,18 @@
{
"parent": "minecraft:item/handheld",
"loader": "forge:separate_transforms",
"base": {
"parent": "enhancedexplosives:item/dynamite_3d"
},
"perspectives": {
"gui": {
"parent": "enhancedexplosives:item/dynamite_3d"
},
"ground": {
"parent": "enhancedexplosives:item/dynamite_3d"
},
"fixed": {
"parent": "enhancedexplosives:item/dynamite_3d"
}
}
}

View File

@ -0,0 +1,829 @@
{
"credit": "Made with Blockbench",
"texture_size": [48, 48],
"textures": {
"0": "enhancedexplosives:item/dynamite",
"particle": "enhancedexplosives:item/dynamite"
},
"elements": [
{
"from": [6.048, -0.129, 8.976],
"to": [7.024, 10.119, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 3.775, 8.976]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [6.048, -0.129, 7.512],
"to": [7.024, 10.119, 8.488],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 3.775, 7.512]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [6.048, -0.129, 6.048],
"to": [7.024, 10.119, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 3.775, 6.048]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 16], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 16], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 16], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [7.512, -0.129, 6.048],
"to": [8.488, 10.119, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [7.512, 3.775, 6.048]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [8.976, -0.129, 6.048],
"to": [9.952, 10.119, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 3.775, 6.048]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [8.488, 0.115, 6.536],
"to": [8.976, 9.875, 6.78],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 4.019, 6.536]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"}
}
},
{
"from": [7.024, 0.115, 6.536],
"to": [7.512, 9.875, 6.78],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 4.019, 6.536]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"}
}
},
{
"from": [7.024, 0.115, 9.22],
"to": [7.512, 9.875, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 4.019, 9.22]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"}
}
},
{
"from": [8.488, 0.115, 9.22],
"to": [8.976, 9.875, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 4.019, 9.22]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"}
}
},
{
"from": [9.22, 0.115, 8.488],
"to": [9.464, 9.875, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [9.22, 4.019, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [9.22, 0.115, 7.024],
"to": [9.464, 9.875, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [9.22, 4.019, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.976, 9.875, 7.024],
"to": [9.464, 10.119, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 13.779, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [3.33333, 0, 4, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.976, -0.129, 8.488],
"to": [9.464, 0.115, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 3.775, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [2.66667, 15, 3.33333, 15.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [2.66667, 15.33333, 3.33333, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, -0.129, 8.976],
"to": [8.976, 0.115, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 3.775, 9.464]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [2, 15, 2.66667, 15.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [2, 15.33333, 2.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, -0.129, 8.976],
"to": [7.512, 0.115, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 3.775, 9.464]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [1.33333, 15, 2, 15.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [1.33333, 15.33333, 2, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, -0.129, 8.488],
"to": [7.024, 0.115, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 3.775, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0.66667, 15, 1.33333, 15.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0.66667, 15.33333, 1.33333, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, -0.129, 7.024],
"to": [7.024, 0.115, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 3.775, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 15, 0.66667, 15.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 15.33333, 0.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, -0.129, 6.536],
"to": [7.512, 0.115, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 3.775, 7.024]},
"faces": {
"north": {"uv": [4.66667, 15, 5.33333, 15.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [4.66667, 15.33333, 5.33333, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, -0.129, 6.536],
"to": [8.976, 0.115, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 3.775, 7.024]},
"faces": {
"north": {"uv": [4, 15, 4.66667, 15.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [4, 15.33333, 4.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.976, -0.129, 7.024],
"to": [9.464, 0.115, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 3.775, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [3.33333, 15, 4, 15.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [3.33333, 15.33333, 4, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 9.875, 6.536],
"to": [8.976, 10.119, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 13.779, 7.024]},
"faces": {
"north": {"uv": [4, 0.66667, 4.66667, 1], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [4, 0, 4.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 9.875, 6.536],
"to": [7.512, 10.119, 7.024],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 13.779, 7.024]},
"faces": {
"north": {"uv": [4.66667, 0.66667, 5.33333, 1], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [4.66667, 0, 5.33333, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, 9.875, 7.024],
"to": [7.024, 10.119, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 13.779, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0.66667, 0.66667, 1], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.048, 8.899, 7.024],
"to": [6.536, 9.143, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 12.803, 7.512]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.048, 8.899, 8.488],
"to": [6.536, 9.143, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 12.803, 8.976]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [5.804, 8.899, 6.048],
"to": [6.048, 9.143, 10.196],
"rotation": {"angle": 0, "axis": "y", "origin": [5.804, 12.803, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.048, 8.899, 9.952],
"to": [10.196, 9.143, 10.196],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 12.803, 10.196]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 180, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 180, "texture": "#0"}
}
},
{
"from": [9.952, 8.899, 5.804],
"to": [10.196, 9.143, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [10.196, 12.803, 9.464]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"}
}
},
{
"from": [5.804, 8.899, 5.804],
"to": [9.952, 9.143, 6.048],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 12.803, 5.804]},
"faces": {
"north": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "texture": "#0"}
}
},
{
"from": [9.952, 0.847, 5.804],
"to": [10.196, 1.091, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [10.196, 4.751, 9.464]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"}
}
},
{
"from": [6.048, 0.847, 9.952],
"to": [10.196, 1.091, 10.196],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 4.751, 10.196]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 180, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 180, "texture": "#0"}
}
},
{
"from": [5.804, 0.847, 6.048],
"to": [6.048, 1.091, 10.196],
"rotation": {"angle": 0, "axis": "y", "origin": [5.804, 4.751, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [5.804, 0.847, 5.804],
"to": [9.952, 1.091, 6.048],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 4.751, 5.804]},
"faces": {
"north": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "texture": "#0"}
}
},
{
"from": [7.024, 8.899, 9.464],
"to": [7.512, 9.143, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 12.803, 9.952]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 8.899, 9.464],
"to": [8.976, 9.143, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 12.803, 9.952]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [9.464, 8.899, 8.488],
"to": [9.952, 9.143, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 12.803, 8.976]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [9.464, 8.899, 7.024],
"to": [9.952, 9.143, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 12.803, 7.512]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 8.899, 6.048],
"to": [8.976, 9.143, 6.536],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 12.803, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 8.899, 6.048],
"to": [7.512, 9.143, 6.536],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 12.803, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.048, 0.847, 7.024],
"to": [6.536, 1.091, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 4.751, 7.512]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.048, 0.847, 8.488],
"to": [6.536, 1.091, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [6.048, 4.751, 8.976]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 0.847, 9.464],
"to": [7.512, 1.091, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 4.751, 9.952]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 0.847, 9.464],
"to": [8.976, 1.091, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 4.751, 9.952]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [9.464, 0.847, 8.488],
"to": [9.952, 1.091, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 4.751, 8.976]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [9.464, 0.847, 7.024],
"to": [9.952, 1.091, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [9.464, 4.751, 7.512]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 0.847, 6.048],
"to": [8.976, 1.091, 6.536],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 4.751, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 0.847, 6.048],
"to": [7.512, 1.091, 6.536],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 4.751, 6.536]},
"faces": {
"north": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"east": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"south": {"uv": [8, 0, 8.66667, 0.33333], "texture": "#0"},
"west": {"uv": [8, 0.33333, 8.66667, 0.66667], "texture": "#0"},
"up": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 0, 8.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, 9.875, 8.488],
"to": [7.024, 10.119, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 13.779, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0.66667, 0.66667, 1.33333, 1], "texture": "#0"},
"up": {"uv": [0.66667, 0, 1.33333, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 9.875, 8.976],
"to": [7.512, 10.119, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 13.779, 9.464]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [1.33333, 0.66667, 2, 1], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [1.33333, 0, 2, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.488, 9.875, 8.976],
"to": [8.976, 10.119, 9.464],
"rotation": {"angle": 0, "axis": "y", "origin": [8.488, 13.779, 9.464]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"south": {"uv": [2, 0.66667, 2.66667, 1], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [2, 0, 2.66667, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.976, 9.875, 8.488],
"to": [9.464, 10.119, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 13.779, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"east": {"uv": [2.66667, 0.66667, 3.33333, 1], "texture": "#0"},
"south": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 0.33333], "texture": "#0"},
"up": {"uv": [2.66667, 0, 3.33333, 0.66667], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.66667], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, 9.875, 7.024],
"to": [8.976, 10.119, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 13.779, 7.512]},
"faces": {
"north": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"up": {"uv": [5.33333, 13.33333, 8, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [5.33333, 10.66667, 8, 13.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.512, 10.058, 7.512],
"to": [8.488, 10.302, 8.488],
"rotation": {"angle": 0, "axis": "y", "origin": [7.512, 13.962, 8]},
"faces": {
"north": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"east": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"south": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"west": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"up": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.756, 10.18, 7.756],
"to": [8.244, 10.424, 8.244],
"rotation": {"angle": 0, "axis": "y", "origin": [7.756, 14.084, 8.244]},
"faces": {
"north": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"east": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"south": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"west": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"up": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.878, 9.936, 7.878],
"to": [8.122, 10.851, 8.122],
"rotation": {"angle": 0, "axis": "y", "origin": [7.878, 13.84, 8.366]},
"faces": {
"north": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"east": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"south": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"west": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"up": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.878, 10.424, 9.342],
"to": [8.122, 10.912, 9.586],
"rotation": {"angle": 22.5, "axis": "x", "origin": [7.878, 14.328, 9.83]},
"faces": {
"north": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"east": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"south": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"west": {"uv": [8, 13.33333, 10.66667, 13.66667], "texture": "#0"},
"up": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [8, 13.33333, 10.66667, 16], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.878, 10.851, 9.525],
"to": [8.122, 11.095, 9.769],
"rotation": {"angle": 22.5, "axis": "x", "origin": [7.878, 14.755, 10.013]},
"faces": {
"north": {"uv": [13.33333, 10.66667, 16, 11], "texture": "#0"},
"east": {"uv": [13.33333, 10.66667, 16, 11], "texture": "#0"},
"south": {"uv": [13.33333, 10.66667, 16, 11], "texture": "#0"},
"west": {"uv": [13.33333, 10.66667, 16, 11], "texture": "#0"},
"up": {"uv": [13.33333, 10.66667, 16, 13.33333], "rotation": 270, "texture": "#0"},
"down": {"uv": [13.33333, 10.66667, 16, 13.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [7.024, -0.129, 7.024],
"to": [8.976, 0.115, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [7.024, 3.775, 7.512]},
"faces": {
"north": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"east": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"south": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"west": {"uv": [0, 0, 2.66667, 0.33333], "texture": "#0"},
"up": {"uv": [5.33333, 13.33333, 8, 16], "rotation": 270, "texture": "#0"},
"down": {"uv": [5.33333, 10.66667, 8, 13.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, 0.115, 7.024],
"to": [6.78, 9.875, 7.512],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 4.019, 7.512]},
"faces": {
"north": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.536, 0.115, 8.488],
"to": [6.78, 9.875, 8.976],
"rotation": {"angle": 0, "axis": "y", "origin": [6.536, 4.019, 8.976]},
"faces": {
"north": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"east": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"south": {"uv": [0, 0, 0.33333, 13.33333], "texture": "#0"},
"west": {"uv": [0, 0, 0.66667, 13.33333], "texture": "#0"},
"up": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 270, "texture": "#0"},
"down": {"uv": [0, 0, 0.66667, 0.33333], "rotation": 90, "texture": "#0"}
}
},
{
"from": [8.976, -0.129, 7.512],
"to": [9.952, 10.119, 8.488],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 3.775, 7.512]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [8.976, -0.129, 8.976],
"to": [9.952, 10.119, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [8.976, 3.775, 8.976]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
},
{
"from": [7.512, -0.129, 8.976],
"to": [8.488, 10.119, 9.952],
"rotation": {"angle": 0, "axis": "y", "origin": [7.512, 3.775, 8.976]},
"faces": {
"north": {"uv": [0, 0, 1.33333, 14], "texture": "#0"},
"east": {"uv": [1.33333, 0, 2.66667, 14], "texture": "#0"},
"south": {"uv": [2.66667, 0, 4, 14], "texture": "#0"},
"west": {"uv": [4, 0, 5.33333, 14], "texture": "#0"},
"up": {"uv": [5.33333, 0, 6.66667, 1.33333], "texture": "#0"},
"down": {"uv": [5.33333, 1.33333, 6.66667, 2.66667], "texture": "#0"}
}
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB