Lantern woods biome prototype
|
@ -48,6 +48,7 @@ import ru.betterend.world.biome.land.DustWastelandsBiome;
|
|||
import ru.betterend.world.biome.land.EndBiome;
|
||||
import ru.betterend.world.biome.land.FoggyMushroomlandBiome;
|
||||
import ru.betterend.world.biome.land.GlowingGrasslandsBiome;
|
||||
import ru.betterend.world.biome.land.LanternWoodsBiome;
|
||||
import ru.betterend.world.biome.land.MegalakeBiome;
|
||||
import ru.betterend.world.biome.land.MegalakeGroveBiome;
|
||||
import ru.betterend.world.biome.land.PaintedMountainsBiome;
|
||||
|
@ -97,6 +98,7 @@ public class EndBiomes {
|
|||
public static final EndBiome GLOWING_GRASSLANDS = registerBiome(new GlowingGrasslandsBiome(), BiomeType.LAND);
|
||||
public static final EndBiome DRAGON_GRAVEYARDS = registerBiome(new DragonGraveyardsBiome(), BiomeType.LAND);
|
||||
public static final EndBiome DRY_SHRUBLAND = registerBiome(new DryShrublandBiome(), BiomeType.LAND);
|
||||
public static final EndBiome LANTERN_WOODS = registerBiome(new LanternWoodsBiome(), BiomeType.LAND);
|
||||
|
||||
// Better End Void
|
||||
public static final EndBiome ICE_STARFIELD = registerBiome(new BiomeIceStarfield(), BiomeType.VOID);
|
||||
|
|
|
@ -236,6 +236,7 @@ public class EndBlocks {
|
|||
|
||||
public static final Block LUCERNIA_SAPLING = registerBlock("lucernia_sapling", new TenaneaSaplingBlock());
|
||||
public static final Block LUCERNIA_LEAVES = registerBlock("lucernia_leaves", new EndLeavesBlock(LUCERNIA_SAPLING, MaterialColor.ORANGE));
|
||||
public static final Block LUCERNIA_OUTER_LEAVES = registerBlock("lucernia_outer_leaves", new FurBlock(LUCERNIA_SAPLING, 32));
|
||||
public static final WoodenMaterial LUCERNIA = new WoodenMaterial("lucernia", MaterialColor.ORANGE, MaterialColor.ORANGE);
|
||||
|
||||
// Small Plants //
|
||||
|
|
|
@ -22,6 +22,7 @@ import ru.betterend.world.features.EndFeature;
|
|||
import ru.betterend.world.features.EndLilyFeature;
|
||||
import ru.betterend.world.features.EndLotusFeature;
|
||||
import ru.betterend.world.features.EndLotusLeafFeature;
|
||||
import ru.betterend.world.features.FilaluxFeature;
|
||||
import ru.betterend.world.features.GlowPillarFeature;
|
||||
import ru.betterend.world.features.HydraluxFeature;
|
||||
import ru.betterend.world.features.LanceleafFeature;
|
||||
|
@ -60,6 +61,7 @@ import ru.betterend.world.features.trees.GiganticAmaranitaFeature;
|
|||
import ru.betterend.world.features.trees.HelixTreeFeature;
|
||||
import ru.betterend.world.features.trees.JellyshroomFeature;
|
||||
import ru.betterend.world.features.trees.LacugroveFeature;
|
||||
import ru.betterend.world.features.trees.LucerniaFeature;
|
||||
import ru.betterend.world.features.trees.MossyGlowshroomFeature;
|
||||
import ru.betterend.world.features.trees.PythadendronTreeFeature;
|
||||
import ru.betterend.world.features.trees.TenaneaFeature;
|
||||
|
@ -77,6 +79,7 @@ public class EndFeatures {
|
|||
public static final EndFeature UMBRELLA_TREE = new EndFeature("umbrella_tree", new UmbrellaTreeFeature(), 4);
|
||||
public static final EndFeature JELLYSHROOM = new EndFeature("jellyshroom", new JellyshroomFeature(), 3);
|
||||
public static final EndFeature GIGANTIC_AMARANITA = new EndFeature("gigantic_amaranita", new GiganticAmaranitaFeature(), 1);
|
||||
public static final EndFeature LUCERNIA = new EndFeature("lucernia", new LucerniaFeature(), 3);
|
||||
|
||||
// Bushes //
|
||||
public static final EndFeature PYTHADENDRON_BUSH = new EndFeature("pythadendron_bush", new BushFeature(EndBlocks.PYTHADENDRON_LEAVES, EndBlocks.PYTHADENDRON.bark), 4);
|
||||
|
@ -142,6 +145,9 @@ public class EndFeatures {
|
|||
public static final EndFeature SMALL_JELLYSHROOM_WOOD = new EndFeature("small_jellyshroom_wood", new WallPlantOnLogFeature(EndBlocks.SMALL_JELLYSHROOM, 4), 8);
|
||||
public static final EndFeature JUNGLE_FERN_WOOD = new EndFeature("jungle_fern_wood", new WallPlantOnLogFeature(EndBlocks.JUNGLE_FERN, 3), 12);
|
||||
|
||||
// Sky plants
|
||||
public static final EndFeature FILALUX = new EndFeature("filalux", new FilaluxFeature(), 1);
|
||||
|
||||
// Water //
|
||||
public static final EndFeature BUBBLE_CORAL = new EndFeature("bubble_coral", new UnderwaterPlantFeature(EndBlocks.BUBBLE_CORAL, 6), 10);
|
||||
public static final EndFeature BUBBLE_CORAL_RARE = new EndFeature("bubble_coral_rare", new UnderwaterPlantFeature(EndBlocks.BUBBLE_CORAL, 3), 4);
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
package ru.betterend.world.biome.land;
|
||||
|
||||
import net.minecraft.entity.EntityType;
|
||||
import net.minecraft.world.gen.feature.ConfiguredStructureFeatures;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.registry.EndFeatures;
|
||||
import ru.betterend.registry.EndSounds;
|
||||
|
||||
public class LanternWoodsBiome extends EndBiome {
|
||||
public LanternWoodsBiome() {
|
||||
super(new BiomeDefinition("lantern_woods")
|
||||
.setFogColor(132, 35, 13)
|
||||
.setFogDensity(1.1F)
|
||||
.setWaterAndFogColor(113, 88, 53)
|
||||
.setPlantsColor(237, 122, 66)
|
||||
.setSurface(EndBlocks.RUTISCUS)
|
||||
.setMusic(EndSounds.MUSIC_FOREST)
|
||||
.addFeature(EndFeatures.LUCERNIA)
|
||||
.addFeature(EndFeatures.FILALUX)
|
||||
.addFeature(EndFeatures.ORANGO)
|
||||
.addFeature(EndFeatures.AERIDIUM)
|
||||
.addFeature(EndFeatures.LUTEBUS)
|
||||
.addFeature(EndFeatures.LAMELLARIUM)
|
||||
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)
|
||||
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 2));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
package ru.betterend.world.features;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.state.property.Properties;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.StructureWorldAccess;
|
||||
import ru.betterend.blocks.BlockProperties;
|
||||
import ru.betterend.blocks.BlockProperties.TripleShape;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.util.BlocksHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
|
||||
public class FilaluxFeature extends SkyScatterFeature {
|
||||
public FilaluxFeature() {
|
||||
super(10);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void generate(StructureWorldAccess world, Random random, BlockPos blockPos) {
|
||||
BlockState vine = EndBlocks.FILALUX.getDefaultState();
|
||||
BlockState wings = EndBlocks.FILALUX_WINGS.getDefaultState();
|
||||
BlocksHelper.setWithoutUpdate(world, blockPos, EndBlocks.FILALUX_LANTERN);
|
||||
BlocksHelper.setWithoutUpdate(world, blockPos.up(), wings.with(Properties.FACING, Direction.UP));
|
||||
for (Direction dir: BlocksHelper.HORIZONTAL) {
|
||||
BlocksHelper.setWithoutUpdate(world, blockPos.offset(dir), wings.with(Properties.FACING, dir));
|
||||
}
|
||||
int length = MHelper.randRange(1, 3, random);
|
||||
for (int i = 1; i <= length; i++) {
|
||||
TripleShape shape = length > 1 ? TripleShape.TOP : TripleShape.BOTTOM;
|
||||
if (i > 1) {
|
||||
shape = i == length ? TripleShape.BOTTOM : TripleShape.MIDDLE;
|
||||
}
|
||||
BlocksHelper.setWithoutUpdate(world, blockPos.down(i), vine.with(BlockProperties.TRIPLE_SHAPE, shape));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
package ru.betterend.world.features;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.BlockPos.Mutable;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.StructureWorldAccess;
|
||||
import ru.betterend.util.BlocksHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
|
||||
public abstract class SkyScatterFeature extends ScatterFeature {
|
||||
public SkyScatterFeature(int radius) {
|
||||
super(radius);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getChance() {
|
||||
return 10;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canGenerate(StructureWorldAccess world, Random random, BlockPos center, BlockPos blockPos, float radius) {
|
||||
if (!world.isAir(blockPos)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (Direction dir: BlocksHelper.HORIZONTAL) {
|
||||
if (!world.isAir(blockPos.offset(dir))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
int maxD = getYOffset() + 2;
|
||||
int maxV = getYOffset() - 2;
|
||||
|
||||
return BlocksHelper.upRay(world, blockPos, maxD) > maxV && BlocksHelper.downRay(world, blockPos, maxD) > maxV;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean canSpawn(StructureWorldAccess world, BlockPos pos) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected BlockPos getCenterGround(StructureWorldAccess world, BlockPos pos) {
|
||||
return new BlockPos(pos.getX(), MHelper.randRange(32, 192, world.getRandom()), pos.getZ());
|
||||
}
|
||||
|
||||
protected boolean getGroundPlant(StructureWorldAccess world, Mutable pos) {
|
||||
pos.setY(pos.getY() + MHelper.randRange(-getYOffset(), getYOffset(), world.getRandom()));
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -227,11 +227,13 @@ public class DragonTreeFeature extends DefaultFeature {
|
|||
SplineHelper.offset(SIDE1, offset2);
|
||||
SplineHelper.offset(SIDE2, offset2);
|
||||
|
||||
ROOT = Lists.newArrayList(new Vector3f(0F, 1F, 0),
|
||||
ROOT = Lists.newArrayList(
|
||||
new Vector3f(0F, 1F, 0),
|
||||
new Vector3f(0.1F, 0.7F, 0),
|
||||
new Vector3f(0.3F, 0.3F, 0),
|
||||
new Vector3f(0.7F, 0.05F, 0),
|
||||
new Vector3f(0.8F, -0.2F, 0));
|
||||
new Vector3f(0.8F, -0.2F, 0)
|
||||
);
|
||||
SplineHelper.offset(ROOT, new Vector3f(0, -0.45F, 0));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,219 @@
|
|||
package ru.betterend.world.features.trees;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
import java.util.function.Function;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.LeavesBlock;
|
||||
import net.minecraft.block.Material;
|
||||
import net.minecraft.client.util.math.Vector3f;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.BlockPos.Mutable;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.StructureWorldAccess;
|
||||
import net.minecraft.world.gen.chunk.ChunkGenerator;
|
||||
import net.minecraft.world.gen.feature.DefaultFeatureConfig;
|
||||
import ru.betterend.blocks.BlockProperties;
|
||||
import ru.betterend.blocks.BlockProperties.TripleShape;
|
||||
import ru.betterend.blocks.basis.FurBlock;
|
||||
import ru.betterend.noise.OpenSimplexNoise;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.registry.EndTags;
|
||||
import ru.betterend.util.BlocksHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
import ru.betterend.util.SplineHelper;
|
||||
import ru.betterend.util.sdf.SDF;
|
||||
import ru.betterend.util.sdf.operator.SDFDisplacement;
|
||||
import ru.betterend.util.sdf.operator.SDFScale;
|
||||
import ru.betterend.util.sdf.operator.SDFScale3D;
|
||||
import ru.betterend.util.sdf.operator.SDFSubtraction;
|
||||
import ru.betterend.util.sdf.operator.SDFTranslate;
|
||||
import ru.betterend.util.sdf.primitive.SDFSphere;
|
||||
import ru.betterend.world.features.DefaultFeature;
|
||||
|
||||
public class LucerniaFeature extends DefaultFeature {
|
||||
private static final Direction[] DIRECTIONS = Direction.values();
|
||||
private static final Function<BlockState, Boolean> REPLACE;
|
||||
private static final Function<BlockState, Boolean> IGNORE;
|
||||
private static final List<Vector3f> SPLINE;
|
||||
private static final List<Vector3f> ROOT;
|
||||
|
||||
@Override
|
||||
public boolean generate(StructureWorldAccess world, ChunkGenerator chunkGenerator, Random random, BlockPos pos, DefaultFeatureConfig config) {
|
||||
if (!world.getBlockState(pos.down()).getBlock().isIn(EndTags.END_GROUND)) return false;
|
||||
|
||||
float size = MHelper.randRange(12, 20, random);
|
||||
int count = (int) (size * 0.3F);
|
||||
float var = MHelper.PI2 / (float) (count * 3);
|
||||
float start = MHelper.randRange(0, MHelper.PI2, random);
|
||||
for (int i = 0; i < count; i++) {
|
||||
float angle = (float) i / (float) count * MHelper.PI2 + MHelper.randRange(0, var, random) + start;
|
||||
List<Vector3f> spline = SplineHelper.copySpline(SPLINE);
|
||||
SplineHelper.rotateSpline(spline, angle);
|
||||
SplineHelper.scale(spline, size * MHelper.randRange(0.5F, 1F, random));
|
||||
SplineHelper.offsetParts(spline, random, 1F, 0, 1F);
|
||||
SplineHelper.fillSpline(spline, world, EndBlocks.LUCERNIA.bark.getDefaultState(), pos, REPLACE);
|
||||
Vector3f last = spline.get(spline.size() - 1);
|
||||
float leavesRadius = (size * 0.13F + MHelper.randRange(0.8F, 1.5F, random)) * 1.4F;
|
||||
OpenSimplexNoise noise = new OpenSimplexNoise(random.nextLong());
|
||||
leavesBall(world, pos.add(last.getX(), last.getY(), last.getZ()), leavesRadius, random, noise, config != null);
|
||||
}
|
||||
|
||||
makeRoots(world, pos.add(0, MHelper.randRange(3, 5, random), 0), size * 0.35F, random);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private void leavesBall(StructureWorldAccess world, BlockPos pos, float radius, Random random, OpenSimplexNoise noise, boolean natural) {
|
||||
SDF sphere = new SDFSphere().setRadius(radius).setBlock(EndBlocks.LUCERNIA_LEAVES.getDefaultState().with(LeavesBlock.DISTANCE, 6));
|
||||
SDF sub = new SDFScale().setScale(5).setSource(sphere);
|
||||
sub = new SDFTranslate().setTranslate(0, -radius * 5, 0).setSource(sub);
|
||||
sphere = new SDFSubtraction().setSourceA(sphere).setSourceB(sub);
|
||||
sphere = new SDFScale3D().setScale(1, 0.75F, 1).setSource(sphere);
|
||||
sphere = new SDFDisplacement().setFunction((vec) -> { return (float) noise.eval(vec.getX() * 0.2, vec.getY() * 0.2, vec.getZ() * 0.2) * 2F; }).setSource(sphere);
|
||||
sphere = new SDFDisplacement().setFunction((vec) -> { return MHelper.randRange(-1.5F, 1.5F, random); }).setSource(sphere);
|
||||
|
||||
Mutable mut = new Mutable();
|
||||
for (Direction d1: BlocksHelper.HORIZONTAL) {
|
||||
BlockPos p = mut.set(pos).move(Direction.UP).move(d1).toImmutable();
|
||||
BlocksHelper.setWithoutUpdate(world, p, EndBlocks.LUCERNIA.bark.getDefaultState());
|
||||
for (Direction d2: BlocksHelper.HORIZONTAL) {
|
||||
mut.set(p).move(Direction.UP).move(d2);
|
||||
BlocksHelper.setWithoutUpdate(world, p, EndBlocks.LUCERNIA.bark.getDefaultState());
|
||||
}
|
||||
}
|
||||
|
||||
BlockState top = EndBlocks.FILALUX.getDefaultState().with(BlockProperties.TRIPLE_SHAPE, TripleShape.TOP);
|
||||
BlockState middle = EndBlocks.FILALUX.getDefaultState().with(BlockProperties.TRIPLE_SHAPE, TripleShape.MIDDLE);
|
||||
BlockState bottom = EndBlocks.FILALUX.getDefaultState().with(BlockProperties.TRIPLE_SHAPE, TripleShape.BOTTOM);
|
||||
BlockState outer = EndBlocks.LUCERNIA_OUTER_LEAVES.getDefaultState();
|
||||
|
||||
List<BlockPos> support = Lists.newArrayList();
|
||||
sphere.addPostProcess((info) -> {
|
||||
if (natural && random.nextInt(6) == 0 && info.getStateDown().isAir()) {
|
||||
BlockPos d = info.getPos().down();
|
||||
support.add(d);
|
||||
}
|
||||
if (random.nextInt(15) == 0) {
|
||||
for (Direction dir: Direction.values()) {
|
||||
BlockState state = info.getState(dir, 2);
|
||||
if (state.isAir()) {
|
||||
return info.getState();
|
||||
}
|
||||
}
|
||||
info.setState(EndBlocks.LUCERNIA.bark.getDefaultState());
|
||||
}
|
||||
|
||||
MHelper.shuffle(DIRECTIONS, random);
|
||||
for (Direction d: DIRECTIONS) {
|
||||
if (info.getState(d).isAir()) {
|
||||
info.setBlockPos(info.getPos().offset(d), outer.with(FurBlock.FACING, d));
|
||||
}
|
||||
}
|
||||
|
||||
if (EndBlocks.LUCERNIA.isTreeLog(info.getState())) {
|
||||
for (int x = -6; x < 7; x++) {
|
||||
int ax = Math.abs(x);
|
||||
mut.setX(x + info.getPos().getX());
|
||||
for (int z = -6; z < 7; z++) {
|
||||
int az = Math.abs(z);
|
||||
mut.setZ(z + info.getPos().getZ());
|
||||
for (int y = -6; y < 7; y++) {
|
||||
int ay = Math.abs(y);
|
||||
int d = ax + ay + az;
|
||||
if (d < 7) {
|
||||
mut.setY(y + info.getPos().getY());
|
||||
BlockState state = info.getState(mut);
|
||||
if (state.getBlock() instanceof LeavesBlock) {
|
||||
int distance = state.get(LeavesBlock.DISTANCE);
|
||||
if (d < distance) {
|
||||
info.setState(mut, state.with(LeavesBlock.DISTANCE, d));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return info.getState();
|
||||
});
|
||||
sphere.fillRecursiveIgnore(world, pos, IGNORE);
|
||||
BlocksHelper.setWithoutUpdate(world, pos, EndBlocks.LUCERNIA.bark);
|
||||
|
||||
support.forEach((bpos) -> {
|
||||
BlockState state = world.getBlockState(bpos);
|
||||
if (state.isAir() || state.isOf(EndBlocks.LUCERNIA_OUTER_LEAVES)) {
|
||||
int count = MHelper.randRange(3, 8, random);
|
||||
mut.set(bpos);
|
||||
if (world.getBlockState(mut.up()).isOf(EndBlocks.LUCERNIA_LEAVES)) {
|
||||
BlocksHelper.setWithoutUpdate(world, mut, top);
|
||||
for (int i = 1; i < count; i++) {
|
||||
mut.setY(mut.getY() - 1);
|
||||
if (world.isAir(mut.down())) {
|
||||
BlocksHelper.setWithoutUpdate(world, mut, middle);
|
||||
}
|
||||
else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
BlocksHelper.setWithoutUpdate(world, mut, bottom);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void makeRoots(StructureWorldAccess world, BlockPos pos, float radius, Random random) {
|
||||
int count = (int) (radius * 1.5F);
|
||||
for (int i = 0; i < count; i++) {
|
||||
float angle = (float) i / (float) count * MHelper.PI2;
|
||||
float scale = radius * MHelper.randRange(0.85F, 1.15F, random);
|
||||
|
||||
List<Vector3f> branch = SplineHelper.copySpline(ROOT);
|
||||
SplineHelper.rotateSpline(branch, angle);
|
||||
SplineHelper.scale(branch, scale);
|
||||
Vector3f last = branch.get(branch.size() - 1);
|
||||
if (world.getBlockState(pos.add(last.getX(), last.getY(), last.getZ())).isIn(EndTags.GEN_TERRAIN)) {
|
||||
SplineHelper.fillSplineForce(branch, world, EndBlocks.LUCERNIA.bark.getDefaultState(), pos, REPLACE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
REPLACE = (state) -> {
|
||||
if (state.isIn(EndTags.END_GROUND)) {
|
||||
return true;
|
||||
}
|
||||
if (state.getBlock() == EndBlocks.LUCERNIA_LEAVES) {
|
||||
return true;
|
||||
}
|
||||
if (state.getMaterial().equals(Material.PLANT)) {
|
||||
return true;
|
||||
}
|
||||
return state.getMaterial().isReplaceable();
|
||||
};
|
||||
|
||||
IGNORE = (state) -> {
|
||||
return EndBlocks.LUCERNIA.isTreeLog(state);
|
||||
};
|
||||
|
||||
SPLINE = Lists.newArrayList(
|
||||
new Vector3f(0.00F, 0.00F, 0.00F),
|
||||
new Vector3f(0.10F, 0.35F, 0.00F),
|
||||
new Vector3f(0.20F, 0.50F, 0.00F),
|
||||
new Vector3f(0.30F, 0.55F, 0.00F),
|
||||
new Vector3f(0.42F, 0.70F, 0.00F),
|
||||
new Vector3f(0.50F, 1.00F, 0.00F)
|
||||
);
|
||||
|
||||
ROOT = Lists.newArrayList(
|
||||
new Vector3f(0.1F, 0.70F, 0),
|
||||
new Vector3f(0.3F, 0.30F, 0),
|
||||
new Vector3f(0.7F, 0.05F, 0),
|
||||
new Vector3f(0.8F, -0.20F, 0)
|
||||
);
|
||||
SplineHelper.offset(ROOT, new Vector3f(0, -0.45F, 0));
|
||||
}
|
||||
}
|
|
@ -35,10 +35,10 @@ import ru.betterend.util.sdf.primitive.SDFSphere;
|
|||
import ru.betterend.world.features.DefaultFeature;
|
||||
|
||||
public class TenaneaFeature extends DefaultFeature {
|
||||
private static final Direction[] DIRECTIONS = Direction.values();
|
||||
private static final Function<BlockState, Boolean> REPLACE;
|
||||
private static final Function<BlockState, Boolean> IGNORE;
|
||||
private static final List<Vector3f> SPLINE;
|
||||
private static final Direction[] DIRECTIONS = Direction.values();
|
||||
|
||||
@Override
|
||||
public boolean generate(StructureWorldAccess world, ChunkGenerator chunkGenerator, Random random, BlockPos pos, DefaultFeatureConfig config) {
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/lucernia_leaves_1" },
|
||||
{ "model": "betterend:block/lucernia_leaves_2" },
|
||||
{ "model": "betterend:block/lucernia_leaves_3" },
|
||||
{ "model": "betterend:block/lucernia_leaves_4" }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_1", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_2", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_3", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_4", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_5", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_6", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_7", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_8", "y": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_9", "y": 180 }
|
||||
],
|
||||
"facing=south": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_1" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_2" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_3" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_4" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_5" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_6" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_7" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_8" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_9" }
|
||||
],
|
||||
"facing=east": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_1", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_2", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_3", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_4", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_5", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_6", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_7", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_8", "y": 270 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_9", "y": 270 }
|
||||
],
|
||||
"facing=west": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_1", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_2", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_3", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_4", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_5", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_6", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_7", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_8", "y": 90 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_9", "y": 90 }
|
||||
],
|
||||
"facing=up": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_up_1" },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_up_2" }
|
||||
],
|
||||
"facing=down": [
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_up_1", "x": 180 },
|
||||
{ "model": "betterend:block/lucernia_outer_leaves_up_2", "x": 180 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"defaultMaterial": "betterend:leaves"
|
||||
"defaultMaterial": "betterend:leaves_noshade"
|
||||
}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"defaultMaterial": "betterend:waving_wall"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/cube_noshade",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_leaves_1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/cube_noshade",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_leaves_2"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/cube_noshade",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_leaves_3"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/cube_noshade",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_leaves_4"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_1",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 11, 0 ],
|
||||
"to": [ 17, 11.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 11, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, -10, 0 ],
|
||||
"to": [ 17, 6, 0.001 ],
|
||||
"rotation": { "origin": [ 1, 6, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, 13.5, 0 ],
|
||||
"to": [ 13, 13.501, 16 ],
|
||||
"rotation": { "origin": [ -3, 13.5, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 1, 0 ],
|
||||
"to": [ 17, 1.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 1, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, -9, 0 ],
|
||||
"to": [ 15, 7, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1.5, 16, 0 ],
|
||||
"to": [ 14.5, 16.001, 16 ],
|
||||
"rotation": { "origin": [ -1.5, 16, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, 0.5, 0 ],
|
||||
"to": [ 14, 0.501, 16 ],
|
||||
"rotation": { "origin": [ -2, 0.5, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_1",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -15, 0 ],
|
||||
"to": [ 16, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, -12, 0 ],
|
||||
"to": [ 14, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -2, 4, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -9, 0 ],
|
||||
"to": [ 16, 7, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -3, 0 ],
|
||||
"to": [ 16, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_1",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, 0, 0 ],
|
||||
"to": [ 15, 16, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 16, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 2, -3, 0 ],
|
||||
"to": [ 18, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 2, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -8, 0 ],
|
||||
"to": [ 16, 8, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 8, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, -12, 0 ],
|
||||
"to": [ 13, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -3, 4, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, -15, 0 ],
|
||||
"to": [ 19, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 3, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_2",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 11, 0 ],
|
||||
"to": [ 17, 11.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 11, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, -10, 0 ],
|
||||
"to": [ 17, 6, 0.001 ],
|
||||
"rotation": { "origin": [ 1, 6, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, 13.5, 0 ],
|
||||
"to": [ 13, 13.501, 16 ],
|
||||
"rotation": { "origin": [ -3, 13.5, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 1, 0 ],
|
||||
"to": [ 17, 1.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 1, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, -9, 0 ],
|
||||
"to": [ 15, 7, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1.5, 16, 0 ],
|
||||
"to": [ 14.5, 16.001, 16 ],
|
||||
"rotation": { "origin": [ -1.5, 16, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, 0.5, 0 ],
|
||||
"to": [ 14, 0.501, 16 ],
|
||||
"rotation": { "origin": [ -2, 0.5, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_2",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -15, 0 ],
|
||||
"to": [ 16, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, -12, 0 ],
|
||||
"to": [ 14, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -2, 4, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -9, 0 ],
|
||||
"to": [ 16, 7, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -3, 0 ],
|
||||
"to": [ 16, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_2",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, 0, 0 ],
|
||||
"to": [ 15, 16, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 16, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 2, -3, 0 ],
|
||||
"to": [ 18, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 2, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -8, 0 ],
|
||||
"to": [ 16, 8, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 8, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, -12, 0 ],
|
||||
"to": [ 13, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -3, 4, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, -15, 0 ],
|
||||
"to": [ 19, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 3, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_3",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 11, 0 ],
|
||||
"to": [ 17, 11.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 11, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, -10, 0 ],
|
||||
"to": [ 17, 6, 0.001 ],
|
||||
"rotation": { "origin": [ 1, 6, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, 13.5, 0 ],
|
||||
"to": [ 13, 13.501, 16 ],
|
||||
"rotation": { "origin": [ -3, 13.5, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 1, 1, 0 ],
|
||||
"to": [ 17, 1.001, 16 ],
|
||||
"rotation": { "origin": [ 1, 1, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, -9, 0 ],
|
||||
"to": [ 15, 7, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1.5, 16, 0 ],
|
||||
"to": [ 14.5, 16.001, 16 ],
|
||||
"rotation": { "origin": [ -1.5, 16, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, 0.5, 0 ],
|
||||
"to": [ 14, 0.501, 16 ],
|
||||
"rotation": { "origin": [ -2, 0.5, 0 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_3",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, 15, 0 ],
|
||||
"to": [ 19, 15.001, 16 ],
|
||||
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -15, 0 ],
|
||||
"to": [ 16, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -2, -12, 0 ],
|
||||
"to": [ 14, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -2, 4, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -9, 0 ],
|
||||
"to": [ 16, 7, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 7, 0 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -3, 0 ],
|
||||
"to": [ 16, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/lucernia_outer_leaves_3",
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -1, 0, 0 ],
|
||||
"to": [ 15, 16, 0.001 ],
|
||||
"rotation": { "origin": [ -1, 16, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 2, -3, 0 ],
|
||||
"to": [ 18, 13, 0.001 ],
|
||||
"rotation": { "origin": [ 2, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -8, 0 ],
|
||||
"to": [ 16, 8, 0.001 ],
|
||||
"rotation": { "origin": [ 0, 8, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ -3, -12, 0 ],
|
||||
"to": [ 13, 4, 0.001 ],
|
||||
"rotation": { "origin": [ -3, 4, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 3, -15, 0 ],
|
||||
"to": [ 19, 1, 0.001 ],
|
||||
"rotation": { "origin": [ 3, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lucernia_outer_leaves_1",
|
||||
"texture": "betterend:block/lucernia_outer_leaves_1",
|
||||
"spore": "betterend:block/lucernia_outer_leaves_1"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -0.001, -10 ],
|
||||
"to": [ 16, 0, 6 ],
|
||||
"rotation": { "origin": [ 0, 0, 6 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, 0, 10 ],
|
||||
"to": [ 16, 0.001, 26 ],
|
||||
"rotation": { "origin": [ 0, 0, 10 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ 10, -0.001, 0 ],
|
||||
"to": [ 26, 0, 16 ],
|
||||
"rotation": { "origin": [ 10, 0, 16 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ -10, 0, 2 ],
|
||||
"to": [ 6, 0.001, 18 ],
|
||||
"rotation": { "origin": [ 6, 0, 18 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX6",
|
||||
"from": [ 0, 0, -6.5 ],
|
||||
"to": [ 0.001, 16, 16 ],
|
||||
"rotation": { "origin": [ 0, 16, 16 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX6",
|
||||
"from": [ -6.5, 0, 15.999 ],
|
||||
"to": [ 16, 16, 16 ],
|
||||
"rotation": { "origin": [ 16, 16, 16 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ 9, -0.001, 0 ],
|
||||
"to": [ 25, 0, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 16 ], "axis": "z", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 90 },
|
||||
"up": { "uv": [ 16, 16, 0, 0 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ -9, 0, 2 ],
|
||||
"to": [ 7, 0.001, 18 ],
|
||||
"rotation": { "origin": [ 7, 0, 18 ], "axis": "z", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lucernia_outer_leaves_2",
|
||||
"texture": "betterend:block/lucernia_outer_leaves_2",
|
||||
"spore": "betterend:block/lucernia_outer_leaves_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -0.001, -10 ],
|
||||
"to": [ 16, 0, 6 ],
|
||||
"rotation": { "origin": [ 0, 0, 6 ], "axis": "x", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, 0, 10 ],
|
||||
"to": [ 16, 0.001, 26 ],
|
||||
"rotation": { "origin": [ 0, 0, 10 ], "axis": "x", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ 10, -0.001, 0 ],
|
||||
"to": [ 26, 0, 16 ],
|
||||
"rotation": { "origin": [ 10, 0, 16 ], "axis": "z", "angle": 22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 90 },
|
||||
"up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ -10, 0, 2 ],
|
||||
"to": [ 6, 0.001, 18 ],
|
||||
"rotation": { "origin": [ 6, 0, 18 ], "axis": "z", "angle": -22.5 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX6",
|
||||
"from": [ 0, 0, -6.5 ],
|
||||
"to": [ 0.001, 16, 16 ],
|
||||
"rotation": { "origin": [ 0, 16, 16 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX6",
|
||||
"from": [ -6.5, 0, 15.999 ],
|
||||
"to": [ 16, 16, 16 ],
|
||||
"rotation": { "origin": [ 16, 16, 16 ], "axis": "y", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#spore" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, -0.001, -9 ],
|
||||
"to": [ 16, 0, 7 ],
|
||||
"rotation": { "origin": [ 0, 0, 7 ], "axis": "x", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY1",
|
||||
"from": [ 0, 0, 9 ],
|
||||
"to": [ 16, 0.001, 25 ],
|
||||
"rotation": { "origin": [ 0, 0, 9 ], "axis": "x", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 180 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ 9, -0.001, 0 ],
|
||||
"to": [ 25, 0, 16 ],
|
||||
"rotation": { "origin": [ 9, 0, 16 ], "axis": "z", "angle": 45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 90 },
|
||||
"up": { "uv": [ 16, 16, 0, 0 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneY4",
|
||||
"from": [ -9, 0, 2 ],
|
||||
"to": [ 7, 0.001, 18 ],
|
||||
"rotation": { "origin": [ 7, 0, 18 ], "axis": "z", "angle": -45 },
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "rotation": 270 },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/lucernia_leaves_1"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:block/lucernia_outer_leaves_2"
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 258 B |
After Width: | Height: | Size: 241 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 284 B |
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 258 B |
After Width: | Height: | Size: 195 B |
After Width: | Height: | Size: 212 B |
After Width: | Height: | Size: 213 B |