Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

As well all know in minecraft inventory items (that can have more then 1 item amount) show a number once there amount goes above 1 (3 for the acacia plank for example) as shown below:

spacer.png

now im trying to not render the item amount I found the following way I could maybe do that:

 

public class CustomItemRenderer extends ItemRenderer{
    public CustomItemRenderer(TextureManager textureManagerIn, ModelManager modelManagerIn, ItemColors itemColorsIn) {
        super(textureManagerIn, modelManagerIn, itemColorsIn);
    }

    @Override
    public void renderItemOverlayIntoGUI(FontRenderer fr, ItemStack stack, int xPosition, int yPosition, @Nullable String text) {
        if (stack.getCount() > 1) {
            return;
        }

        super.renderItemOverlayIntoGUI(fr, stack, xPosition, yPosition, text);
    }

}



when I hover over renderItemOverlayIntoGUI I get the following tooltip in intelij:

public void renderItemOverlayIntoGUI(
Font Renderer fr,
@NotNull » ItemStack stack,
int position,
int position,
@Nullable String text
From class: ItemRenderer
Renders the stack size and/or damage bar for the
given ItemStack.

which shows me what I want, to to not render the stack size. but I have no clue how to register this class since it has a super as follows:

public CustomItemRenderer(TextureManager textureManagerIn, ModelManager modelManagerIn, ItemColors itemColorsIn) {
        super(textureManagerIn, modelManagerIn, itemColorsIn);
}

 

Edited by Yessasin

  • Author
26 minutes ago, ModTester said:

A programming language?

Java (gradle), just added it to the tags in mappings channel: 'snapshot', version: '20210309-1.16.5'

Edited by Yessasin

A code: public class CommonProxy {
    public void registerItemRenderer() {
        Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
                ModItems.YOUR_ITEM,
                0,
                new ModelResourceLocation(ModItems.YOUR_ITEM.getRegistryName(), "inventory")
        );
        Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
                ModItems.YOUR_ITEM,
                0,
                new ModelResourceLocation(ModItems.YOUR_ITEM.getRegistryName(), "inventory"),
                new CustomItemRenderer(Minecraft.getMinecraft().getTextureManager(), Minecraft.getMinecraft().getRenderItem().getItemModelMesher().getModelManager(), Minecraft.getMinecraft().getItemColors())
        );
    }
}

 

In YOUR_ITEM you must specify item.

If not working try this: public class ModInit {
    @Mod.EventHandler
    public void init(FMLInitializationEvent event) {
        CommonProxy commonProxy = new CommonProxy();
        commonProxy.registerItemRenderer();
    }
}

  • Author

Its not really the solution I'm searching for. Since I want in my custom inventory to also not show the item stack size of vanilla items and not just my custom items.

Maybe I should explain it more as the bigger stacks. In this mod whenever you have more then 10.000 items it becomes 10k now instead of it for me being 10k I want to remove the value completely.  

Edited by Yessasin

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.