Package mods.railcraft.common.worldgen.NoiseGen

Examples of mods.railcraft.common.worldgen.NoiseGen.NoiseGenSimplex


        NoiseGen noise = noiseMap.get(world);
        if (noise == null) {
            long seed = world.getSeed();
            seed += world.provider.dimensionId;
            seed += noiseSeed;
            noise = new NoiseGenSimplex(new Random(seed), scale);
            noiseMap.put(world, noise);
        }

        if (canGen(world, rand, worldX, worldZ))
            for (int i = 0; i < 32; i++) {
View Full Code Here

TOP

Related Classes of mods.railcraft.common.worldgen.NoiseGen.NoiseGenSimplex

Copyright © 2018 www.massapicom. 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.