diff --git a/src/main/java/fr/adrien1106/reframed/ReFramed.java b/src/main/java/fr/adrien1106/reframed/ReFramed.java index 8c1e693..46b02ba 100644 --- a/src/main/java/fr/adrien1106/reframed/ReFramed.java +++ b/src/main/java/fr/adrien1106/reframed/ReFramed.java @@ -37,7 +37,7 @@ public class ReFramed implements ModInitializer { public static final String MODID = "reframed"; public static final ArrayList BLOCKS = new ArrayList<>(); - public static Block CUBE, SMALL_CUBE, SMALL_CUBES_STEP, STAIR, HALF_STAIR, STAIRS_CUBE, HALF_STAIRS_SLAB, HALF_STAIRS_STAIR, SLAB, SLABS_CUBE, STEP, STEPS_SLAB, LAYER, PILLAR; + public static Block CUBE, SMALL_CUBE, SMALL_CUBES_STEP, STAIR, HALF_STAIR, STAIRS_CUBE, HALF_STAIRS_SLAB, HALF_STAIRS_STAIR, SLAB, SLABS_CUBE, STEP, STEPS_SLAB, LAYER, PILLAR, WALL; public static final ArrayList ITEMS = new ArrayList<>(); public static Item HAMMER, SCREWDRIVER, BLUEPRINT, BLUEPRINT_WRITTEN; @@ -65,6 +65,7 @@ public class ReFramed implements ModInitializer { STEP = registerBlock("step" , new ReFramedStepBlock(cp(Blocks.OAK_SLAB))); STEPS_SLAB = registerBlock("steps_slab" , new ReFramedStepsSlabBlock(cp(Blocks.OAK_SLAB))); PILLAR = registerBlock("pillar" , new ReFramedPillarBlock(cp(Blocks.OAK_FENCE))); + WALL = registerBlock("wall" , new ReframedWallBlock(cp(Blocks.OAK_FENCE))); HAMMER = registerItem("hammer" , new ReFramedHammerItem(new Item.Settings().maxCount(1))); SCREWDRIVER = registerItem("screwdriver" , new ReFramedScrewdriverItem(new Item.Settings().maxCount(1))); diff --git a/src/main/java/fr/adrien1106/reframed/block/ReFramedHalfStairBlock.java b/src/main/java/fr/adrien1106/reframed/block/ReFramedHalfStairBlock.java index 3674153..bcf3dd1 100644 --- a/src/main/java/fr/adrien1106/reframed/block/ReFramedHalfStairBlock.java +++ b/src/main/java/fr/adrien1106/reframed/block/ReFramedHalfStairBlock.java @@ -210,8 +210,8 @@ public class ReFramedHalfStairBlock extends WaterloggableReFramedBlock implement RecipeProvider.offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, this, ReFramed.CUBE, 2); ShapedRecipeJsonBuilder .create(RecipeCategory.BUILDING_BLOCKS, this, 4) - .pattern("I ") - .pattern("II ") + .pattern("I ") + .pattern("II") .input('I', ReFramed.CUBE) .criterion(FabricRecipeProvider.hasItem(ReFramed.CUBE), FabricRecipeProvider.conditionsFromItem(ReFramed.CUBE)) .criterion(FabricRecipeProvider.hasItem(this), FabricRecipeProvider.conditionsFromItem(this)) diff --git a/src/main/java/fr/adrien1106/reframed/block/ReFramedPillarBlock.java b/src/main/java/fr/adrien1106/reframed/block/ReFramedPillarBlock.java index 1cb8153..3e391fd 100644 --- a/src/main/java/fr/adrien1106/reframed/block/ReFramedPillarBlock.java +++ b/src/main/java/fr/adrien1106/reframed/block/ReFramedPillarBlock.java @@ -4,13 +4,18 @@ import fr.adrien1106.reframed.ReFramed; import fr.adrien1106.reframed.generator.BlockStateProvider; import fr.adrien1106.reframed.generator.GBlockstate; import fr.adrien1106.reframed.util.VoxelHelper; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; import net.minecraft.block.Block; import net.minecraft.block.BlockState; import net.minecraft.block.ShapeContext; import net.minecraft.data.client.BlockStateSupplier; import net.minecraft.data.client.MultipartBlockStateSupplier; +import net.minecraft.data.server.recipe.RecipeExporter; +import net.minecraft.data.server.recipe.RecipeProvider; +import net.minecraft.data.server.recipe.ShapedRecipeJsonBuilder; import net.minecraft.item.BlockItem; import net.minecraft.item.ItemPlacementContext; +import net.minecraft.recipe.book.RecipeCategory; import net.minecraft.state.StateManager; import net.minecraft.util.Identifier; import net.minecraft.util.math.BlockPos; @@ -92,6 +97,19 @@ public class ReFramedPillarBlock extends WaterloggableReFramedBlock implements B GBlockstate.variant(model_id, true, R90, R0)); } + @Override + public void setRecipe(RecipeExporter exporter) { + RecipeProvider.offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, this, ReFramed.CUBE, 4); + ShapedRecipeJsonBuilder + .create(RecipeCategory.BUILDING_BLOCKS, this, 8) + .pattern("I") + .pattern("I") + .input('I', ReFramed.CUBE) + .criterion(FabricRecipeProvider.hasItem(ReFramed.CUBE), FabricRecipeProvider.conditionsFromItem(ReFramed.CUBE)) + .criterion(FabricRecipeProvider.hasItem(this), FabricRecipeProvider.conditionsFromItem(this)) + .offerTo(exporter); + } + static { final VoxelShape PILLAR = createCuboidShape(0, 4, 4, 16, 12, 12); PILLAR_VOXELS = VoxelHelper.VoxelListBuilder.create(PILLAR, 3) diff --git a/src/main/java/fr/adrien1106/reframed/block/ReframedWallBlock.java b/src/main/java/fr/adrien1106/reframed/block/ReframedWallBlock.java new file mode 100644 index 0000000..4fef9a3 --- /dev/null +++ b/src/main/java/fr/adrien1106/reframed/block/ReframedWallBlock.java @@ -0,0 +1,69 @@ +package fr.adrien1106.reframed.block; + +import fr.adrien1106.reframed.ReFramed; +import fr.adrien1106.reframed.generator.BlockStateProvider; +import fr.adrien1106.reframed.util.blocks.Corner; +import fr.adrien1106.reframed.util.blocks.WallShape; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.data.client.BlockStateSupplier; +import net.minecraft.data.server.recipe.RecipeExporter; +import net.minecraft.data.server.recipe.RecipeProvider; +import net.minecraft.data.server.recipe.ShapedRecipeJsonBuilder; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.recipe.book.RecipeCategory; +import net.minecraft.state.StateManager; +import net.minecraft.util.math.Direction; +import org.jetbrains.annotations.Nullable; + +import static fr.adrien1106.reframed.util.blocks.BlockProperties.*; +import static net.minecraft.state.property.Properties.AXIS; + +public class ReframedWallBlock extends WaterloggableReFramedBlock implements BlockStateProvider { + + private record ModelCacheKey() {} + + public ReframedWallBlock(Settings settings) { + super(settings); + } + + @Override + public Object getModelCacheKey(BlockState state) { + return new ModelCacheKey(); + } + + @Override + public int getModelStateCount() { + return 3750; + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + super.appendProperties(builder.add()); + } + + @Override + public @Nullable BlockState getPlacementState(ItemPlacementContext ctx) { + Direction.Axis axis = ctx.getSide().getAxis(); + return super.getPlacementState(ctx); + } + + @Override + public BlockStateSupplier getMultipart() { + return null; // TODO unleash hell + } + + @Override + public void setRecipe(RecipeExporter exporter) { + RecipeProvider.offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, this, ReFramed.CUBE, 2); + ShapedRecipeJsonBuilder + .create(RecipeCategory.BUILDING_BLOCKS, this, 4) + .pattern("III") + .pattern("III") + .input('I', ReFramed.CUBE) + .criterion(FabricRecipeProvider.hasItem(ReFramed.CUBE), FabricRecipeProvider.conditionsFromItem(ReFramed.CUBE)) + .criterion(FabricRecipeProvider.hasItem(this), FabricRecipeProvider.conditionsFromItem(this)) + .offerTo(exporter); + } +} diff --git a/src/main/java/fr/adrien1106/reframed/client/ReFramedClient.java b/src/main/java/fr/adrien1106/reframed/client/ReFramedClient.java index 450267c..9b9b610 100644 --- a/src/main/java/fr/adrien1106/reframed/client/ReFramedClient.java +++ b/src/main/java/fr/adrien1106/reframed/client/ReFramedClient.java @@ -27,70 +27,111 @@ public class ReFramedClient implements ClientModInitializer { BlockRenderLayerMap.INSTANCE.putBlocks(RenderLayer.getCutout(), ReFramed.BLOCKS.toArray(new Block[0])); // CUBE - HELPER.addReFramedModel("cube_special" , HELPER.auto(new Identifier("block/cube"))); + HELPER.addReFramedModel("cube" , HELPER.auto(new Identifier("block/cube"))); // SMALL_CUBE - HELPER.addReFramedModel("small_cube_special" , HELPER.auto(ReFramed.id("block/small_cube/base"))); + HELPER.addReFramedModel("small_cube" , HELPER.auto(ReFramed.id("block/small_cube/base"))); // SMALL_CUBES_STEP - HELPER.addReFramedModel("small_cubes_step_special" , HELPER.autoDouble(ReFramed.id("block/small_cube/base"), ReFramed.id("block/small_cube/step/base"))); - HELPER.addReFramedModel("small_cubes_step_reverse_special" , HELPER.autoDouble(ReFramed.id("block/small_cube/step/base"), ReFramed.id("block/small_cube/base"))); + HELPER.addReFramedModel("small_cubes_step" , HELPER.autoDouble(ReFramed.id("block/small_cube/base"), ReFramed.id("block/small_cube/step/base"))); + HELPER.addReFramedModel("small_cubes_step_reverse" , HELPER.autoDouble(ReFramed.id("block/small_cube/step/base"), ReFramed.id("block/small_cube/base"))); // SLAB - HELPER.addReFramedModel("slab_special" , HELPER.auto(new Identifier("block/slab"))); + HELPER.addReFramedModel("slab" , HELPER.auto(new Identifier("block/slab"))); // SLAB_CUBE - HELPER.addReFramedModel("double_slab_special" , HELPER.autoDouble(new Identifier("block/slab"), new Identifier("block/slab_top"))); + HELPER.addReFramedModel("double_slab" , HELPER.autoDouble(new Identifier("block/slab"), new Identifier("block/slab_top"))); // STAIR - HELPER.addReFramedModel("stair_special" , HELPER.auto(ReFramed.id("block/stair/straight"))); - HELPER.addReFramedModel("outers_stair_special" , HELPER.auto(ReFramed.id("block/stair/double_outer"))); - HELPER.addReFramedModel("inner_stair_special" , HELPER.auto(ReFramed.id("block/stair/inner"))); - HELPER.addReFramedModel("outer_stair_special" , HELPER.auto(ReFramed.id("block/stair/outer"))); - HELPER.addReFramedModel("outer_side_stair_special" , HELPER.auto(ReFramed.id("block/stair/outer_side"))); + HELPER.addReFramedModel("stair" , HELPER.auto(ReFramed.id("block/stair/straight"))); + HELPER.addReFramedModel("outers_stair" , HELPER.auto(ReFramed.id("block/stair/double_outer"))); + HELPER.addReFramedModel("inner_stair" , HELPER.auto(ReFramed.id("block/stair/inner"))); + HELPER.addReFramedModel("outer_stair" , HELPER.auto(ReFramed.id("block/stair/outer"))); + HELPER.addReFramedModel("outer_side_stair" , HELPER.auto(ReFramed.id("block/stair/outer_side"))); // STAIRS_CUBE - HELPER.addReFramedModel("stairs_cube_special" , HELPER.autoDouble(ReFramed.id("block/stair/straight"), ReFramed.id("block/stair/cube/straight"))); - HELPER.addReFramedModel("outers_stairs_cube_special" , HELPER.autoDouble(ReFramed.id("block/stair/double_outer"), ReFramed.id("block/stair/cube/double_outer"))); - HELPER.addReFramedModel("inner_stairs_cube_special" , HELPER.autoDouble(ReFramed.id("block/stair/inner"), ReFramed.id("block/stair/cube/inner"))); - HELPER.addReFramedModel("outer_stairs_cube_special" , HELPER.autoDouble(ReFramed.id("block/stair/outer"), ReFramed.id("block/stair/cube/outer"))); - HELPER.addReFramedModel("outer_side_stairs_cube_special" , HELPER.autoDouble(ReFramed.id("block/stair/outer_side"), ReFramed.id("block/stair/cube/outer_side"))); + HELPER.addReFramedModel("stairs_cube" , HELPER.autoDouble(ReFramed.id("block/stair/straight"), ReFramed.id("block/stair/cube/straight"))); + HELPER.addReFramedModel("outers_stairs_cube" , HELPER.autoDouble(ReFramed.id("block/stair/double_outer"), ReFramed.id("block/stair/cube/double_outer"))); + HELPER.addReFramedModel("inner_stairs_cube" , HELPER.autoDouble(ReFramed.id("block/stair/inner"), ReFramed.id("block/stair/cube/inner"))); + HELPER.addReFramedModel("outer_stairs_cube" , HELPER.autoDouble(ReFramed.id("block/stair/outer"), ReFramed.id("block/stair/cube/outer"))); + HELPER.addReFramedModel("outer_side_stairs_cube" , HELPER.autoDouble(ReFramed.id("block/stair/outer_side"), ReFramed.id("block/stair/cube/outer_side"))); // HALF_STAIR - HELPER.addReFramedModel("half_stair_down_special" , HELPER.auto(ReFramed.id("block/half_stair/down"))); - HELPER.addReFramedModel("half_stair_side_special" , HELPER.auto(ReFramed.id("block/half_stair/side"))); + HELPER.addReFramedModel("half_stair_down" , HELPER.auto(ReFramed.id("block/half_stair/down"))); + HELPER.addReFramedModel("half_stair_side" , HELPER.auto(ReFramed.id("block/half_stair/side"))); // HALF_STAIRS_SLAB - HELPER.addReFramedModel("half_stairs_slab_down_special" , HELPER.autoDouble(ReFramed.id("block/half_stair/down"), ReFramed.id("block/half_stair/slab/down"))); - HELPER.addReFramedModel("half_stairs_slab_side_special" , HELPER.autoDouble(ReFramed.id("block/half_stair/side"), ReFramed.id("block/half_stair/slab/side"))); + HELPER.addReFramedModel("half_stairs_slab_down" , HELPER.autoDouble(ReFramed.id("block/half_stair/down"), ReFramed.id("block/half_stair/slab/down"))); + HELPER.addReFramedModel("half_stairs_slab_side" , HELPER.autoDouble(ReFramed.id("block/half_stair/side"), ReFramed.id("block/half_stair/slab/side"))); // HALF_STAIRS_STAIR - HELPER.addReFramedModel("half_stairs_stair_down_special" , HELPER.autoDouble(ReFramed.id("block/half_stair/down"), ReFramed.id("block/half_stair/stair/down"))); - HELPER.addReFramedModel("half_stairs_stair_side_special" , HELPER.autoDouble(ReFramed.id("block/half_stair/side"), ReFramed.id("block/half_stair/stair/side"))); - HELPER.addReFramedModel("half_stairs_stair_reverse_special" , HELPER.autoDouble(ReFramed.id("block/half_stair/stair/side"), ReFramed.id("block/half_stair/side"))); + HELPER.addReFramedModel("half_stairs_stair_down" , HELPER.autoDouble(ReFramed.id("block/half_stair/down"), ReFramed.id("block/half_stair/stair/down"))); + HELPER.addReFramedModel("half_stairs_stair_side" , HELPER.autoDouble(ReFramed.id("block/half_stair/side"), ReFramed.id("block/half_stair/stair/side"))); + HELPER.addReFramedModel("half_stairs_stair_reverse" , HELPER.autoDouble(ReFramed.id("block/half_stair/stair/side"), ReFramed.id("block/half_stair/side"))); // STEP - HELPER.addReFramedModel("step_special" , HELPER.auto(ReFramed.id("block/step/down"))); + HELPER.addReFramedModel("step" , HELPER.auto(ReFramed.id("block/step/down"))); // STEPS_SLAB - HELPER.addReFramedModel("steps_slab_special" , HELPER.autoDouble(ReFramed.id("block/step/down"), ReFramed.id("block/step/slab/down"))); - HELPER.addReFramedModel("steps_slab_side_special" , HELPER.autoDouble(ReFramed.id("block/step/side"), ReFramed.id("block/step/slab/side"))); + HELPER.addReFramedModel("steps_slab" , HELPER.autoDouble(ReFramed.id("block/step/down"), ReFramed.id("block/step/slab/down"))); + HELPER.addReFramedModel("steps_slab_side" , HELPER.autoDouble(ReFramed.id("block/step/side"), ReFramed.id("block/step/slab/side"))); // LAYER - HELPER.addReFramedModel("layer_1_special" , HELPER.auto(new Identifier("block/snow_height2"))); - HELPER.addReFramedModel("layer_2_special" , HELPER.auto(new Identifier("block/snow_height4"))); - HELPER.addReFramedModel("layer_3_special" , HELPER.auto(new Identifier("block/snow_height6"))); - HELPER.addReFramedModel("layer_4_special" , HELPER.auto(new Identifier("block/snow_height8"))); - HELPER.addReFramedModel("layer_5_special" , HELPER.auto(new Identifier("block/snow_height10"))); - HELPER.addReFramedModel("layer_6_special" , HELPER.auto(new Identifier("block/snow_height12"))); - HELPER.addReFramedModel("layer_7_special" , HELPER.auto(new Identifier("block/snow_height14"))); - HELPER.addReFramedModel("layer_8_special" , HELPER.auto(new Identifier("block/cube"))); + HELPER.addReFramedModel("layer_1" , HELPER.auto(new Identifier("block/snow_height2"))); + HELPER.addReFramedModel("layer_2" , HELPER.auto(new Identifier("block/snow_height4"))); + HELPER.addReFramedModel("layer_3" , HELPER.auto(new Identifier("block/snow_height6"))); + HELPER.addReFramedModel("layer_4" , HELPER.auto(new Identifier("block/snow_height8"))); + HELPER.addReFramedModel("layer_5" , HELPER.auto(new Identifier("block/snow_height10"))); + HELPER.addReFramedModel("layer_6" , HELPER.auto(new Identifier("block/snow_height12"))); + HELPER.addReFramedModel("layer_7" , HELPER.auto(new Identifier("block/snow_height14"))); + HELPER.addReFramedModel("layer_8" , HELPER.auto(new Identifier("block/cube"))); // PILLAR - HELPER.addReFramedModel("pillar_special" , HELPER.auto(ReFramed.id("block/pillar"))); + HELPER.addReFramedModel("pillar" , HELPER.auto(ReFramed.id("block/pillar"))); + // WALL + HELPER.addReFramedModel("wall_inventory" , HELPER.auto(ReFramed.id("block/wall/inventory/default"))); + // --------------------- pillar + HELPER.addReFramedModel("wall_core" , HELPER.auto(ReFramed.id("block/wall/pillar/core"))); // shares AXIS only + HELPER.addReFramedModel("wall_pillar_none" , HELPER.auto(ReFramed.id("block/wall/pillar/none"))); // only shape_none (4 * 3 axis) + HELPER.addReFramedModel("wall_pillar_negative" , HELPER.auto(ReFramed.id("block/wall/pillar/bottom"))); + HELPER.addReFramedModel("wall_pillar_both" , HELPER.auto(ReFramed.id("block/wall/pillar/both"))); + HELPER.addReFramedModel("wall_pillar_positive" , HELPER.auto(ReFramed.id("block/wall/pillar/top"))); + HELPER.addReFramedModel("wall_pillar_middle" , HELPER.auto(ReFramed.id("block/wall/pillar/middle"))); + // --------------------- side + HELPER.addReFramedModel("wall_side_negative" , HELPER.auto(ReFramed.id("block/wall/side/bottom"))); + HELPER.addReFramedModel("wall_side_both" , HELPER.auto(ReFramed.id("block/wall/side/both"))); + HELPER.addReFramedModel("wall_side_positive" , HELPER.auto(ReFramed.id("block/wall/side/top"))); + HELPER.addReFramedModel("wall_side_middle" , HELPER.auto(ReFramed.id("block/wall/side/middle"))); + // --------------------- junction + HELPER.addReFramedModel("wall_junction_negative" , HELPER.auto(ReFramed.id("block/wall/junction/bottom"))); // (4 * 3) possible + HELPER.addReFramedModel("wall_junction_both" , HELPER.auto(ReFramed.id("block/wall/junction/both"))); + HELPER.addReFramedModel("wall_junction_positive" , HELPER.auto(ReFramed.id("block/wall/junction/top"))); + HELPER.addReFramedModel("wall_junction_middle" , HELPER.auto(ReFramed.id("block/wall/junction/middle"))); + // --------------------- junction_c + HELPER.addReFramedModel("wall_junction_negative_c" , HELPER.auto(ReFramed.id("block/wall/junction/bottom_c"))); + HELPER.addReFramedModel("wall_junction_both_c" , HELPER.auto(ReFramed.id("block/wall/junction/both_c"))); + HELPER.addReFramedModel("wall_junction_positive_c" , HELPER.auto(ReFramed.id("block/wall/junction/top_c"))); + HELPER.addReFramedModel("wall_junction_middle_c" , HELPER.auto(ReFramed.id("block/wall/junction/middle_c"))); + // --------------------- junction_i + HELPER.addReFramedModel("wall_junction_negative_i" , HELPER.auto(ReFramed.id("block/wall/junction/bottom_i"))); + HELPER.addReFramedModel("wall_junction_both_i" , HELPER.auto(ReFramed.id("block/wall/junction/both_i"))); + HELPER.addReFramedModel("wall_junction_positive_i" , HELPER.auto(ReFramed.id("block/wall/junction/top_i"))); + HELPER.addReFramedModel("wall_junction_middle_i" , HELPER.auto(ReFramed.id("block/wall/junction/middle_i"))); + // --------------------- junction_t + HELPER.addReFramedModel("wall_junction_negative_t" , HELPER.auto(ReFramed.id("block/wall/junction/bottom_t"))); + HELPER.addReFramedModel("wall_junction_both_t" , HELPER.auto(ReFramed.id("block/wall/junction/both_t"))); + HELPER.addReFramedModel("wall_junction_positive_t" , HELPER.auto(ReFramed.id("block/wall/junction/top_t"))); + HELPER.addReFramedModel("wall_junction_middle_t" , HELPER.auto(ReFramed.id("block/wall/junction/middle_t"))); + // --------------------- junction_x + HELPER.addReFramedModel("wall_junction_negative_x" , HELPER.auto(ReFramed.id("block/wall/junction/bottom_x"))); // (Axis only) + HELPER.addReFramedModel("wall_junction_both_x" , HELPER.auto(ReFramed.id("block/wall/junction/both_x"))); + HELPER.addReFramedModel("wall_junction_positive_x" , HELPER.auto(ReFramed.id("block/wall/junction/top_x"))); + HELPER.addReFramedModel("wall_junction_middle_x" , HELPER.auto(ReFramed.id("block/wall/junction/middle_x"))); + //item model assignments (in lieu of models/item/___.json) - HELPER.assignItemModel("cube_special" , ReFramed.CUBE); - HELPER.assignItemModel("small_cube_special" , ReFramed.SMALL_CUBE); - HELPER.assignItemModel("small_cubes_step_special" , ReFramed.SMALL_CUBES_STEP); - HELPER.assignItemModel("slab_special" , ReFramed.SLAB); - HELPER.assignItemModel("double_slab_special" , ReFramed.SLABS_CUBE); - HELPER.assignItemModel("stair_special" , ReFramed.STAIR); - HELPER.assignItemModel("stairs_cube_special" , ReFramed.STAIRS_CUBE); - HELPER.assignItemModel("half_stair_down_special" , ReFramed.HALF_STAIR); - HELPER.assignItemModel("half_stairs_slab_down_special" , ReFramed.HALF_STAIRS_SLAB); - HELPER.assignItemModel("half_stairs_stair_down_special", ReFramed.HALF_STAIRS_STAIR); - HELPER.assignItemModel("step_special" , ReFramed.STEP); - HELPER.assignItemModel("steps_slab_special" , ReFramed.STEPS_SLAB); - HELPER.assignItemModel("layer_1_special" , ReFramed.LAYER); - HELPER.assignItemModel("pillar_special" , ReFramed.PILLAR); + HELPER.assignItemModel("cube" , ReFramed.CUBE); + HELPER.assignItemModel("small_cube" , ReFramed.SMALL_CUBE); + HELPER.assignItemModel("small_cubes_step" , ReFramed.SMALL_CUBES_STEP); + HELPER.assignItemModel("slab" , ReFramed.SLAB); + HELPER.assignItemModel("double_slab" , ReFramed.SLABS_CUBE); + HELPER.assignItemModel("stair" , ReFramed.STAIR); + HELPER.assignItemModel("stairs_cube" , ReFramed.STAIRS_CUBE); + HELPER.assignItemModel("half_stair_down" , ReFramed.HALF_STAIR); + HELPER.assignItemModel("half_stairs_slab_down" , ReFramed.HALF_STAIRS_SLAB); + HELPER.assignItemModel("half_stairs_stair_down", ReFramed.HALF_STAIRS_STAIR); + HELPER.assignItemModel("step" , ReFramed.STEP); + HELPER.assignItemModel("steps_slab" , ReFramed.STEPS_SLAB); + HELPER.assignItemModel("layer_1" , ReFramed.LAYER); + HELPER.assignItemModel("pillar" , ReFramed.PILLAR); + HELPER.assignItemModel("wall_inventory" , ReFramed.WALL); } private void privateInit() { diff --git a/src/main/java/fr/adrien1106/reframed/client/ReFramedClientHelper.java b/src/main/java/fr/adrien1106/reframed/client/ReFramedClientHelper.java index caa2c40..7587275 100644 --- a/src/main/java/fr/adrien1106/reframed/client/ReFramedClientHelper.java +++ b/src/main/java/fr/adrien1106/reframed/client/ReFramedClientHelper.java @@ -40,15 +40,15 @@ public class ReFramedClientHelper { } public void addReFramedModel(String id, UnbakedModel unbaked) { - prov.addReFramedModel(ReFramed.id(id), unbaked); + prov.addReFramedModel(ReFramed.id(id + "_special"), unbaked); } public void assignItemModel(String id, ItemConvertible... item_convertibles) { - prov.assignItemModel(ReFramed.id(id), item_convertibles); + prov.assignItemModel(ReFramed.id(id + "_special"), item_convertibles); } - public CamoAppearanceManager getCamoApperanceManager(Function spriteLookup) { - return prov.getCamoApperanceManager(spriteLookup); + public CamoAppearanceManager getCamoAppearanceManager(Function spriteLookup) { + return prov.getCamoAppearanceManager(spriteLookup); } public @NotNull Renderer getFabricRenderer() { diff --git a/src/main/java/fr/adrien1106/reframed/client/ReFramedModelProvider.java b/src/main/java/fr/adrien1106/reframed/client/ReFramedModelProvider.java index ab6b946..ba78746 100644 --- a/src/main/java/fr/adrien1106/reframed/client/ReFramedModelProvider.java +++ b/src/main/java/fr/adrien1106/reframed/client/ReFramedModelProvider.java @@ -44,7 +44,7 @@ public class ReFramedModelProvider implements ModelResourceProvider, ModelVarian /// camo appearance manager cache - public CamoAppearanceManager getCamoApperanceManager(Function spriteLookup) { + public CamoAppearanceManager getCamoAppearanceManager(Function spriteLookup) { //This is kind of needlessly sketchy using the "volatile double checked locking" pattern. //I'd like all frame models to use the same CamoApperanceManager, despite the model //baking process happening concurrently on several threads, but I also don't want to diff --git a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedAutoRetexturedModel.java b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedAutoRetexturedModel.java index b789e9f..522d17a 100644 --- a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedAutoRetexturedModel.java +++ b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedAutoRetexturedModel.java @@ -33,7 +33,7 @@ public class UnbakedAutoRetexturedModel extends UnbakedRetexturedModel { public BakedModel bake(Baker baker, Function texture_getter, ModelBakeSettings bake_settings, Identifier identifier) { return new RetexturingBakedModel( baker.bake(parent, bake_settings), - ReFramedClient.HELPER.getCamoApperanceManager(texture_getter), + ReFramedClient.HELPER.getCamoAppearanceManager(texture_getter), theme_index, bake_settings, item_state, diff --git a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedJsonRetexturedModel.java b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedJsonRetexturedModel.java index 48e5617..15b2b62 100644 --- a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedJsonRetexturedModel.java +++ b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedJsonRetexturedModel.java @@ -41,7 +41,7 @@ public class UnbakedJsonRetexturedModel extends UnbakedRetexturedModel { return new RetexturingBakedModel( baker.bake(parent, bake_settings), - ReFramedClient.HELPER.getCamoApperanceManager(spriteLookup), + ReFramedClient.HELPER.getCamoAppearanceManager(spriteLookup), theme_index, bake_settings, item_state, diff --git a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedRetexturedModel.java b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedRetexturedModel.java index 948cd0f..6355a30 100644 --- a/src/main/java/fr/adrien1106/reframed/client/model/UnbakedRetexturedModel.java +++ b/src/main/java/fr/adrien1106/reframed/client/model/UnbakedRetexturedModel.java @@ -20,8 +20,9 @@ public abstract class UnbakedRetexturedModel implements UnbakedModel { this.parent = parent; } - public void setThemeIndex(int theme_index) { + public UnbakedRetexturedModel setThemeIndex(int theme_index) { this.theme_index = theme_index; + return this; } @Override diff --git a/src/main/resources/assets/reframed/models/block/wall/full/pillar/both.json b/src/main/resources/assets/reframed/models/block/wall/full/pillar/both.json new file mode 100644 index 0000000..3b97874 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/pillar/both.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 4, 5, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 11, 5, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/pillar/bottom.json b/src/main/resources/assets/reframed/models/block/wall/full/pillar/bottom.json new file mode 100644 index 0000000..dfa7cb4 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/pillar/bottom.json @@ -0,0 +1,35 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [5, 14, 5], + "faces": { + "north": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 5, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 4], + "to": [11, 14, 5], + "faces": { + "north": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 14, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 12, 2], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 2], "texture": "#side"}, + "up": {"uv": [5, 4, 12, 5], "texture": "#top", "cullface": "up"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/pillar/middle.json b/src/main/resources/assets/reframed/models/block/wall/full/pillar/middle.json new file mode 100644 index 0000000..2b04647 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/pillar/middle.json @@ -0,0 +1,42 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 2, 4], + "to": [5, 14, 5], + "faces": { + "north": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 14], "texture": "#side"} + } + }, + { + "from": [4, 14, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 12, 2], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 2], "texture": "#side"}, + "up": {"uv": [4, 4, 11, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [4, 0, 4], + "to": [11, 2, 5], + "faces": { + "north": {"uv": [5, 14, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 14, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 2, 4], + "to": [11, 14, 5], + "faces": { + "north": {"uv": [5, 2, 11, 14], "texture": "#side"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/pillar/top.json b/src/main/resources/assets/reframed/models/block/wall/full/pillar/top.json new file mode 100644 index 0000000..14a43c5 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/pillar/top.json @@ -0,0 +1,35 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 2, 4], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 4, 5, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [5, 2, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [4, 0, 4], + "to": [11, 2, 5], + "faces": { + "north": {"uv": [5, 14, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 14, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/side/both.json b/src/main/resources/assets/reframed/models/block/wall/full/side/both.json new file mode 100644 index 0000000..e65a9d5 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/side/both.json @@ -0,0 +1,21 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [11, 16, 4], + "faces": { + "north": {"uv": [5, 0, 11, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/side/bottom.json b/src/main/resources/assets/reframed/models/block/wall/full/side/bottom.json new file mode 100644 index 0000000..8f8e80a --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/side/bottom.json @@ -0,0 +1,21 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [11, 14, 4], + "faces": { + "north": {"uv": [5, 2, 11, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 2, 16, 16], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "west": {"uv": [0, 2, 4, 16], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/side/middle.json b/src/main/resources/assets/reframed/models/block/wall/full/side/middle.json new file mode 100644 index 0000000..ccc7071 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/side/middle.json @@ -0,0 +1,21 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 0], + "to": [11, 14, 4], + "faces": { + "north": {"uv": [5, 2, 11, 14], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 2, 16, 14], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 14], "texture": "#side"}, + "west": {"uv": [0, 2, 4, 14], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/full/side/top.json b/src/main/resources/assets/reframed/models/block/wall/full/side/top.json new file mode 100644 index 0000000..3b64a55 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/full/side/top.json @@ -0,0 +1,21 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 0], + "to": [11, 16, 4], + "faces": { + "north": {"uv": [5, 0, 11, 14], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 0, 16, 14], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "west": {"uv": [0, 0, 4, 14], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/inventory/default.json b/src/main/resources/assets/reframed/models/block/wall/inventory/default.json new file mode 100644 index 0000000..f49e0d9 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/inventory/default.json @@ -0,0 +1,43 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 0], + "to": [11, 14, 4], + "faces": { + "north": {"uv": [5, 2, 11, 14], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 2, 16, 14], "texture": "#side"}, + "west": {"uv": [0, 2, 4, 14], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 12], + "to": [11, 14, 16], + "faces": { + "east": {"uv": [0, 2, 4, 14], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 14], "texture": "#side", "cullface": "south"}, + "west": {"uv": [12, 2, 16, 14], "texture": "#side"}, + "up": {"uv": [5, 12, 11, 16], "texture": "#top"}, + "down": {"uv": [5, 0, 11, 4], "texture": "#bottom"} + } + }, + { + "from": [4, 0, 4], + "to": [12, 16, 12], + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#side"}, + "east": {"uv": [4, 0, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#side"}, + "up": {"uv": [4, 4, 12, 12], "texture": "#top"}, + "down": {"uv": [4, 4, 12, 12], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/both.json b/src/main/resources/assets/reframed/models/block/wall/junction/both.json new file mode 100644 index 0000000..5db8cd3 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/both.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 16, 8], + "faces": { + "east": {"uv": [8, 0, 12, 16], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 8, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 8], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 8, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/both_c.json b/src/main/resources/assets/reframed/models/block/wall/junction/both_c.json new file mode 100644 index 0000000..6115e86 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/both_c.json @@ -0,0 +1,39 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "east": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/both_i.json b/src/main/resources/assets/reframed/models/block/wall/junction/both_i.json new file mode 100644 index 0000000..d3eb723 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/both_i.json @@ -0,0 +1,19 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/both_t.json b/src/main/resources/assets/reframed/models/block/wall/junction/both_t.json new file mode 100644 index 0000000..889a4f3 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/both_t.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 11], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "east": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/both_x.json b/src/main/resources/assets/reframed/models/block/wall/junction/both_x.json new file mode 100644 index 0000000..d1c1fec --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/both_x.json @@ -0,0 +1,57 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 11], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [11, 0, 5], + "to": [12, 16, 11], + "faces": { + "north": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "south": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "up": {"uv": [11, 5, 12, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [11, 5, 12, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/bottom.json b/src/main/resources/assets/reframed/models/block/wall/junction/bottom.json new file mode 100644 index 0000000..ed36c16 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/bottom.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 14, 8], + "faces": { + "east": {"uv": [8, 2, 12, 16], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 8, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 8], "texture": "#top"}, + "down": {"uv": [5, 8, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/bottom_c.json b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_c.json new file mode 100644 index 0000000..589682a --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_c.json @@ -0,0 +1,39 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 14, 11], + "faces": { + "east": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/bottom_i.json b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_i.json new file mode 100644 index 0000000..3d841ae --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_i.json @@ -0,0 +1,19 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/bottom_t.json b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_t.json new file mode 100644 index 0000000..541b380 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_t.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 11], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "west": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 14, 11], + "faces": { + "east": {"uv": [5, 2, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/bottom_x.json b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_x.json new file mode 100644 index 0000000..54ead57 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/bottom_x.json @@ -0,0 +1,57 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 11], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "west": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [11, 14, 11], + "faces": { + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 0, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [11, 0, 5], + "to": [12, 14, 11], + "faces": { + "north": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "south": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "up": {"uv": [11, 5, 12, 11], "texture": "#top"}, + "down": {"uv": [11, 5, 12, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/middle.json b/src/main/resources/assets/reframed/models/block/wall/junction/middle.json new file mode 100644 index 0000000..0957db9 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/middle.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 14, 8], + "faces": { + "east": {"uv": [8, 2, 12, 14], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 8, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 8], "texture": "#top"}, + "down": {"uv": [5, 8, 11, 12], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/middle_c.json b/src/main/resources/assets/reframed/models/block/wall/junction/middle_c.json new file mode 100644 index 0000000..b21b9ad --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/middle_c.json @@ -0,0 +1,39 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 14, 11], + "faces": { + "east": {"uv": [5, 2, 11, 14], "texture": "#side"}, + "south": {"uv": [5, 2, 11, 14], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/middle_i.json b/src/main/resources/assets/reframed/models/block/wall/junction/middle_i.json new file mode 100644 index 0000000..0f177cd --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/middle_i.json @@ -0,0 +1,19 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 12], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/middle_t.json b/src/main/resources/assets/reframed/models/block/wall/junction/middle_t.json new file mode 100644 index 0000000..7d14491 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/middle_t.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 11], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "west": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 14, 11], + "faces": { + "east": {"uv": [5, 2, 11, 14], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/middle_x.json b/src/main/resources/assets/reframed/models/block/wall/junction/middle_x.json new file mode 100644 index 0000000..a60bd78 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/middle_x.json @@ -0,0 +1,57 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 14, 5], + "faces": { + "east": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 11], + "to": [11, 14, 12], + "faces": { + "east": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "west": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 14, 11], + "faces": { + "up": {"uv": [5, 5, 11, 11], "texture": "#top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 14, 11], + "faces": { + "north": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + }, + { + "from": [11, 2, 5], + "to": [12, 14, 11], + "faces": { + "north": {"uv": [4, 2, 5, 14], "texture": "#side"}, + "south": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "up": {"uv": [11, 5, 12, 11], "texture": "#top"}, + "down": {"uv": [11, 5, 12, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/top.json b/src/main/resources/assets/reframed/models/block/wall/junction/top.json new file mode 100644 index 0000000..cd8d46c --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/top.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 16, 8], + "faces": { + "east": {"uv": [8, 0, 12, 14], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 8, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 8], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 8, 11, 12], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/top_c.json b/src/main/resources/assets/reframed/models/block/wall/junction/top_c.json new file mode 100644 index 0000000..488b597 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/top_c.json @@ -0,0 +1,39 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 16, 11], + "faces": { + "east": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "south": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/top_i.json b/src/main/resources/assets/reframed/models/block/wall/junction/top_i.json new file mode 100644 index 0000000..ed3446a --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/top_i.json @@ -0,0 +1,19 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 12], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/top_t.json b/src/main/resources/assets/reframed/models/block/wall/junction/top_t.json new file mode 100644 index 0000000..fc4ba02 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/top_t.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 11], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "west": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 16, 11], + "faces": { + "east": {"uv": [5, 0, 11, 14], "texture": "#side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/junction/top_x.json b/src/main/resources/assets/reframed/models/block/wall/junction/top_x.json new file mode 100644 index 0000000..6086284 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/junction/top_x.json @@ -0,0 +1,57 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 4], + "to": [11, 16, 5], + "faces": { + "east": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 11], + "to": [11, 16, 12], + "faces": { + "east": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "west": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "up": {"uv": [5, 11, 11, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 4, 11, 5], "texture": "#bottom"} + } + }, + { + "from": [5, 2, 5], + "to": [11, 16, 11], + "faces": { + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom"} + } + }, + { + "from": [4, 2, 5], + "to": [5, 16, 11], + "faces": { + "north": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "south": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 5, 5, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 5, 5, 11], "texture": "#bottom"} + } + }, + { + "from": [11, 2, 5], + "to": [12, 16, 11], + "faces": { + "north": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "south": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "up": {"uv": [11, 5, 12, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [11, 5, 12, 11], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/both.json b/src/main/resources/assets/reframed/models/block/wall/pillar/both.json new file mode 100644 index 0000000..f135dd4 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/both.json @@ -0,0 +1,27 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 4, 5, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 11, 5, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/bottom.json b/src/main/resources/assets/reframed/models/block/wall/pillar/bottom.json new file mode 100644 index 0000000..ac57f92 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/bottom.json @@ -0,0 +1,34 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [5, 14, 5], + "faces": { + "north": {"uv": [11, 2, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 5, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 4], + "to": [11, 14, 5], + "faces": { + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [4, 14, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 12, 2], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 2], "texture": "#side"}, + "up": {"uv": [5, 4, 12, 5], "texture": "#top", "cullface": "up"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/core.json b/src/main/resources/assets/reframed/models/block/wall/pillar/core.json new file mode 100644 index 0000000..9f6ed16 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/core.json @@ -0,0 +1,17 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "up": {"uv": [5, 5, 11, 11], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/middle.json b/src/main/resources/assets/reframed/models/block/wall/pillar/middle.json new file mode 100644 index 0000000..1cf2b7a --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/middle.json @@ -0,0 +1,35 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 2, 4], + "to": [5, 14, 5], + "faces": { + "north": {"uv": [11, 2, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 2, 5, 14], "texture": "#side"} + } + }, + { + "from": [4, 14, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 12, 2], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 2], "texture": "#side"}, + "up": {"uv": [4, 4, 11, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [4, 0, 4], + "to": [11, 2, 5], + "faces": { + "north": {"uv": [5, 14, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 14, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/none.json b/src/main/resources/assets/reframed/models/block/wall/pillar/none.json new file mode 100644 index 0000000..3b97874 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/none.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#side"}, + "up": {"uv": [4, 4, 5, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [4, 11, 5, 12], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [5, 0, 4], + "to": [11, 16, 5], + "faces": { + "north": {"uv": [5, 0, 11, 16], "texture": "#side"}, + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/pillar/top.json b/src/main/resources/assets/reframed/models/block/wall/pillar/top.json new file mode 100644 index 0000000..baca217 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/pillar/top.json @@ -0,0 +1,34 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [4, 2, 4], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [11, 0, 12, 14], "texture": "#side"}, + "west": {"uv": [4, 0, 5, 14], "texture": "#side"}, + "up": {"uv": [4, 4, 5, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [5, 2, 4], + "to": [11, 16, 5], + "faces": { + "up": {"uv": [5, 4, 11, 5], "texture": "#top", "cullface": "up"} + } + }, + { + "from": [4, 0, 4], + "to": [11, 2, 5], + "faces": { + "north": {"uv": [5, 14, 12, 16], "texture": "#side"}, + "west": {"uv": [4, 14, 5, 16], "texture": "#side"}, + "down": {"uv": [4, 11, 11, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/side/both.json b/src/main/resources/assets/reframed/models/block/wall/side/both.json new file mode 100644 index 0000000..7fa56e6 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/side/both.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [11, 16, 4], + "faces": { + "north": {"uv": [5, 0, 11, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#side"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/side/bottom.json b/src/main/resources/assets/reframed/models/block/wall/side/bottom.json new file mode 100644 index 0000000..73cfd76 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/side/bottom.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [11, 14, 4], + "faces": { + "north": {"uv": [5, 2, 11, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 2, 16, 16], "texture": "#side"}, + "west": {"uv": [0, 2, 4, 16], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/side/middle.json b/src/main/resources/assets/reframed/models/block/wall/side/middle.json new file mode 100644 index 0000000..59432d8 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/side/middle.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 0], + "to": [11, 14, 4], + "faces": { + "north": {"uv": [5, 2, 11, 14], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 2, 16, 14], "texture": "#side"}, + "west": {"uv": [0, 2, 4, 14], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/reframed/models/block/wall/side/top.json b/src/main/resources/assets/reframed/models/block/wall/side/top.json new file mode 100644 index 0000000..99e3253 --- /dev/null +++ b/src/main/resources/assets/reframed/models/block/wall/side/top.json @@ -0,0 +1,20 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [5, 2, 0], + "to": [11, 16, 4], + "faces": { + "north": {"uv": [5, 0, 11, 14], "texture": "#side", "cullface": "north"}, + "east": {"uv": [12, 0, 16, 14], "texture": "#side"}, + "west": {"uv": [0, 0, 4, 14], "texture": "#side"}, + "up": {"uv": [5, 0, 11, 4], "texture": "#top", "cullface": "up"}, + "down": {"uv": [5, 12, 11, 16], "texture": "#bottom"} + } + } + ] +} \ No newline at end of file