Package forestry.factory.gadgets

Examples of forestry.factory.gadgets.MachineCarpenter$RecipeManager


  }

  @Override
  protected void drawGuiContainerBackgroundLayer(float var1, int mouseX, int mouseY) {
    super.drawGuiContainerBackgroundLayer(var1, mouseX, mouseY);
    MachineCarpenter machine = tile;

    if (machine.isWorking()) {
      int progressScaled = 16 - machine.getCraftingProgressScaled(16);
      drawTexturedModalRect(guiLeft + 98, guiTop + 51 + 16 - progressScaled, 176, 60 + 16 - progressScaled, 4, progressScaled);
    }
  }
View Full Code Here

TOP

Related Classes of forestry.factory.gadgets.MachineCarpenter$RecipeManager

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.