use of codechicken.lib.raytracer.IndexedCuboid6 in project PneumaticCraft by MineMaarten.
the class PartPressureTube method getSubParts.
@Override
public Iterable<IndexedCuboid6> getSubParts() {
Iterable<Cuboid6> boxList = getCollisionBoxes();
LinkedList<IndexedCuboid6> partList = new LinkedList<IndexedCuboid6>();
for (Cuboid6 c : boxList) partList.add(new IndexedCuboid6(0, c));
return partList;
}
Aggregations