Item Glow is a client-side mod that displays essential information about the items in your hand directly on your HUD. Instead of opening your inventory to check durability or enchantment levels, I've made it so you can see everything at a glance with smooth animations and a clean design.
|
See exactly how many uses are left on your tools and armor. I've included a color-coded bar and numerical values that update in real-time as you use your gear. |
|
If an item has multiple enchantments or potion effects, the HUD cycles through them automatically. It keeps the screen uncluttered while making sure you know exactly what you're holding. |
|
I wanted this mod to fit any UI style, so almost everything is configurable via Cloth Config and Mod Menu:
- Positioning: Move the HUD to any corner or center it.
- Appearance: Adjust scale, background transparency, and text colors.
- Animations: Custom slide and fade effects for item switching.
- Visibility: Toggle individual elements on or off to suit your needs.
I've designed Item Glow to be a platform for other modders. If you're building a mod and want your custom item data to show up in my HUD, you can use the built-in provider system.
To add your own data to the HUD, simply add a new provider to the ItemGlowApi.PROVIDERS list. Here's how you can do it:
// Registering a custom data provider
ItemGlowApi.PROVIDERS.add(stack -> {
if (stack.getItem() instanceof ManaWand) {
return List.of(new ItemGlowApi.TooltipLine(
Text.literal("Mana: 50/100"),
0x55FFFF, // Color
100 // Priority
));
}
return null;
});Full details are available in my API Documentation.
- Fabric Loader (0.15.11 or newer)
- Fabric API
- Cloth Config API (Required for the config screen)
- Mod Menu (Recommended for easy access to settings)
- Get the latest
.jarfrom Modrinth or CurseForge. - Drop it into your
modsfolder. - Start the game and configure it via Mod Menu.
Support the project: Donate via PayPal
Created by K_M577



