Package buildcraft.core.blueprints

Examples of buildcraft.core.blueprints.Blueprint


    a.removeFromWorld();
    forceChunkLoading(chunkTicket);
  }

  private void initializeBlueprintBuilder() {
    Blueprint bpt = ((FillerPattern) FillerManager.registry.getPattern("buildcraft:frame"))
        .getBlueprint(box, worldObj, BuildCraftFactory.frameBlock, 0);

    builder = new BptBuilderBlueprint(bpt, worldObj, box.xMin, yCoord, box.zMin);
    stage = Stage.BUILDING;
  }
View Full Code Here


  }

  public abstract Template getTemplate (Box box, World world);

  public Blueprint getBlueprint (Box box, World world, Block block, int meta) {
    Blueprint result = new Blueprint (box.sizeX(), box.sizeY(), box.sizeZ());

    Template tmpl = getTemplate(box, world);

    for (int x = 0; x < box.sizeX(); ++x) {
      for (int y = 0; y < box.sizeY(); ++y) {
View Full Code Here

TOP

Related Classes of buildcraft.core.blueprints.Blueprint

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.