Jump to content

[1.8.9] Setting a background icon for inventory slots


Bedrock_Miner

Recommended Posts

Hello everyone!

 

I want to create a GUI where some of the Slots have a background texture, similar to the armor background icon for the player inventory.

However, I ran into a problem there:

 

The code for the rendering of the slot (GuiContainer) showed me that I need to have a TextureAtlasSprite for the slot.

 

 

if (itemstack == null)
        {
            TextureAtlasSprite textureatlassprite = slotIn.getBackgroundSprite(); //RIGHT HERE

            if (textureatlassprite != null)
            {
                GlStateManager.disableLighting();
                this.mc.getTextureManager().bindTexture(slotIn.getBackgroundLocation());
                this.drawTexturedModalRect(i, j, textureatlassprite, 16, 16);
                GlStateManager.enableLighting();
                flag1 = true;
            }
        }

 

 

However, I have no Idea how I can set this value as the variable is private and has no setter. Furthermore, I don't even know how to create an instance of this class.

 

It looks like I can display an item texture by its name there, but I don't want the texture of an existing item but a completely new one.

Can I register it somehow and then bind it to the slot?

And why the heck is this so complicated that I cannot simply define a resource location of a 16*16 image that will be rendered into the slot?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.