Package buildcraft.core.blueprints

Examples of buildcraft.core.blueprints.BlueprintReadConfiguration


    Keyboard.enableRepeatEvents(false);
  }

  @Override
  protected void actionPerformed(GuiButton button) {
    BlueprintReadConfiguration conf = architect.readConfiguration;

    if (button == optionRotate) {
      conf.rotate = !conf.rotate;
    } else if (button == optionExcavate) {
      conf.excavate = !conf.excavate;
View Full Code Here


    updateButtons();
  }

  private void updateButtons () {
    BlueprintReadConfiguration conf = architect.readConfiguration;

    if (conf.rotate) {
      optionRotate.displayString = StringUtils.localize("tile.architect.rotate");
    } else {
      optionRotate.displayString =  StringUtils.localize("tile.architect.norotate");
View Full Code Here

TOP

Related Classes of buildcraft.core.blueprints.BlueprintReadConfiguration

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.