Examples of SlotUntouchable


Examples of buildcraft.core.gui.slots.SlotUntouchable

      for (int x = 0; x < 3; x++) {
        addSlotToContainer(new SlotPhantom(table.getCraftingSlots(), x + y * 3, 33 + x * 18, 16 + y * 18));
      }
    }

    addSlotToContainer(new SlotUntouchable(table.getOutputSlot(), 0, 127, 34));

    for (int y = 0; y < 3; y++) {
      for (int x = 0; x < 5; x++) {
        addSlotToContainer(new Slot(workbench, x + y * 5, 15 + x * 18, 85 + y * 18));
      }
 
View Full Code Here

Examples of buildcraft.core.gui.slots.SlotUntouchable

    this.table = table;

    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_A, 17, 28));
    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_B, 53, 28));
    addSlot(new SlotOutput(table, TileIntegrationTable.SLOT_OUTPUT, 143, 44));
    addSlot(new SlotUntouchable(table.getRecipeOutput(), 0, 116, 44));

    for (int i = TileIntegrationTable.SLOT_OUTPUT + 1; i < 12; i++) {
      addSlot(new Slot(table, i, 8 + (i - (TileIntegrationTable.SLOT_OUTPUT + 1)) * 18, 69));
    }

View Full Code Here

Examples of buildcraft.core.gui.slots.SlotUntouchable

          InvUtils.addItemToolTip(stack, EnumChatFormatting.YELLOW + StringUtils.localize("gui.clickcraft"));
        }
      }
    };
    this.tile = t;
    addSlotToContainer(new SlotUntouchable(craftResult, 0, 93, 27) {
      @Override
      public void onPickupFromSlot(EntityPlayer player, ItemStack itemstack) {
        tile.useLast = true;
      }
    });
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.