Examples of FlatSurfaceHeightProvider


Examples of org.terasology.core.world.generator.facetProviders.FlatSurfaceHeightProvider

    @Override
    protected WorldBuilder createWorld(long seed) {
        return new WorldBuilder(seed)
                .addProvider(new SeaLevelProvider(32))
                        // height of 40 so that it is far enough from sea level so that it doesnt just create beachfront
                .addProvider(new FlatSurfaceHeightProvider(40))
                .addProvider(new PerlinHumidityProvider())
                .addProvider(new PerlinSurfaceTemperatureProvider())
                .addProvider(new BiomeProvider())
                .addProvider(new SurfaceToDensityProvider())
                .addProvider(new FloraProvider())
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.