Examples of WorldGenSparseMinableCluster


Examples of cofh.lib.world.WorldGenSparseMinableCluster

        template = genObject.get("generator").getAsString();
      }
    }

    if ("sparse-cluster".equals(template)) {
      return new WorldGenSparseMinableCluster(resList, clusterSize, matList);
    } else if ("large-vein".equals(template)) {
      boolean sparse = true;
      if (isObject) {
        sparse = genObject.has("sparse") ? genObject.get("sparse").getAsBoolean() : sparse;
      }
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.