Package logisticspipes.textures.Textures

Examples of logisticspipes.textures.Textures.TextureType


    if (connection == ForgeDirection.UNKNOWN){
      return getCenterTexture();
    } else if ((router != null) && getRouter().isRoutedExit(connection)) {
      return getRoutedTexture(connection);
    } else {
      TextureType texture = getNonRoutedTexture(connection);
      if(this.getUpgradeManager().hasRFPowerSupplierUpgrade() || this.getUpgradeManager().getIC2PowerLevel() > 0) {
        if(texture.fileName.equals(Textures.LOGISTICSPIPE_NOTROUTED_TEXTURE.fileName)) {
          texture = Textures.LOGISTICSPIPE_NOTROUTED_POWERED_TEXTURE;
        } else if(texture.fileName.equals(Textures.LOGISTICSPIPE_LIQUID_TEXTURE.fileName)) {
          texture = Textures.LOGISTICSPIPE_LIQUID_POWERED_TEXTURE;
View Full Code Here


    return Textures.LPpipeIconProvider;
  }
 
  @Override
  public final int getIconIndex(ForgeDirection connection) {
    TextureType texture = getTextureType(connection);
    if(_textureBufferPowered) {
      return texture.powered;
    } else if(Configs.LOGISTICS_POWER_USAGE_DISABLED) {
      return texture.normal;
    } else {
View Full Code Here

TOP

Related Classes of logisticspipes.textures.Textures.TextureType

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.