Перейти к содержимому
Mineforgian

Big Items API

A really simple library that allows developers to make items take up more inventory slots.

Загрузки
1K
Подписчики
2
Обновлён
7 июля 2026 г.
Лицензия
MIT

Опубликован 19 июня 2026 г.

A simple to use library mod that allows mod developers to make their items take up more inventory space... for whatever reason you want to make people's lives harder

For players

Does nothing if installed not as a dependency or by itself!

For mod developers

Getting started:

  • Import the .jar into your project root folder (or any folder branching from root)
  • In your dependencies block in build.gradle add this line:
modImplementation(files("path/big-items-a1.2.3.jar"))

Usage:

  • In an item class, implement silly.homak.bigitems.interfaces.IBigItem Class of a big item

IBigItem:

  • To set the item's scale override the getScale() array, has to return an array of 2 integers, this is the item's scale in slots on the X and Y axis.

    How you scale an item

  • Big items have a rendered background that displays their actual scale, it's color is based on the average color of the item's texture (disregarding empty pixels). To set the background color explicitly override getColor(), has to return an integer color value.

    An item with a custom colored background

  • The interface contains a boolean isScaled() that returns if the item is big or not, returns false in scenarios like being in the hotbar or a crafting block, has to be called on the client side.

Misc:

TextureUtils:

  • Contains a bunch of helper methods for working with integer color values:
    • darkenColor: Decreases an int color's brightness, accepts an integer color and a double factor, which has to be a decimal between 0 and 1, 1 being no effect and 0 being fully black.
    • fadeColor: Decreases an int color's alpha, same arguments as the previous.
    • darkenColor: Decreases an int color's saturation, same arguments as the previous.
    • getAverageColor: Returns the mathematical average color of all pixels in an item's texture, disregards alpha.

Ченджлог

a1.2.2Альфа1.21.1 · 6 июля 2026 г.

Fixed item dragging and quick crafting related bugs

a1.2.1-HotfixАльфа1.21.1 · 6 июля 2026 г.

Fix hotbar items not showing up when in a creative tab, more isScaled() fixing

a1.2Альфа1.21.1 · 6 июля 2026 г.
  • Fixed hotbar rendering
  • Fixed isScaled() not accounting for hotbar
  • Added a background for unscaled items
  • Made the background a subtle gradient
a1.1Альфа1.21.1 · 21 июня 2026 г.

Fixed item pickup so items no loger get picked up into the occupied slots

a1.0Альфа1.21.1 · 19 июня 2026 г.

First version! Usage doc in the desc

Комментарии

Загружаем…