Processor binding texture.

This commit is contained in:
raoulvdberge
2018-10-18 22:02:09 +02:00
parent ec89e43e35
commit a9a8b12fe3
3 changed files with 15 additions and 0 deletions

View File

@@ -2,9 +2,18 @@ package com.raoulvdberge.refinedstorage.item;
import com.raoulvdberge.refinedstorage.RS;
import com.raoulvdberge.refinedstorage.item.info.ItemInfo;
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
public class ItemProcessorBinding extends ItemBase {
public ItemProcessorBinding() {
super(new ItemInfo(RS.ID, "processor_binding"));
}
@Override
public void registerModels(IModelRegistration modelRegistration) {
super.registerModels(modelRegistration);
modelRegistration.setModel(this, 0, new ModelResourceLocation(RS.ID + ":processor_binding", "inventory"));
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "refinedstorage:items/processor_binding"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB