use of forestry.storage.models.ModelCrate in project ForestryMC by ForestryMC.
the class ProxyStorageClient method registerCrateModel.
@Override
public void registerCrateModel() {
ModelResourceLocation modelLocation = new ModelResourceLocation("forestry:crate-filled", "crate-filled");
ModelEntry modelEntry = new ModelEntry(modelLocation, new ModelCrate());
ModelManager.getInstance().registerCustomModel(modelEntry);
}
Aggregations