Package org.spout.api.material.block

Examples of org.spout.api.material.block.BlockFaces


    // Register the directional submaterials
    if (model == null) {
      return;
    }
    int i = 1;
    for (BlockFace face : new BlockFaces(BlockFace.WEST, BlockFace.NORTH, BlockFace.SOUTH)) {
      new Pumpkin(name + "_" + face.name().charAt(0), id, i++, this, ModelUtil.getDirectionalModel(model, face), lantern);
    }
    new Pumpkin(name, id, i, this, model, lantern);
  }
View Full Code Here

TOP

Related Classes of org.spout.api.material.block.BlockFaces

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.