Examples of WorldGenBoulder


Examples of cofh.lib.world.WorldGenBoulder

        r.stackHeight = genObject.get("yVariance").getAsInt();
      if (genObject.has("zVariance"))
        r.stackHeight = genObject.get("zVariance").getAsInt();
      return r;
    } else if ("boulder".equals(template)) {
      WorldGenBoulder r = new WorldGenBoulder(resList, clusterSize, matList);
      if (isObject) {
        if (genObject.has("sizeVariance"))
          r.sizeVariance = genObject.get("sizeVariance").getAsInt();
        if (genObject.has("count"))
          r.clusters = genObject.get("count").getAsInt();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.