Package mekanism.common.transporter

Examples of mekanism.common.transporter.TransporterFilter


        {
          int yStart = i*29 + 18;

          if(xAxis >= 56 && xAxis <= 152 && yAxis >= yStart && yAxis <= yStart+29)
          {
            TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);

            if(filter instanceof TItemStackFilter)
            {
              SoundHandler.playSound("gui.button.press");
              Mekanism.packetHandler.sendToServer(new LogisticalSorterGuiMessage(SorterGuiPacket.SERVER_INDEX, Coord4D.get(tileEntity), 1, getFilterIndex()+i, 0));
View Full Code Here


    for(int i = 0; i < 4; i++)
    {
      if(tileEntity.filters.get(getFilterIndex()+i) != null)
      {
        TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);
        int yStart = i*29 + 18;

        if(filter instanceof TItemStackFilter)
        {
          TItemStackFilter itemFilter = (TItemStackFilter)filter;
View Full Code Here

    for(int i = 0; i < 4; i++)
    {
      if(tileEntity.filters.get(getFilterIndex()+i) != null)
      {
        TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);
        int yStart = i*29 + 18;

        boolean mouseOver = xAxis >= 56 && xAxis <= 152 && yAxis >= yStart && yAxis <= yStart+29;

        if(filter instanceof TItemStackFilter)
View Full Code Here

TOP

Related Classes of mekanism.common.transporter.TransporterFilter

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.