Package com.ardor3d.extension.terrain.client

Examples of com.ardor3d.extension.terrain.client.TerrainConfiguration


        this.layerStructure = layerStructure;
    }

    @Override
    public TerrainConfiguration getConfiguration() throws Exception {
        return new TerrainConfiguration(availableClipmapLevels, tileSize, scale, -verticalScale*10, verticalScale*10, false);
    }
View Full Code Here


        this.size = size;
    }

    @Override
    public TerrainConfiguration getConfiguration() throws Exception {
        return new TerrainConfiguration(availableClipmapLevels, tileSize, new Vector3(1, 1, 1), 0.0f, 1.0f, true);
    }
View Full Code Here

        this.maxHeight = maxHeight;
    }

    @Override
    public TerrainConfiguration getConfiguration() throws Exception {
        return new TerrainConfiguration(availableClipmapLevels, tileSize, scale, minHeight, maxHeight, false);
    }
View Full Code Here

        availableClipmapLevels = inMemoryTerrainData.getClipmapLevels();
    }

    @Override
    public TerrainConfiguration getConfiguration() throws Exception {
        return new TerrainConfiguration(availableClipmapLevels, tileSize, inMemoryTerrainData.getScale(),
                inMemoryTerrainData.getMinHeight(), inMemoryTerrainData.getMaxHeight(), true);
    }
View Full Code Here

        this.heightMax = heightMax;
    }

    @Override
    public TerrainConfiguration getConfiguration() throws Exception {
        return new TerrainConfiguration(heightMaps.size(), tileSize, scale, heightMin, heightMax, true);
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.terrain.client.TerrainConfiguration

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.