Package cofh.lib.world

Examples of cofh.lib.world.WorldGenAdvLakes


    } else if ("lake".equals(template)) {
      boolean useMaterial = false;
      if (isObject) {
        useMaterial = genObject.has("useMaterial") ? genObject.get("useMaterial").getAsBoolean() : useMaterial;
      }
      WorldGenAdvLakes r = new WorldGenAdvLakes(resList, useMaterial ? matList : null);
      if (isObject) {
        if (genObject.has("outlineWithStone"))
          r.outlineBlock = genObject.get("outlineWithStone").getAsBoolean() ?
              new WeightedRandomBlock(Blocks.stone, 0) : null;
        if (genObject.has("outlineBlock"))
View Full Code Here

TOP

Related Classes of cofh.lib.world.WorldGenAdvLakes

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.