Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiAphorismTile


            case GUI_ID_AERIAL_INTERFACE:
                return new GuiAerialInterface(player.inventory, (TileEntityAerialInterface)world.getTileEntity(x, y, z));
            case GUI_ID_ELECTROSTATIC_COMPRESSOR:
                return new GuiElectrostaticCompressor(player.inventory, (TileEntityElectrostaticCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_APHORISM_TILE:
                return new GuiAphorismTile((TileEntityAphorismTile)world.getTileEntity(x, y, z));
            case GUI_ID_OMNIDIRECTIONAL_HOPPER:
                return new GuiOmnidirectionalHopper(player.inventory, (TileEntityOmnidirectionalHopper)world.getTileEntity(x, y, z));
            case GUI_ID_PROGRAMMER:
                return new GuiProgrammer(player.inventory, (TileEntityProgrammer)world.getTileEntity(x, y, z));
            case GUI_ID_DRONE:
View Full Code Here


        float textScale = Math.min(14 / 16F / lineWidth, 14 / 16F / lineHeight);
        GL11.glScalef(textScale, textScale, textScale);
        GL11.glRotatef(tile.textRotation * 90, 0, 0, 1);
        int editedLine = -1;
        if(FMLClientHandler.instance().getClient().currentScreen instanceof GuiAphorismTile) {
            GuiAphorismTile gui = (GuiAphorismTile)FMLClientHandler.instance().getClient().currentScreen;
            if(gui.tile == tile && gui.updateCounter % 12 < 6) {
                editedLine = gui.cursorY;
            }
        }

View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiAphorismTile

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.