Package net.minecraft.src

Examples of net.minecraft.src.ResourceLocation


      if (entry.getKey() instanceof String && entry.getValue() instanceof String) {
        String key = (String)entry.getKey();
        String value = (String)entry.getValue();

        if (key.startsWith("palette.block.")) {
          ResourceLocation address = TexturePackAPI.parseResourceLocation(Colorizer.COLOR_PROPERTIES, key.substring("palette.block.".length()).trim());

          if (address != null) {
            ColorMap colorMap = new ColorMap(16777215);
            colorMap.loadColorMap(true, address);
View Full Code Here


    // Spout Start - Render ours separately
    renderInInventory(true);
    // Spout End

    this.mc.getTextureManager().bindTexture(new ResourceLocation("textures/gui/container/creative_inventory/tab_" + var4.getBackgroundImageName()));
    this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize);
    this.searchField.drawTextBox();
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    int var9 = this.guiLeft + 175;
    var6 = this.guiTop + 18;
View Full Code Here

  public void renderInInventory(boolean beforeBackground) {
    if (!beforeBackground && selectedTabIndex != 12) {
      return;
    }   
    Minecraft.getMinecraft().getTextureManager().bindTexture(new ResourceLocation("textures/gui/container/creative_inventory/tabs.png"));
    byte var9 = 32;

    int startY = 0;
    int diff = 75;
    if (!beforeBackground) {
View Full Code Here

TOP

Related Classes of net.minecraft.src.ResourceLocation

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.