Package org.terasology.utilities.procedural

Examples of org.terasology.utilities.procedural.NoiseTable


    private NoiseTable treeSeedNoise;
    private TreeProviderConfiguration configuration = new TreeProviderConfiguration();

    @Override
    public void setSeed(long seed) {
        treeNoise = new NoiseTable(seed);
        treeSeedNoise = new NoiseTable(seed + 1);
    }
View Full Code Here


    private NoiseTable noiseTable;
    private FloraProviderConfiguration configuration = new FloraProviderConfiguration();

    @Override
    public void setSeed(long seed) {
        noiseTable = new NoiseTable(seed);
    }
View Full Code Here

TOP

Related Classes of org.terasology.utilities.procedural.NoiseTable

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.