Package civquest.map.overlap

Examples of civquest.map.overlap.TerrainOverlapManager


    }

    String whichTerrainOM = paintingSection.getField("whichTerrainOverlapManager")
      .getStringValue();

    TerrainOverlapManager omManager;
    if (whichTerrainOM.equals("Random")) {
      // hack for now
      omManager = null;
//       omManager = new RandomTerrainOverlapManager(quadMap.getGameData(),
//                             overlapRegistry);
View Full Code Here


        if (heightLevelImage == null) {
          printHeightImageMissingError(position);
        }
      }

      TerrainOverlapManager overlapManager = quadMap.getTerrainOverlapManager();
      if (overlapManager != null) {
        // We care about overlapping...

        // make the order of the overlap-images random! Perhaps save space
        // by not constructing all arrays
View Full Code Here

TOP

Related Classes of civquest.map.overlap.TerrainOverlapManager

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.