Skip to content

How To Create and Use a Custom Armor Model

1.0.0 1.20.4 base mc mappings

Step 1: Create the 3D Model

You can Create the model, and it's subsequently needed texture and animations using Blockbench and the AzureLib plugin installed on it. There are many great Tutorials on this all over YouTube so i won't waste time by explaining this part in depth.

Warning

The AzureLib Plugin needs to be installed on Blockbench as it allow you to export to the proper format

Step 2: Create The needed Classes

Model

Note

The Model i am talking about here is not the same as The actual 3D Model, it's the Java Class used for finding the files for rendering

To Create the needed Model File you simply need to create a Class and extend the GeoModel Class, like so:

Example

public class ExampleArmorModel extends GeoModel {
// Models must be stored in assets/<modid>/geo with subfolders supported inside the geo folder
    private static final ResourceLocation model = new ResourceLocation("yournamespace", "geo/yourmodel.geo.json");
// Textures must be stored in assets/<modid>/textures with subfolders supported inside the textures folder
    private static final ResourceLocation texture = new ResourceLocation("yournamespace", "textures/<modeltype>/yourtexture.png");
// Animations must be stored in assets/<modid>/animations with subfolders supported inside the animations folder
    private static final ResourceLocation animation = new ResourceLocation("yournamespace", "animations/youranimation.animation.json");

    @Override
    public ResourceLocation getModelResource(GeoAnimatable animatable) {
        return this.model;
    }

    @Override
    public ResourceLocation getTextureResource(GeoAnimatable animatable) {
        return this.texture;
    }

    @Override
    public ResourceLocation getAnimationResource(GeoAnimatable animatable) {
        return this.animation;
    }
}

Item

Creating the Armor Item Class is also a straight forward act as you need to extend the AzureArmor Class and implement it's abstract methods, Like so:

Example

public class ExampleArmor extends AzureArmor {

    public ExampleArmor(ArmorMaterial armorMaterial, Type type, Properties properties) {
        super(armorMaterial, type, properties);
    }

    @Override
    public ICallBack getControllers() {
        return null;
    }

    @Override
    public Supplier<GeoModel<? extends AzureArmor>> getModel() {
        return null;
    }
}

When implementing this you will notice that you have to create 2 extra function getControllers and getModel.

ICallBack getControllers()

1.0.0 1.20.4 This is a Required Function for Armor's

This function return's a CallBack containing a List of animation Controllers for AzureLib to use

Example
@Override
public ICallBack getControllers() {
    List<AnimationController> controllerList = new ArrayList<>();

    //Creating the Animation controller
    controllerList.add(new AnimationController(this, "controllerName", 0, event -> PlayState.CONTINUE));

    //Returning the CallBack
    return (args)->controllerList;
}

Supplier<GeoModel<? extends AzureArmor>> getModel()

1.0.0 1.20.4 This is a Required Function for Armor's

This function return's a Supplier which creates a new instance of the Model that should be used for rendering this Armor

Example
1
2
3
4
@Override
public Supplier<GeoModel<? extends AzureArmor>> getModel() {
    return ()->new ExampleArmorModel();
}