Moss improvements
This commit is contained in:
parent
72b173a9e3
commit
239bb80bd7
10 changed files with 841 additions and 6 deletions
49
src/main/java/ru/betterend/blocks/BlockUmbrellaMoss.java
Normal file
49
src/main/java/ru/betterend/blocks/BlockUmbrellaMoss.java
Normal file
|
@ -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.BlockRegistry;
|
||||||
|
import ru.betterend.util.BlocksHelper;
|
||||||
|
|
||||||
|
public class BlockUmbrellaMoss extends BlockPlant {
|
||||||
|
public BlockUmbrellaMoss() {
|
||||||
|
super(11);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean isTerrain(BlockState state) {
|
||||||
|
return state.getBlock() == BlockRegistry.END_MOSS || state.getBlock() == BlockRegistry.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 = BlockRegistry.UMBRELLA_MOSS_TALL.getDefaultState().with(BlockDoublePlant.ROTATION, rot);
|
||||||
|
BlocksHelper.setWithoutUpdate(world, pos, bs);
|
||||||
|
BlocksHelper.setWithoutUpdate(world, pos.up(), bs.with(BlockDoublePlant.TOP, true));
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,6 +15,7 @@ import ru.betterend.blocks.BlockMossyGlowshroomHymenophore;
|
||||||
import ru.betterend.blocks.BlockMossyGlowshroomSapling;
|
import ru.betterend.blocks.BlockMossyGlowshroomSapling;
|
||||||
import ru.betterend.blocks.BlockOre;
|
import ru.betterend.blocks.BlockOre;
|
||||||
import ru.betterend.blocks.BlockTerrain;
|
import ru.betterend.blocks.BlockTerrain;
|
||||||
|
import ru.betterend.blocks.BlockUmbrellaMoss;
|
||||||
import ru.betterend.blocks.BlockUmbrellaMossTall;
|
import ru.betterend.blocks.BlockUmbrellaMossTall;
|
||||||
import ru.betterend.blocks.EndStoneSmelter;
|
import ru.betterend.blocks.EndStoneSmelter;
|
||||||
import ru.betterend.blocks.EnderBlock;
|
import ru.betterend.blocks.EnderBlock;
|
||||||
|
@ -36,7 +37,7 @@ public class BlockRegistry {
|
||||||
public static final WoodenMaterial MOSSY_GLOWSHROOM = new WoodenMaterial("mossy_glowshroom", MaterialColor.GRAY, MaterialColor.WOOD);
|
public static final WoodenMaterial MOSSY_GLOWSHROOM = new WoodenMaterial("mossy_glowshroom", MaterialColor.GRAY, MaterialColor.WOOD);
|
||||||
|
|
||||||
// Small Plants //
|
// Small Plants //
|
||||||
public static final Block UMBRELLA_MOSS = registerBlock("umbrella_moss", new BlockGlowingMoss(10));
|
public static final Block UMBRELLA_MOSS = registerBlock("umbrella_moss", new BlockUmbrellaMoss());
|
||||||
public static final Block UMBRELLA_MOSS_TALL = registerBlock("umbrella_moss_tall", new BlockUmbrellaMossTall());
|
public static final Block UMBRELLA_MOSS_TALL = registerBlock("umbrella_moss_tall", new BlockUmbrellaMossTall());
|
||||||
public static final Block CREEPING_MOSS = registerBlock("creeping_moss", new BlockGlowingMoss(10));
|
public static final Block CREEPING_MOSS = registerBlock("creeping_moss", new BlockGlowingMoss(10));
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,22 @@
|
||||||
{ "model": "betterend:block/umbrella_moss_small" },
|
{ "model": "betterend:block/umbrella_moss_small" },
|
||||||
{ "model": "betterend:block/umbrella_moss_small", "y": 90 },
|
{ "model": "betterend:block/umbrella_moss_small", "y": 90 },
|
||||||
{ "model": "betterend:block/umbrella_moss_small", "y": 180 },
|
{ "model": "betterend:block/umbrella_moss_small", "y": 180 },
|
||||||
{ "model": "betterend:block/umbrella_moss_small", "y": 270 }
|
{ "model": "betterend:block/umbrella_moss_small", "y": 270 },
|
||||||
|
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_2" },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_2", "y": 90 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_2", "y": 180 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_2", "y": 270 },
|
||||||
|
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_3" },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_3", "y": 90 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_3", "y": 180 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_3", "y": 270 },
|
||||||
|
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_4" },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_4", "y": 90 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_4", "y": 180 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_small_4", "y": 270 }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,28 @@
|
||||||
{
|
{
|
||||||
"variants": {
|
"variants": {
|
||||||
"top=true,rotation=0": { "model": "betterend:block/umbrella_moss_top" },
|
"top=true,rotation=0": [
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top" },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_2" },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_3" }
|
||||||
|
],
|
||||||
"top=false,rotation=0": { "model": "betterend:block/umbrella_moss_bottom" },
|
"top=false,rotation=0": { "model": "betterend:block/umbrella_moss_bottom" },
|
||||||
"top=true,rotation=1": { "model": "betterend:block/umbrella_moss_top", "y": 90 },
|
"top=true,rotation=1": [
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top", "y": 90 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_2", "y": 90 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_3", "y": 90 }
|
||||||
|
],
|
||||||
"top=false,rotation=1": { "model": "betterend:block/umbrella_moss_bottom", "y": 90 },
|
"top=false,rotation=1": { "model": "betterend:block/umbrella_moss_bottom", "y": 90 },
|
||||||
"top=true,rotation=2": { "model": "betterend:block/umbrella_moss_top", "y": 180 },
|
"top=true,rotation=2": [
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top", "y": 180 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_2", "y": 180 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_3", "y": 180 }
|
||||||
|
],
|
||||||
"top=false,rotation=2": { "model": "betterend:block/umbrella_moss_bottom", "y": 180 },
|
"top=false,rotation=2": { "model": "betterend:block/umbrella_moss_bottom", "y": 180 },
|
||||||
"top=true,rotation=3": { "model": "betterend:block/umbrella_moss_top", "y": 270 },
|
"top=true,rotation=3": [
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top", "y": 270 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_2", "y": 270 },
|
||||||
|
{ "model": "betterend:block/umbrella_moss_top_3", "y": 270 }
|
||||||
|
],
|
||||||
"top=false,rotation=3": { "model": "betterend:block/umbrella_moss_bottom", "y": 270 }
|
"top=false,rotation=3": { "model": "betterend:block/umbrella_moss_bottom", "y": 270 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,200 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"particle": "betterend:block/umbrella_moss_up",
|
||||||
|
"texture": "betterend:block/umbrella_moss_up",
|
||||||
|
"spore": "betterend:block/umbrella_moss_sporophyte",
|
||||||
|
"small": "betterend:block/umbrella_moss_small",
|
||||||
|
"end": "betterend:block/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": [ 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, 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": [ 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": "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/umbrella_moss_up",
|
||||||
|
"texture": "betterend:block/umbrella_moss_up",
|
||||||
|
"spore": "betterend:block/umbrella_moss_sporophyte",
|
||||||
|
"small": "betterend:block/umbrella_moss_small",
|
||||||
|
"end": "betterend:block/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": [ 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": "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/umbrella_moss_up",
|
||||||
|
"texture": "betterend:block/umbrella_moss_up",
|
||||||
|
"spore": "betterend:block/umbrella_moss_sporophyte",
|
||||||
|
"small": "betterend:block/umbrella_moss_small",
|
||||||
|
"end": "betterend:block/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,155 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"particle": "betterend:block/umbrella_moss_up",
|
||||||
|
"texture": "betterend:block/umbrella_moss_up",
|
||||||
|
"spore": "betterend:block/umbrella_moss_sporophyte",
|
||||||
|
"end": "betterend:block/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": [ 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, 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": [ 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" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,116 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"particle": "betterend:block/umbrella_moss_up",
|
||||||
|
"texture": "betterend:block/umbrella_moss_up",
|
||||||
|
"spore": "betterend:block/umbrella_moss_sporophyte",
|
||||||
|
"end": "betterend:block/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": [ 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, 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: 2.2 KiB |
Loading…
Add table
Add a link
Reference in a new issue