Examples of CuboidBlockMaterialProcedure


Examples of org.spout.api.util.cuboid.procedure.CuboidBlockMaterialProcedure

    final int baseX = base.getFloorX();
    final int baseY = base.getFloorY();
    final int baseZ = base.getFloorZ();

    buffer.forEach(new CuboidBlockMaterialProcedure() {
      @Override
      public boolean execute(int x, int y, int z, short id, short data) {
        x -= baseX;
        z -= baseZ;
View Full Code Here

Examples of org.spout.api.util.cuboid.procedure.CuboidBlockMaterialProcedure

      for (int z = 0; z < sizeZ; z++) {
        height[x][z] = genHeight[x][z];
      }
    }

    buffer.forEach(new CuboidBlockMaterialProcedure() {
      @Override
      public boolean execute(int x, int y, int z, short id, short data) {
        x -= baseX;
        z -= baseZ;
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.