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

Armor Render Lib

Small extension library to Fabric API's ArmorRenderer, with more targeted and specific implementation to dynamically change armor texture and color.

3K загрузок14 подписчиковMITfabric

Обновлён 30 августа 2022 г. · опубликован 27 июля 2022 г.

Armor Render Lib

Armor Render Lib is a lightweight extension library to Fabric API's fabric-rendering-v1 ArmorRenderer. Since the Fabric API implementation is quite abstract, a more targeted implementation is needed for some specific use cases. These use cases are present across more than one of my mods, so in the spirit of code reuse this library was created. It is robust, using only a few very targeted mixins and is fully compatible with Cosmetic Armor and GeckoLib.

Build

To include this library in your project, copy the following into your build.gradle:

repositories {
    maven {
        name = "Modrinth"
        url = "https://api.modrinth.com/maven"
        content {
            includeGroup "maven.modrinth"
        }
    }
}
dependencies {
    modImplementation "maven.modrinth:armor-render-lib:<version>"
    include "maven.modrinth:armor-render-lib:<version>"
}

Use

Armor Render Lib adds armor render layers. These are objects containing a dynamic texture location, color and glint boolean that render armor for an item (or items). They are roughly equivalent to Fabric API's ArmorRenderer#renderPart, but the texture, color and glint can be dynamically specified based on the ItemStack, LivingEntity and EquipmentSlot.

They should be registered like so:

public class ExampleMod implements ClientModInitializer {
    private static ArmorRenderProvider render(ItemStack stack, LivingEntity entity, EquipmentSlot slot) {
        // Dynamic texture path
        String texture = "examplemod:textures/model/armor/example_chestplate.png";
        
        // Dynamic color
        int color = 0xFF00FF;
        
        return data -> data.accept(texture, color, stack.hasGlint());
    }
    
    @Override
    public void onInitializeClient() {
        ArmorRenderLib.register(ExampleMod::render, Items.IRON_CHESTPLATE);
    }
}

Notes

  • An item can have multiple different armor render layers registered to it.
  • Multiple items can have the same armor render layer registered to them.
  • Registering a render layer to a vanilla item (or other armor item) overrides the default armor rendering.
    • This means that the texture, color and/or enchantment glint of vanilla armor can be modified.

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
0.2.6Бета1.19.2fabric30 августа 2022 г..jar (28 КБ)
0.2.5Бета1.19fabric30 августа 2022 г..jar (28 КБ)
0.1.3Бета1.18.2fabric30 августа 2022 г..jar (28 КБ)
0.2.4Бета1.19.2fabric17 августа 2022 г..jar (28 КБ)
0.2.3Бета1.19fabric17 августа 2022 г..jar (28 КБ)
0.1.2Бета1.18.2fabric17 августа 2022 г..jar (28 КБ)
0.2.2Бета1.19.2fabric12 августа 2022 г..jar (29 КБ)
0.2.1Бета1.19.2fabric6 августа 2022 г..jar (29 КБ)
0.2.0Бета1.19fabric6 августа 2022 г..jar (29 КБ)
0.1.1Бета1.18.2fabric27 июля 2022 г..jar (29 КБ)

Ченджлог

0.2.6Бета1.19.2 · 30 августа 2022 г.

No changelog was specified.

0.2.5Бета1.19 · 30 августа 2022 г.

No changelog was specified.

0.1.3Бета1.18.2 · 30 августа 2022 г.

No changelog was specified.

0.2.4Бета1.19.2 · 17 августа 2022 г.

No changelog was specified.

0.2.3Бета1.19 · 17 августа 2022 г.

No changelog was specified.

0.1.2Бета1.18.2 · 17 августа 2022 г.

No changelog was specified.

0.2.2Бета1.19.2 · 12 августа 2022 г.

No changelog was specified.

0.2.1Бета1.19.2 · 6 августа 2022 г.

No changelog was specified.

Полная история изменений — на Modrinth.

Комментарии

Загружаем…