Package buildcraft.core

Examples of buildcraft.core.ItemRobot


    redstoneCrystal = (new ItemBuildCraft()).setUnlocalizedName("redstoneCrystal");
    CoreProxy.proxy.registerItem(redstoneCrystal);
    OreDictionary.registerOre("redstoneCrystal", new ItemStack(redstoneCrystal));

    robotItem = new ItemRobot().setUnlocalizedName("robot");
    CoreProxy.proxy.registerItem(robotItem);

    RedstoneBoardRegistry.instance = new ImplRedstoneBoardRegistry();

    RedstoneBoardRegistry.instance.registerBoardClass(BoardRobotPickerNBT.instance, 20);
View Full Code Here


    GL11.glPushMatrix();
    GL11.glDisable(GL11.GL_LIGHTING);

    if (item.getItem() == BuildCraftSilicon.robotItem) {
      ItemRobot robot = (ItemRobot) item.getItem();
      RenderManager.instance.renderEngine.bindTexture(robot.getTextureRobot(item));
    }

    float factor = (float) (1.0 / 16.0);

    if (type == ItemRenderType.EQUIPPED_FIRST_PERSON) {
View Full Code Here

TOP

Related Classes of buildcraft.core.ItemRobot

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.