Examples of BiomeGenCustom


Examples of com.khorn.terraincontrol.forge.generator.BiomeGenCustom

    {
        // Store the previous biome in a variable
        BiomeGenBase previousBiome = BiomeGenBase.getBiome(biomeIds.getSavedId());

        // Register new biome
        ForgeBiome biome = new ForgeBiome(biomeConfig, new BiomeGenCustom(biomeConfig.getName(), biomeIds));

        // Restore settings of the previous biome
        if (previousBiome != null)
        {
            biome.biomeBase.copyBiome(previousBiome);
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.