Package Hexel.generation.terrainGenerator.typeMaps

Examples of Hexel.generation.terrainGenerator.typeMaps.TypeHeightMapGenerator


  public TypeFractalHeightMapGenerator(int seed, int scaleX, int scaleY, int scaleZ){
    this.scaleX = scaleX;
    this.scaleY = scaleY;
    this.scaleZ = scaleZ;
    thmg = new TypeHeightMapGenerator(seed);
    this.HM_W = scaleX;
    this.HM_H = scaleY;

    this.hmapCache = CacheBuilder.newBuilder().maximumSize(100)
        .removalListener(new RemovalListener<Vector2i, HeightMap>() {
View Full Code Here

TOP

Related Classes of Hexel.generation.terrainGenerator.typeMaps.TypeHeightMapGenerator

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.