Package igwmod.gui

Examples of igwmod.gui.LocatedTexture


        try {
            y = Integer.parseInt(arguments[1]);
        } catch(NumberFormatException e) {
            throw new IllegalArgumentException("The second parameter (the y coordinate) contains an invalid number. Check for invalid characters!");
        }
        locatedTextures.add(new LocatedTexture(TextureSupplier.getTexture(Paths.MOD_ID + "textures/pressureChamberRecipe.png"), x, y, 1 / GuiWiki.TEXT_SCALE));

        //Look up the recipe

        if(arguments[2].equals("disenchanting")) {
            handleDisenchanting(x, y, locatedStacks);
View Full Code Here


        try {
            y = Integer.parseInt(arguments[1]);
        } catch(NumberFormatException e) {
            throw new IllegalArgumentException("The second parameter (the y coordinate) contains an invalid number. Check for invalid characters!");
        }
        locatedTextures.add(new LocatedTexture(TextureSupplier.getTexture(Paths.MOD_ID + "textures/assemblyLineRecipe.png"), x, y, 1 / GuiWiki.TEXT_SCALE));

        int recipeIndex = 0;
        if(arguments.length == 4) {
            try {
                recipeIndex = Integer.parseInt(arguments[3]);
View Full Code Here

TOP

Related Classes of igwmod.gui.LocatedTexture

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.