update
All checks were successful
/ Auto-Build-App (push) Successful in 2m15s

This commit is contained in:
pietru 2025-02-21 19:14:44 +01:00
parent 88edd41b66
commit f23c7a420c
84 changed files with 19810 additions and 24 deletions

View file

@ -4,14 +4,14 @@ org.gradle.parallel=true
org.gradle.caching=false org.gradle.caching=false
# Project Info # Project Info
version=1.8.0 version=1.8.1
group=net.pietru group=net.pietru
id=omni_power id=omni_power
# Dependency Versions # Dependency Versions
cosmic_reach_version=0.3.4 cosmic_reach_version=0.3.26
# If unspecified, will use the version above # If unspecified, will use the version above
cosmic_reach_server_version=0.3.4 cosmic_reach_server_version=0.3.26
cosmic_quilt_version=2.3.1 cosmic_quilt_version=2.3.2
# modmenu_version=1.0.7 # modmenu_version=1.0.7

View file

@ -6,11 +6,14 @@ import com.badlogic.gdx.utils.JsonValue;
import finalforeach.cosmicreach.GameAssetLoader; import finalforeach.cosmicreach.GameAssetLoader;
import finalforeach.cosmicreach.blockevents.BlockEvents; import finalforeach.cosmicreach.blockevents.BlockEvents;
import finalforeach.cosmicreach.blocks.Block; import finalforeach.cosmicreach.blocks.Block;
import finalforeach.cosmicreach.blocks.BlockStateGenerator;
import finalforeach.cosmicreach.items.ItemThing; import finalforeach.cosmicreach.items.ItemThing;
import net.pietru.omni_power.blockevents.Connect;
import net.pietru.omni_power.blockevents.OpenCustomUI; import net.pietru.omni_power.blockevents.OpenCustomUI;
import net.pietru.omni_power.blockevents.Power; import net.pietru.omni_power.blockevents.Power;
import dev.crmodders.cosmicquilt.api.entrypoint.ModInitializer; import dev.crmodders.cosmicquilt.api.entrypoint.ModInitializer;
import net.pietru.omni_power.blocks.CustomUIBlockEntity; import net.pietru.omni_power.blocks.CustomUIBlockEntity;
import net.pietru.omni_power.mixins.BlockStateGeneratorMixin;
import org.quiltmc.loader.api.ModContainer; import org.quiltmc.loader.api.ModContainer;
import java.io.*; import java.io.*;
@ -42,13 +45,12 @@ public class OmniPower implements ModInitializer {
//if (QuiltLoader.isModLoaded("becraft")) //if (QuiltLoader.isModLoaded("becraft"))
System.out.println("OmniPower Mod Initialized!"); System.out.println("OmniPower Mod Initialized!");
load_power_event();
List<String> paths = List.of(Gdx.files.internal(MOD_ID + "/assets.txt").readString().split("\n")); List<String> paths = List.of(Gdx.files.internal(MOD_ID + "/assets.txt").readString().split("\n"));
Json json = new Json();
for (String path : paths){ for (String path : paths){
if (path.contains("block_events")) { if (path.contains("block_events")) {
System.out.println("Loading " + path); System.out.println("Loading " + path);
BlockEvents.loadBlockEventsFromAsset(GameAssetLoader.loadAsset(path)); //Gdx.files.classpath(path) BlockEvents.loadBlockEventsFromAsset(json,GameAssetLoader.loadAsset(path)); //Gdx.files.classpath(path)
} }
} }
@ -78,6 +80,7 @@ public class OmniPower implements ModInitializer {
try { try {
BlockEvents.registerBlockEventAction(Power.class); BlockEvents.registerBlockEventAction(Power.class);
BlockEvents.registerBlockEventAction(OpenCustomUI.class); BlockEvents.registerBlockEventAction(OpenCustomUI.class);
BlockEvents.registerBlockEventAction(Connect.class);
} catch (Exception e){ } catch (Exception e){
System.out.println(e); System.out.println(e);
System.out.println("If msg above says something Duplicate block event action key it might be intended behaviour..."); System.out.println("If msg above says something Duplicate block event action key it might be intended behaviour...");

View file

@ -0,0 +1,131 @@
package net.pietru.omni_power.api;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Camera;
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.math.Quaternion;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.math.Vector3;
import de.pottgames.tuningfork.SoundBuffer;
import finalforeach.cosmicreach.GameAssetLoader;
import finalforeach.cosmicreach.GameSingletons;
import finalforeach.cosmicreach.TickRunner;
import finalforeach.cosmicreach.entities.Entity;
import finalforeach.cosmicreach.items.ItemStack;
import finalforeach.cosmicreach.savelib.crbin.CRBSerialized;
import finalforeach.cosmicreach.savelib.crbin.CRBinSerializer;
import finalforeach.cosmicreach.world.Zone;
public class HoloBlock extends Entity {
public static final String ENTITY_TYPE_ID = "base:entity_holo_block";
public static SoundBuffer flickSound;
@CRBSerialized
ItemStack itemStack;
@CRBSerialized
Vector3 renderSize;
@CRBSerialized
public Quaternion renderRotation;
@CRBSerialized
public boolean visible = true;
public HoloBlock(Vector3 position, Vector3 size, Quaternion rotation) {
super(ENTITY_TYPE_ID);
setPosition(position);
this.setSize(size);
this.renderRotation=rotation;
this.shouldSaveInChunks=false;
this.noClip=true;
this.canDespawn=false;
this.gravityModifier=0F;
this.hasGravity=false;
}
public HoloBlock(ItemStack itemStack, Vector3 position, Vector3 size, Quaternion rotation) {
this(position, size, rotation);
if (itemStack == null) {
throw new IllegalArgumentException("itemStack cannot be null!");
} else {
this.itemStack = itemStack;
}
}
public HoloBlock(ItemStack itemStack, Vector3 position, Vector3 size){
this(itemStack,position, size, new Quaternion());
}
public HoloBlock(ItemStack itemStack, Vector3 position, float s){
this(itemStack,position, new Vector3(s,s,s), new Quaternion());
}
public HoloBlock(ItemStack itemStack, Vector3 position){
this(itemStack,position, new Vector3(1F,1F,1F), new Quaternion());
}
public void setSize(float s) {
setSize(new Vector3(s,s,s));
}
public void setSize(Vector3 s) {
this.renderSize = s;
this.localBoundingBox.min.set(-s.x / 2.0F, -s.y / 2.0F, -s.z / 2.0F);
this.localBoundingBox.max.set(s.x / 2.0F, s.y / 2.0F, s.z / 2.0F);
this.localBoundingBox.update();
}
public void onAttackInteraction(Entity sourceEntity) {
float dx = this.position.x - sourceEntity.position.x;
float dz = this.position.z - sourceEntity.position.z;
float l = Vector2.len(dx, dz);
if (l != 0.0F) {
if (GameSingletons.soundManager != null) {
GameSingletons.soundManager.playSound3D(flickSound, this.position, 1.0F, MathUtils.random(1.0F, 1.2F));
}
}
}
public void write(CRBinSerializer serial) {
//super.write(serial);
//Probably disable for Hologram it can be recreated next time game starts
}
public void die(Zone zone) {
this.hitpoints = 0.0F;
this.onHitpointChange();
}
public void render(Camera worldCamera) {
if (!GameSingletons.isHost) {
this.age += Gdx.graphics.getDeltaTime();
}
if (visible && worldCamera.frustum.boundsInFrustum(this.globalBoundingBox)) {
if (this.modelInstance == null && this.itemStack != null) {
this.modelInstance = GameSingletons.itemEntityModelLoader.load(this.itemStack);
}
if (this.modelInstance != null) {
tmpModelMatrix.idt();
tmpRenderPos.set(this.lastRenderPosition);
TickRunner.INSTANCE.partTickSlerp(tmpRenderPos, this.position);
this.lastRenderPosition.set(tmpRenderPos);
tmpModelMatrix.translate(tmpRenderPos);
tmpModelMatrix.scl(this.renderSize);
tmpModelMatrix.rotate(renderRotation);
//tmpModelMatrix.translate(-0.5F, -0.5F, -0.5F);
this.renderModelAfterMatrixSet(worldCamera);
}
}
}
static {
if (GameSingletons.isClient) {
flickSound = GameAssetLoader.getSound("sounds/entities/item/item-flick.ogg");
}
}
}

View file

@ -0,0 +1,123 @@
package net.pietru.omni_power.blockevents;
import com.badlogic.gdx.utils.Array;
import finalforeach.cosmicreach.blockevents.BlockEventArgs;
import finalforeach.cosmicreach.blockevents.BlockEventTrigger;
import finalforeach.cosmicreach.blockevents.actions.ActionId;
import finalforeach.cosmicreach.blockevents.actions.IBlockAction;
import finalforeach.cosmicreach.blocks.BlockPosition;
import finalforeach.cosmicreach.blocks.BlockState;
import finalforeach.cosmicreach.world.BlockSetter;
import finalforeach.cosmicreach.world.Zone;
import net.pietru.omni_power.OmniPower;
import java.util.HashMap;
@ActionId(id = OmniPower.MOD_ID+":connect")
public class Connect implements IBlockAction {
public String update_triggerId;
public String cable_group;
public boolean self_only = true;
public boolean self_run = true;
String center_name = "center";
String xp_name = "xp_power";
String xm_name = "xm_power";
String yp_name = "yp_power";
String ym_name = "ym_power";
String zp_name = "zp_power";
String zm_name = "zm_power";
@Override
public void act(BlockEventArgs args) {
Zone zone = args.zone;
BlockPosition sourcePos = args.blockPos;
String faces_arg = "";
Array<BlockPosition> arr = new Array<>();
BlockPosition side_pos;
side_pos = sourcePos.getOffsetBlockPos(zone, 1, 0, 0);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=xp_name;
}
side_pos = sourcePos.getOffsetBlockPos(zone, -1, 0, 0);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=xm_name;
}
side_pos = sourcePos.getOffsetBlockPos(zone, 0, 1, 0);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=yp_name;
}
side_pos = sourcePos.getOffsetBlockPos(zone, 0, -1, 0);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=ym_name;
}
side_pos = sourcePos.getOffsetBlockPos(zone, 0, 0, 1);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=zp_name;
}
side_pos = sourcePos.getOffsetBlockPos(zone, 0, 0, -1);
if (block_has_dir_or_all(side_pos)) {
arr.add(side_pos);
faces_arg+=zm_name;
}
if (faces_arg.isEmpty())
faces_arg=center_name;
if (self_run) {
HashMap<String, String> params = new HashMap<>();
params.put("faces", faces_arg);
BlockState blockState = sourcePos.getBlockState();
blockState = blockState.getVariantWithParams(params);
BlockSetter.get().replaceBlock(zone, blockState, sourcePos);
}
if (!self_only)
arr.forEach(pos -> runTrigger(update_triggerId,pos,args));
}
private void runTrigger(String triggerId, BlockPosition triggerPos, BlockEventArgs args) {
Zone zone = args.zone;
if (triggerPos != null) {
BlockState targetBlockState = triggerPos.getBlockState();
if (targetBlockState == null) {
return;
}
BlockEventTrigger[] customTrigger = targetBlockState.getTrigger(triggerId);
if (customTrigger == null) {
return;
}
BlockEventArgs newArgs = new BlockEventArgs();
newArgs.blockPos = triggerPos;
newArgs.zone = zone;
newArgs.srcBlockState = targetBlockState;
newArgs.setSrcIdentity(args.getSrcIdentity());
for (BlockEventTrigger t : customTrigger) {
t.act(newArgs);
}
}
}
public Boolean block_has_dir_or_all(BlockPosition pos){
if (pos==null)
return false;
BlockState state = pos.getBlockState();
if (state==null)
return false;
if (state.stringId==null)
return false;
return state.stringId.contains(cable_group);
}
}

View file

@ -34,7 +34,7 @@ public class OpenCustomUI implements IBlockAction {
tmp.blockEventTrigger=args.blockEventTrigger; tmp.blockEventTrigger=args.blockEventTrigger;
tmp.zone=args.zone; tmp.zone=args.zone;
tmp.blockPos=args.blockPos; tmp.blockPos=args.blockPos;
tmp.srcIdentity=args.srcIdentity; tmp.setSrcIdentity(args.getSrcIdentity());
tmp.ui_id=ui_id; tmp.ui_id=ui_id;
tmp.container=new SlotContainer(slots); tmp.container=new SlotContainer(slots);
CustomScreen.addOpenContainer(tmp,tmp.container); CustomScreen.addOpenContainer(tmp,tmp.container);

View file

@ -91,7 +91,7 @@ public class Power implements IBlockAction {
newArgs.blockPos = triggerPos; newArgs.blockPos = triggerPos;
newArgs.zone = zone; newArgs.zone = zone;
newArgs.srcBlockState = targetBlockState; newArgs.srcBlockState = targetBlockState;
newArgs.srcIdentity = args.srcIdentity; newArgs.setSrcIdentity(args.getSrcIdentity());
for (BlockEventTrigger t : customTrigger) { for (BlockEventTrigger t : customTrigger) {
t.act(newArgs); t.act(newArgs);

View file

@ -1,12 +1,18 @@
package net.pietru.omni_power.blocks; package net.pietru.omni_power.blocks;
import com.badlogic.gdx.math.Quaternion;
import com.badlogic.gdx.math.Vector3;
import finalforeach.cosmicreach.GameSingletons; import finalforeach.cosmicreach.GameSingletons;
import finalforeach.cosmicreach.blockentities.BlockEntityCreator; import finalforeach.cosmicreach.blockentities.BlockEntityCreator;
import finalforeach.cosmicreach.blockentities.BlockEntityItemContainer; import finalforeach.cosmicreach.blockentities.BlockEntityItemContainer;
import finalforeach.cosmicreach.blocks.Block; import finalforeach.cosmicreach.blocks.Block;
import finalforeach.cosmicreach.blocks.BlockState;
import finalforeach.cosmicreach.blocks.MissingBlockStateResult;
import finalforeach.cosmicreach.entities.player.Player; import finalforeach.cosmicreach.entities.player.Player;
import finalforeach.cosmicreach.items.ItemStack;
import finalforeach.cosmicreach.items.containers.SlotContainer; import finalforeach.cosmicreach.items.containers.SlotContainer;
import finalforeach.cosmicreach.world.Zone; import finalforeach.cosmicreach.world.Zone;
import net.pietru.omni_power.api.HoloBlock;
import net.pietru.omni_power.ui.CustomScreen; import net.pietru.omni_power.ui.CustomScreen;
import static net.pietru.omni_power.OmniPower.MOD_ID; import static net.pietru.omni_power.OmniPower.MOD_ID;
@ -17,6 +23,15 @@ public class CustomUIBlockEntity extends BlockEntityItemContainer {
public CustomUIBlockEntity(Zone zone, int globalX, int globalY, int globalZ, SlotContainer slotContainer, String gui_id) { public CustomUIBlockEntity(Zone zone, int globalX, int globalY, int globalZ, SlotContainer slotContainer, String gui_id) {
super(zone, globalX, globalY, globalZ, slotContainer); super(zone, globalX, globalY, globalZ, slotContainer);
this.ui_id=gui_id; this.ui_id=gui_id;
for (int i = 0; i < 360; i++) {
HoloBlock hb = new HoloBlock(
new ItemStack(BlockState.getInstance("base:c4[default]", MissingBlockStateResult.EXCEPTION).getItem()),
new Vector3(globalX, globalY+1, globalZ),
(float) (.9f-((.1/360.0)*i))
);
hb.renderRotation=new Quaternion(Vector3.Y,i);
zone.addEntity(hb);
}
} }
@Override @Override

View file

@ -0,0 +1,17 @@
package net.pietru.omni_power.mixins;
import finalforeach.cosmicreach.blockevents.BlockEvents;
import net.pietru.omni_power.OmniPower;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(BlockEvents.class)
public class BlockEventsMixin {
@Inject(method = "initBlockEvents", at = @At("HEAD"))
private static void omnipower_initBlockEvents(CallbackInfo ci){
OmniPower.load_power_event();
}
}

View file

@ -0,0 +1,34 @@
package net.pietru.omni_power.mixins;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.files.FileHandle;
import finalforeach.cosmicreach.GameAssetLoader;
import finalforeach.cosmicreach.blocks.BlockStateGenerator;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import java.util.List;
import static net.pietru.omni_power.OmniPower.MOD_ID;
@Mixin(BlockStateGenerator.class)
public class BlockStateGeneratorMixin {
@Shadow
private static void loadGeneratorsFromFile(FileHandle asset){}
@Inject(method = "<clinit>()V", at = @At("TAIL"))
private static void on_init_tail(CallbackInfo ci) {
List<String> paths = List.of(Gdx.files.internal(MOD_ID + "/assets.txt").readString().split("\n"));
for (String path : paths){
if (path.contains("block_state_generators")) {
System.out.println("Loading " + path);
loadGeneratorsFromFile(GameAssetLoader.loadAsset(path));
}
}
System.out.println("Registered OmniPower BlockStateGens");
}
}

View file

@ -5,7 +5,6 @@ import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.ui.*; import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.scenes.scene2d.utils.NinePatchDrawable; import com.badlogic.gdx.scenes.scene2d.utils.NinePatchDrawable;
import com.badlogic.gdx.utils.JsonValue; import com.badlogic.gdx.utils.JsonValue;
import finalforeach.cosmicreach.GameAssetLoader;
import finalforeach.cosmicreach.blockevents.BlockEventArgs; import finalforeach.cosmicreach.blockevents.BlockEventArgs;
import finalforeach.cosmicreach.blockevents.BlockEventTrigger; import finalforeach.cosmicreach.blockevents.BlockEventTrigger;
import finalforeach.cosmicreach.blocks.BlockPosition; import finalforeach.cosmicreach.blocks.BlockPosition;
@ -16,6 +15,7 @@ import finalforeach.cosmicreach.items.ItemSlot;
import finalforeach.cosmicreach.items.containers.SlotContainer; import finalforeach.cosmicreach.items.containers.SlotContainer;
import finalforeach.cosmicreach.items.screens.BaseItemScreen; import finalforeach.cosmicreach.items.screens.BaseItemScreen;
import finalforeach.cosmicreach.savelib.utils.TriConsumer; import finalforeach.cosmicreach.savelib.utils.TriConsumer;
import finalforeach.cosmicreach.ui.GameStyles;
import finalforeach.cosmicreach.ui.UI; import finalforeach.cosmicreach.ui.UI;
import finalforeach.cosmicreach.ui.widgets.ItemSlotWidget; import finalforeach.cosmicreach.ui.widgets.ItemSlotWidget;
import finalforeach.cosmicreach.world.Zone; import finalforeach.cosmicreach.world.Zone;
@ -23,11 +23,8 @@ import net.pietru.omni_power.OmniPower;
import net.pietru.omni_power.blocks.CustomUIBlockEntity; import net.pietru.omni_power.blocks.CustomUIBlockEntity;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator;
import java.util.Map; import java.util.Map;
import static net.pietru.omni_power.OmniPower.MOD_ID;
public class CustomScreen extends BaseItemScreen { public class CustomScreen extends BaseItemScreen {
public static final Map<String,TriConsumer<Table, CustomScreen,JsonValue>> components = new HashMap<>(); public static final Map<String,TriConsumer<Table, CustomScreen,JsonValue>> components = new HashMap<>();
public static final Map<String,TriConsumer<TextButtonWidget, CustomScreen,JsonValue>> button_events = new HashMap<>(); public static final Map<String,TriConsumer<TextButtonWidget, CustomScreen,JsonValue>> button_events = new HashMap<>();
@ -52,7 +49,7 @@ public class CustomScreen extends BaseItemScreen {
container=((DummyObject) parent).container; container=((DummyObject) parent).container;
Stack stack = new Stack(); Stack stack = new Stack();
Actor background = new Image(UI.container9Patch); Actor background = new Image(GameStyles.containerBackground9Patch);
this.slotWidgets = new ItemSlotWidget[container.getNumSlots()]; this.slotWidgets = new ItemSlotWidget[container.getNumSlots()];
@ -94,9 +91,9 @@ public class CustomScreen extends BaseItemScreen {
ItemSlotWidget slotWidget; ItemSlotWidget slotWidget;
if (slot.isOutputOnly()) if (slot.isOutputOnly())
slotWidget = new ItemSlotWidget(screen.parent, screen.container, slot.getSlotId(), slotWidget = new ItemSlotWidget(screen.parent, screen.container, slot.getSlotId(),
new NinePatchDrawable(UI.containerOutput9Patch), new NinePatchDrawable(GameStyles.containerOutput9Patch),
new NinePatchDrawable(UI.containerOutput9PatchHovered), new NinePatchDrawable(GameStyles.containerOutput9PatchHovered),
new NinePatchDrawable(UI.containerSelected9Patch) new NinePatchDrawable(GameStyles.containerSelected9Patch)
); );
else else
slotWidget = new ItemSlotWidget(screen.parent,screen.container, slot.getSlotId()); slotWidget = new ItemSlotWidget(screen.parent,screen.container, slot.getSlotId());
@ -190,7 +187,7 @@ public class CustomScreen extends BaseItemScreen {
newArgs.blockPos = triggerPos; newArgs.blockPos = triggerPos;
newArgs.zone = zone; newArgs.zone = zone;
newArgs.srcBlockState = targetBlockState; newArgs.srcBlockState = targetBlockState;
newArgs.srcIdentity = args.srcIdentity; newArgs.setSrcIdentity(args.getSrcIdentity());
for (BlockEventTrigger t : customTrigger) { for (BlockEventTrigger t : customTrigger) {
t.act(newArgs); t.act(newArgs);

View file

@ -24,6 +24,7 @@ import finalforeach.cosmicreach.items.ItemStack;
import finalforeach.cosmicreach.rendering.items.ItemRenderer; import finalforeach.cosmicreach.rendering.items.ItemRenderer;
import finalforeach.cosmicreach.settings.ControlSettings; import finalforeach.cosmicreach.settings.ControlSettings;
import finalforeach.cosmicreach.ui.FontRenderer; import finalforeach.cosmicreach.ui.FontRenderer;
import finalforeach.cosmicreach.ui.GameStyles;
import finalforeach.cosmicreach.ui.UI; import finalforeach.cosmicreach.ui.UI;
public class TextButtonWidget extends Table implements Disableable { public class TextButtonWidget extends Table implements Disableable {
@ -45,7 +46,7 @@ public class TextButtonWidget extends Table implements Disableable {
} }
public TextButtonWidget(String text, boolean isSecondary) { public TextButtonWidget(String text, boolean isSecondary) {
this(text, new NinePatchDrawable(isSecondary ? UI.containerOutput9Patch : UI.container9Patch), new NinePatchDrawable(isSecondary ? UI.containerOutput9PatchHovered : UI.container9PatchHovered), new NinePatchDrawable(UI.containerSelected9Patch)); this(text, new NinePatchDrawable(isSecondary ? GameStyles.containerOutput9Patch : GameStyles.container9Patch), new NinePatchDrawable(isSecondary ? GameStyles.containerOutput9PatchHovered : GameStyles.container9PatchHovered), new NinePatchDrawable(GameStyles.containerSelected9Patch));
} }
public TextButtonWidget(String text, Drawable imageDrawable, Drawable imageHoveredDrawable, Drawable imageSelectedDrawable) { public TextButtonWidget(String text, Drawable imageDrawable, Drawable imageHoveredDrawable, Drawable imageSelectedDrawable) {

View file

@ -3,7 +3,10 @@
"minVersion": "0.8", "minVersion": "0.8",
"package": "net.pietru.omni_power.mixins", "package": "net.pietru.omni_power.mixins",
"compatibilityLevel": "JAVA_17", "compatibilityLevel": "JAVA_17",
"mixins": [], "mixins": [
"BlockEventsMixin",
"BlockStateGeneratorMixin"
],
"client": [], "client": [],
"injectors": { "injectors": {
"defaultRequire": 1 "defaultRequire": 1

View file

@ -17,6 +17,7 @@ omni_power:block_events\block_events_lever_blue_off.json
omni_power:block_events\block_events_lever_blue_on.json omni_power:block_events\block_events_lever_blue_on.json
omni_power:block_events\block_events_lever_red_off.json omni_power:block_events\block_events_lever_red_off.json
omni_power:block_events\block_events_lever_red_on.json omni_power:block_events\block_events_lever_red_on.json
omni_power:block_state_generators\cable.json
omni_power:gui\example-boombox.json omni_power:gui\example-boombox.json
omni_power:gui\example.json omni_power:gui\example.json
omni_power:gui\example2.json omni_power:gui\example2.json
@ -24,6 +25,8 @@ omni_power:block_events\adapter\cable_adapter_blue_off.json
omni_power:block_events\adapter\cable_adapter_blue_on.json omni_power:block_events\adapter\cable_adapter_blue_on.json
omni_power:block_events\adapter\cable_adapter_red_off.json omni_power:block_events\adapter\cable_adapter_red_off.json
omni_power:block_events\adapter\cable_adapter_red_on.json omni_power:block_events\adapter\cable_adapter_red_on.json
omni_power:block_events\cables\cable_blue.json
omni_power:block_events\cables\cable_red.json
omni_power:models\blocks\model_cable_blue.json omni_power:models\blocks\model_cable_blue.json
omni_power:models\blocks\model_cable_blue_slim.json omni_power:models\blocks\model_cable_blue_slim.json
omni_power:models\blocks\model_cable_merger.json omni_power:models\blocks\model_cable_merger.json
@ -60,3 +63,67 @@ omni_power:textures\blocks\lever_on_blue.png
omni_power:textures\blocks\lever_on_red.png omni_power:textures\blocks\lever_on_red.png
omni_power:models\blocks\adapter\model_cable_adapter_blue.json omni_power:models\blocks\adapter\model_cable_adapter_blue.json
omni_power:models\blocks\adapter\model_cable_adapter_red.json omni_power:models\blocks\adapter\model_cable_adapter_red.json
omni_power:models\blocks\cable\center.json
omni_power:models\blocks\cable\xm.json
omni_power:models\blocks\cable\xmym.json
omni_power:models\blocks\cable\xmymzm.json
omni_power:models\blocks\cable\xmymzp.json
omni_power:models\blocks\cable\xmymzpzm.json
omni_power:models\blocks\cable\xmyp.json
omni_power:models\blocks\cable\xmypym.json
omni_power:models\blocks\cable\xmypymzm.json
omni_power:models\blocks\cable\xmypymzp.json
omni_power:models\blocks\cable\xmypymzpzm.json
omni_power:models\blocks\cable\xmypzm.json
omni_power:models\blocks\cable\xmypzp.json
omni_power:models\blocks\cable\xmypzpzm.json
omni_power:models\blocks\cable\xmzm.json
omni_power:models\blocks\cable\xmzp.json
omni_power:models\blocks\cable\xmzpzm.json
omni_power:models\blocks\cable\xp.json
omni_power:models\blocks\cable\xpxm.json
omni_power:models\blocks\cable\xpxmym.json
omni_power:models\blocks\cable\xpxmymzm.json
omni_power:models\blocks\cable\xpxmymzp.json
omni_power:models\blocks\cable\xpxmymzpzm.json
omni_power:models\blocks\cable\xpxmyp.json
omni_power:models\blocks\cable\xpxmypym.json
omni_power:models\blocks\cable\xpxmypymzm.json
omni_power:models\blocks\cable\xpxmypymzp.json
omni_power:models\blocks\cable\xpxmypymzpzm.json
omni_power:models\blocks\cable\xpxmypzm.json
omni_power:models\blocks\cable\xpxmypzp.json
omni_power:models\blocks\cable\xpxmypzpzm.json
omni_power:models\blocks\cable\xpxmzm.json
omni_power:models\blocks\cable\xpxmzp.json
omni_power:models\blocks\cable\xpxmzpzm.json
omni_power:models\blocks\cable\xpym.json
omni_power:models\blocks\cable\xpymzm.json
omni_power:models\blocks\cable\xpymzp.json
omni_power:models\blocks\cable\xpymzpzm.json
omni_power:models\blocks\cable\xpyp.json
omni_power:models\blocks\cable\xpypym.json
omni_power:models\blocks\cable\xpypymzm.json
omni_power:models\blocks\cable\xpypymzp.json
omni_power:models\blocks\cable\xpypymzpzm.json
omni_power:models\blocks\cable\xpypzm.json
omni_power:models\blocks\cable\xpypzp.json
omni_power:models\blocks\cable\xpypzpzm.json
omni_power:models\blocks\cable\xpzm.json
omni_power:models\blocks\cable\xpzp.json
omni_power:models\blocks\cable\xpzpzm.json
omni_power:models\blocks\cable\ym.json
omni_power:models\blocks\cable\ymzm.json
omni_power:models\blocks\cable\ymzp.json
omni_power:models\blocks\cable\ymzpzm.json
omni_power:models\blocks\cable\yp.json
omni_power:models\blocks\cable\ypym.json
omni_power:models\blocks\cable\ypymzm.json
omni_power:models\blocks\cable\ypymzp.json
omni_power:models\blocks\cable\ypymzpzm.json
omni_power:models\blocks\cable\ypzm.json
omni_power:models\blocks\cable\ypzp.json
omni_power:models\blocks\cable\ypzpzm.json
omni_power:models\blocks\cable\zm.json
omni_power:models\blocks\cable\zp.json
omni_power:models\blocks\cable\zpzm.json

View file

@ -22,8 +22,7 @@
{ {
"sound": "base:sounds/blocks/e-piano_A.ogg", "sound": "base:sounds/blocks/e-piano_A.ogg",
"volume": 1, "volume": 1,
"pitch": 1, "pitch": 1
"position": [0, 0, 0]
} }
} }
], ],
@ -35,8 +34,7 @@
{ {
"sound": "base:sounds/blocks/e-piano_A.ogg", "sound": "base:sounds/blocks/e-piano_A.ogg",
"volume": 1, "volume": 1,
"pitch": 2, "pitch": 2
"position": [0, 0, 0]
} }
} }
] ]

View file

@ -0,0 +1,86 @@
{
"parent":"base:block_events_default",
"stringId": "omni_power:events_cable_blue",
"triggers":
{
"onBreak":
[
{
"actionId": "base:run_trigger",
"parameters":
{
"triggerId": "relayPlayBreakSound"
}
},
{
"actionId": "base:replace_block_state",
"parameters":
{
"xOff": 0, "yOff": 0, "zOff": 0,
"blockStateId": "base:air[default]"
}
},
{
"actionId": "base:item_drop",
"if":
{
"srcPlayer":
{
"gamemode":
{
"allows_items_drop_on_break": true
}
}
}
},
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_blue_connect",
"cable_group": "cable_blue",
"self_only": false,
"self_run": false
}
}
],
"onPlace":
[
{
"actionId": "base:replace_block_state",
"parameters":
{
"xOff": 0, "yOff": 0, "zOff": 0,
"blockStateId": "self"
}
},
{
"actionId": "base:run_trigger",
"parameters":
{
"triggerId": "relayPlayPlaceSound"
}
},
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_blue_connect",
"cable_group": "cable_blue",
"self_only": false
}
}
],
"cable_blue_connect":
[
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_blue_connect",
"cable_group": "cable_blue"
}
}
]
}
}

View file

@ -0,0 +1,86 @@
{
"parent":"base:block_events_default",
"stringId": "omni_power:events_cable_red",
"triggers":
{
"onBreak":
[
{
"actionId": "base:run_trigger",
"parameters":
{
"triggerId": "relayPlayBreakSound"
}
},
{
"actionId": "base:replace_block_state",
"parameters":
{
"xOff": 0, "yOff": 0, "zOff": 0,
"blockStateId": "base:air[default]"
}
},
{
"actionId": "base:item_drop",
"if":
{
"srcPlayer":
{
"gamemode":
{
"allows_items_drop_on_break": true
}
}
}
},
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_red_connect",
"cable_group": "cable_red",
"self_only": false,
"self_run": false
}
}
],
"onPlace":
[
{
"actionId": "base:replace_block_state",
"parameters":
{
"xOff": 0, "yOff": 0, "zOff": 0,
"blockStateId": "self"
}
},
{
"actionId": "base:run_trigger",
"parameters":
{
"triggerId": "relayPlayPlaceSound"
}
},
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_red_connect",
"cable_group": "cable_red",
"self_only": false
}
}
],
"cable_red_connect":
[
{
"actionId": "omni_power:connect",
"parameters":
{
"update_triggerId": "cable_red_connect",
"cable_group": "cable_red"
}
}
]
}
}

File diff suppressed because it is too large Load diff

View file

@ -14,8 +14,12 @@
"default,cable_red,slim": "default,cable_red,slim":
{ {
"modelName": "omni_power:models/blocks/model_cable_red_slim.json", "modelName": "omni_power:models/blocks/model_cable_red_slim.json",
"blockEventsId": "omni_power:events_cable_red",
"stateGenerators": ["omni_power:cable_all"],
"hardness": 1,
"isTransparent": false, "isTransparent": false,
"isOpaque": false, "isOpaque": false,
"catalogHidden": true,
"lightLevelRed": 0, "lightLevelRed": 0,
"lightLevelGreen": 0, "lightLevelGreen": 0,
"lightLevelBlue": 0 "lightLevelBlue": 0
@ -34,8 +38,12 @@
"default,cable_blue,slim": "default,cable_blue,slim":
{ {
"modelName": "omni_power:models/blocks/model_cable_blue_slim.json", "modelName": "omni_power:models/blocks/model_cable_blue_slim.json",
"blockEventsId": "omni_power:events_cable_blue",
"stateGenerators": ["omni_power:cable_all"],
"hardness": 1,
"isTransparent": false, "isTransparent": false,
"isOpaque": false, "isOpaque": false,
"catalogHidden": true,
"lightLevelRed": 0, "lightLevelRed": 0,
"lightLevelGreen": 0, "lightLevelGreen": 0,
"lightLevelBlue": 0 "lightLevelBlue": 0

View file

@ -0,0 +1,82 @@
{
"cuboids": [
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,484 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
12,
6,
6,
16,
10,
10
],
"faces": {
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,417 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
0,
6,
6,
4,
10,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,350 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
0,
6,
10,
4,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,283 @@
{
"cuboids": [
{
"localBounds": [
6,
12,
6,
10,
16,
10
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,149 @@
{
"cuboids": [
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -0,0 +1,216 @@
{
"cuboids": [
{
"localBounds": [
6,
6,
0,
10,
10,
4
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
6,
6,
12,
10,
10,
16
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "side"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": true,
"texture": "side"
}
}
},
{
"localBounds": [
4,
4,
4,
12,
12,
12
],
"faces": {
"localNegX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosX": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosY": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localNegZ": {
"uv": [
16,
0,
0,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
},
"localPosZ": {
"uv": [
0,
0,
16,
16
],
"ambientocclusion": true,
"cullFace": false,
"texture": "center"
}
}
}
]
}

View file

@ -11,6 +11,10 @@
"fileName": "omni_power:textures/blocks/cable_blue.png" "fileName": "omni_power:textures/blocks/cable_blue.png"
}, },
"side": "side":
{
"fileName": "omni_power:textures/blocks/cable_blue.png"
},
"center":
{ {
"fileName": "omni_power:textures/blocks/cable_blue.png" "fileName": "omni_power:textures/blocks/cable_blue.png"
} }

View file

@ -11,6 +11,10 @@
"fileName": "omni_power:textures/blocks/cable_red.png" "fileName": "omni_power:textures/blocks/cable_red.png"
}, },
"side": "side":
{
"fileName": "omni_power:textures/blocks/cable_red.png"
},
"center":
{ {
"fileName": "omni_power:textures/blocks/cable_red.png" "fileName": "omni_power:textures/blocks/cable_red.png"
} }