Examples of RotorInfo


Examples of erogenousbeef.bigreactors.common.multiblock.helpers.RotorInfo

    boundingBox = AxisAlignedBB.getBoundingBox(minCoord.x, minCoord.y, minCoord.z, maxCoord.x, maxCoord.y, maxCoord.z);
   
    if(worldObj.isRemote) {
      // Calculate rotor info
      rotorInfo = new RotorInfo();
      rotorInfo.rotorDirection = getOutwardsDir().getOpposite();
      switch(rotorInfo.rotorDirection) {
        case DOWN:
        case UP:
        case UNKNOWN:
View Full Code Here

Examples of erogenousbeef.bigreactors.common.multiblock.helpers.RotorInfo

   
    Integer displayList = bearing.getDisplayList();
    ForgeDirection rotorDir = bearing.getOutwardsDir().getOpposite();
   
    if(displayList == null) {
      RotorInfo info = bearing.getRotorInfo();
      displayList = generateRotor(info);
      bearing.setDisplayList(displayList);
    }
   
    float angle = bearing.getAngle();
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.