Twisted umbrella moss prototype
This commit is contained in:
parent
54e24d0ce7
commit
fa0c2b1869
22 changed files with 1440 additions and 0 deletions
|
@ -0,0 +1,49 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import ru.betterend.blocks.basis.BlockDoublePlant;
|
||||
import ru.betterend.blocks.basis.BlockPlant;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.util.BlocksHelper;
|
||||
|
||||
public class BlockTwistedUmbrellaMoss extends BlockPlant {
|
||||
public BlockTwistedUmbrellaMoss() {
|
||||
super(11);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isTerrain(BlockState state) {
|
||||
return state.getBlock() == EndBlocks.END_MOSS || state.getBlock() == EndBlocks.END_MYCELIUM;
|
||||
}
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
public boolean hasEmissiveLighting(BlockView world, BlockPos pos) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
public float getAmbientOcclusionLightLevel(BlockView world, BlockPos pos) {
|
||||
return 1F;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canGrow(World world, Random random, BlockPos pos, BlockState state) {
|
||||
return world.isAir(pos.up());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void grow(ServerWorld world, Random random, BlockPos pos, BlockState state) {
|
||||
int rot = world.random.nextInt(4);
|
||||
BlockState bs = EndBlocks.TWISTED_UMBRELLA_MOSS_TALL.getDefaultState().with(BlockDoublePlant.ROTATION, rot);
|
||||
BlocksHelper.setWithoutUpdate(world, pos, bs);
|
||||
BlocksHelper.setWithoutUpdate(world, pos.up(), bs.with(BlockDoublePlant.TOP, true));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.entity.ItemEntity;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import ru.betterend.blocks.basis.BlockDoublePlant;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
|
||||
public class BlockTwistedUmbrellaMossTall extends BlockDoublePlant {
|
||||
public BlockTwistedUmbrellaMossTall() {
|
||||
super(12);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void grow(ServerWorld world, Random random, BlockPos pos, BlockState state) {
|
||||
ItemEntity item = new ItemEntity(world, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, new ItemStack(EndBlocks.TWISTED_UMBRELLA_MOSS));
|
||||
world.spawnEntity(item);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isTerrain(BlockState state) {
|
||||
return state.getBlock() == EndBlocks.END_MOSS || state.getBlock() == EndBlocks.END_MYCELIUM;
|
||||
}
|
||||
}
|
|
@ -63,6 +63,8 @@ import ru.betterend.blocks.BlockTenaneaFlowers;
|
|||
import ru.betterend.blocks.BlockTenaneaSapling;
|
||||
import ru.betterend.blocks.BlockTerrain;
|
||||
import ru.betterend.blocks.BlockTerrainPlant;
|
||||
import ru.betterend.blocks.BlockTwistedUmbrellaMoss;
|
||||
import ru.betterend.blocks.BlockTwistedUmbrellaMossTall;
|
||||
import ru.betterend.blocks.BlockUmbrellaMoss;
|
||||
import ru.betterend.blocks.BlockUmbrellaMossTall;
|
||||
import ru.betterend.blocks.BlockUmbrellaTreeMembrane;
|
||||
|
@ -186,6 +188,8 @@ public class EndBlocks {
|
|||
public static final Block SHADOW_PLANT = registerBlock("shadow_plant", new BlockTerrainPlant(SHADOW_GRASS));
|
||||
public static final Block BUSHY_GRASS = registerBlock("bushy_grass", new BlockTerrainPlant(PINK_MOSS));
|
||||
public static final Block AMBER_GRASS = registerBlock("amber_grass", new BlockTerrainPlant(AMBER_MOSS));
|
||||
public static final Block TWISTED_UMBRELLA_MOSS = registerBlock("twisted_umbrella_moss", new BlockTwistedUmbrellaMoss());
|
||||
public static final Block TWISTED_UMBRELLA_MOSS_TALL = registerBlock("twisted_umbrella_moss_tall", new BlockTwistedUmbrellaMossTall());
|
||||
|
||||
public static final Block BLUE_VINE_SEED = registerBlock("blue_vine_seed", new BlockBlueVineSeed());
|
||||
public static final Block BLUE_VINE = registerBlockNI("blue_vine", new BlockBlueVine());
|
||||
|
|
|
@ -79,6 +79,7 @@ public class EndFeatures {
|
|||
public static final EndFeature AMBER_GRASS = new EndFeature("amber_grass", new SinglePlantFeature(EndBlocks.AMBER_GRASS, 6), 9);
|
||||
public static final EndFeature LANCELEAF = new EndFeature("lanceleaf", new LanceleafFeature(), 3);
|
||||
public static final EndFeature GLOW_PILLAR = new EndFeature("glow_pillar", new GlowPillarFeature(), 1);
|
||||
public static final EndFeature TWISTED_UMBRELLA_MOSS = new EndFeature("twisted_umbrella_moss", new DoublePlantFeature(EndBlocks.TWISTED_UMBRELLA_MOSS, EndBlocks.TWISTED_UMBRELLA_MOSS_TALL, 9), 6);
|
||||
|
||||
// Vines //
|
||||
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);
|
||||
|
|
|
@ -12,6 +12,7 @@ public class BiomeUmbrellaJungle extends EndBiome {
|
|||
.setFogDensity(2.3F)
|
||||
.setSurface(EndBlocks.END_MOSS)
|
||||
.addFeature(EndFeatures.UMBRELLA_TREE)
|
||||
.addFeature(EndFeatures.TWISTED_UMBRELLA_MOSS)
|
||||
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
||||
.addFeature(EndFeatures.END_LAKE));
|
||||
}
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small", "y": 270 },
|
||||
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_2" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_2", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_2", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_2", "y": 270 },
|
||||
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_3" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_3", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_3", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_3", "y": 270 },
|
||||
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_4" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_4", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_4", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_small_4", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"top=true,rotation=0": [
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_2" },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_3" }
|
||||
],
|
||||
"top=false,rotation=0": { "model": "betterend:block/twisted_umbrella_moss_bottom" },
|
||||
"top=true,rotation=1": [
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_2", "y": 90 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_3", "y": 90 }
|
||||
],
|
||||
"top=false,rotation=1": { "model": "betterend:block/twisted_umbrella_moss_bottom", "y": 90 },
|
||||
"top=true,rotation=2": [
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_2", "y": 180 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_3", "y": 180 }
|
||||
],
|
||||
"top=false,rotation=2": { "model": "betterend:block/twisted_umbrella_moss_bottom", "y": 180 },
|
||||
"top=true,rotation=3": [
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top", "y": 270 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_2", "y": 270 },
|
||||
{ "model": "betterend:block/twisted_umbrella_moss_top_3", "y": 270 }
|
||||
],
|
||||
"top=false,rotation=3": { "model": "betterend:block/twisted_umbrella_moss_bottom", "y": 270 }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"defaultMap": {
|
||||
"spriteMap": [
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"material": "betterend:wave_glow_all"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_small",
|
||||
"material": "betterend:waving_floor"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_up",
|
||||
"material": "betterend:waving_floor"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_end",
|
||||
"material": "betterend:waving_floor"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"defaultMap": {
|
||||
"spriteMap": [
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"material": "betterend:wave_glow_all"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_up",
|
||||
"material": "betterend:waving"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_end",
|
||||
"material": "betterend:waving"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/twisted_umbrella_moss_bottom",
|
||||
"material": "betterend:waving_floor"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,75 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_bottom",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_bottom"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 16, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 16, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 16, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 16, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 16, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 16, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,238 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"small": "betterend:block/twisted_umbrella_moss_small"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 3, 13, 3 ],
|
||||
"to": [ 5, 16, 5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 11, 12, 8 ],
|
||||
"to": [ 13, 15, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 4, 11, 11 ],
|
||||
"to": [ 6, 14, 13 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 12, 1 ],
|
||||
"to": [ 7, 14, 7 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 1, 12, 1 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 9, 11, 6 ],
|
||||
"to": [ 15, 13, 12 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 12, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 12, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 15, 13, 12 ],
|
||||
"to": [ 9, 11, 6 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 10, 9 ],
|
||||
"to": [ 8, 12, 15 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 8, 12, 15 ],
|
||||
"to": [ 2, 10, 9 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ 9, 0, 0 ],
|
||||
"to": [ 25, 0.001, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 0 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ -9, -0.001, 0 ],
|
||||
"to": [ 7, 0, 16 ],
|
||||
"rotation": { "origin": [ 7, 0, 0 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,200 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"small": "betterend:block/twisted_umbrella_moss_small",
|
||||
"end": "betterend:block/twisted_umbrella_moss_end"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 3, 13, 3 ],
|
||||
"to": [ 5, 16, 5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 4, 11, 11 ],
|
||||
"to": [ 6, 14, 13 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 12, 1 ],
|
||||
"to": [ 7, 14, 7 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 1, 12, 1 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 13, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 13, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 10, 9 ],
|
||||
"to": [ 8, 12, 15 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 8, 12, 15 ],
|
||||
"to": [ 2, 10, 9 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ 9, 0, 0 ],
|
||||
"to": [ 25, 0.001, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 0 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ -9, -0.001, 0 ],
|
||||
"to": [ 7, 0, 16 ],
|
||||
"rotation": { "origin": [ 7, 0, 0 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,161 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"small": "betterend:block/twisted_umbrella_moss_small",
|
||||
"end": "betterend:block/twisted_umbrella_moss_end"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 4, 11, 11 ],
|
||||
"to": [ 6, 14, 13 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 13, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 13, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 10, 9 ],
|
||||
"to": [ 8, 12, 15 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 8, 12, 15 ],
|
||||
"to": [ 2, 10, 9 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ 9, 0, 0 ],
|
||||
"to": [ 25, 0.001, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 0 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ -9, -0.001, 0 ],
|
||||
"to": [ 7, 0, 16 ],
|
||||
"rotation": { "origin": [ 7, 0, 0 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"small": "betterend:block/twisted_umbrella_moss_small",
|
||||
"end": "betterend:block/twisted_umbrella_moss_end"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 13, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 13, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY16",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ 9, 0, 0 ],
|
||||
"to": [ 25, 0.001, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 0 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 90 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY18",
|
||||
"from": [ -9, -0.001, 0 ],
|
||||
"to": [ 7, 0, 16 ],
|
||||
"rotation": { "origin": [ 7, 0, 0 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#small", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,193 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 3, 13, 3 ],
|
||||
"to": [ 5, 16, 5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 11, 12, 8 ],
|
||||
"to": [ 13, 15, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 4, 11, 11 ],
|
||||
"to": [ 6, 14, 13 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 12, 1 ],
|
||||
"to": [ 7, 14, 7 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 1, 12, 1 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 9, 11, 6 ],
|
||||
"to": [ 15, 13, 12 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 12, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 12, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 15, 13, 12 ],
|
||||
"to": [ 9, 11, 6 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 10, 9 ],
|
||||
"to": [ 8, 12, 15 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 8, 12, 15 ],
|
||||
"to": [ 2, 10, 9 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,155 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"end": "betterend:block/twisted_umbrella_moss_end"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 3, 13, 3 ],
|
||||
"to": [ 5, 16, 5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 4, 11, 11 ],
|
||||
"to": [ 6, 14, 13 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 12, 1 ],
|
||||
"to": [ 7, 14, 7 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 1, 12, 1 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 13, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 13, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 10, 9 ],
|
||||
"to": [ 8, 12, 15 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 8, 12, 15 ],
|
||||
"to": [ 2, 10, 9 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,116 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/twisted_umbrella_moss_up",
|
||||
"texture": "betterend:block/twisted_umbrella_moss_up",
|
||||
"spore": "betterend:block/twisted_umbrella_moss_sporophyte",
|
||||
"end": "betterend:block/twisted_umbrella_moss_end"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 3, 13, 3 ],
|
||||
"to": [ 5, 16, 5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 5, 9, 7 ], "texture": "#spore" },
|
||||
"up": { "uv": [ 7, 0, 9, 2 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 7, 2, 9, 5 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 12, 1 ],
|
||||
"to": [ 7, 14, 7 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"up": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 6, 6, 8 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -2, 0, -2 ],
|
||||
"to": [ -1.999, 13, 14 ],
|
||||
"rotation": { "origin": [ -2, 0, -2 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 9.5, 0, -2 ],
|
||||
"to": [ 9.501, 13, 14 ],
|
||||
"rotation": { "origin": [ 9.5, 0, -2 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 1, 12, 1 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 6, 6 ], "texture": "#spore" },
|
||||
"north": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"west": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 6, 8, 0, 6 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 6, 0, 3 ],
|
||||
"to": [ 6.001, 13, 19 ],
|
||||
"rotation": { "origin": [ 6, 0, 3 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 17.5, 0, 3 ],
|
||||
"to": [ 17.501, 13, 19 ],
|
||||
"rotation": { "origin": [ 17.5, 0, 3 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 3, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ -1, 0, 6 ],
|
||||
"to": [ -0.999, 11, 22 ],
|
||||
"rotation": { "origin": [ -1, 0, 6 ], "axis": "y", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX3",
|
||||
"from": [ 10.5, 0, 6 ],
|
||||
"to": [ 10.501, 11, 22 ],
|
||||
"rotation": { "origin": [ 10.5, 0, 6 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" },
|
||||
"east": { "uv": [ 0, 5, 16, 16 ], "texture": "#end" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 504 B |
Binary file not shown.
After Width: | Height: | Size: 471 B |
Binary file not shown.
After Width: | Height: | Size: 356 B |
Binary file not shown.
After Width: | Height: | Size: 321 B |
Binary file not shown.
After Width: | Height: | Size: 409 B |
Loading…
Add table
Add a link
Reference in a new issue