Package buildcraft.builders

Examples of buildcraft.builders.TileBuilder$PathIterator


        if (subTile instanceof TileConstructionMarker) {
          TileConstructionMarker marker = (TileConstructionMarker) subTile;
          blueprint = ItemBlueprint.loadBlueprint(marker.itemBlueprint);
          orientation = marker.direction;
        } else if (subTile instanceof TileBuilder) {
          TileBuilder builder = (TileBuilder) subTile;
          blueprint = ItemBlueprint.loadBlueprint(builder.getStackInSlot(0));
          orientation = ForgeDirection.values()[architect.getWorldObj().getBlockMetadata(subBlock.x, subBlock.y,
              subBlock.z)].getOpposite();
        }

        if (blueprint != null) {
View Full Code Here

TOP

Related Classes of buildcraft.builders.TileBuilder$PathIterator

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.