Package buildcraft.core

Examples of buildcraft.core.Box.expand()


  @Override
  public AxisAlignedBB getRenderBoundingBox() {
    Box renderBox = new Box(this).extendToEncompass(box);

    return renderBox.expand(50).getBoundingBox();
  }

  @RPC(RPCSide.SERVER)
  private void uploadBuildersInAction(RPCMessageInfo info) {
    for (BuildingItem i : buildersInAction) {
View Full Code Here


    for (LaserData l : pathLasers) {
      renderBox = renderBox.extendToEncompass(l.head);
      renderBox = renderBox.extendToEncompass(l.tail);
    }

    return renderBox.expand(50).getBoundingBox();
  }

  public void build () {
    if (currentBuilder != null) {
      if (currentBuilder.buildNextSlot(worldObj, this, xCoord, yCoord, zCoord)) {
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.