Package buildcraft.core.utils

Examples of buildcraft.core.utils.PathFinding.iterate()


        firstEntity = this;
      } else {
        PathFinding p = new PathFinding(worldObj, new BlockIndex(xCoord, yCoord, zCoord), new BlockIndex(
            firstEntity.xCoord, firstEntity.yCoord, firstEntity.zCoord));

        p.iterate(10000);

        LinkedList<BlockIndex> r = p.getResult();

        for (BlockIndex b : r) {
          worldObj.setBlock(b.x, b.y, b.z, Blocks.sponge);
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.