Hello,
I am trying to add texture 14 to my infernal cape.
I tried adding the following, yet the white comes up white.
Code:
public static void applyTexturing(Model model, int id) {
switch (id) {
case 21295:
model.setTexture(14, 40);
break;
}
}
Code:
case 21295:
itemDef.originalModelColors= new int[1];
itemDef.modifiedModelColors = new int[1];
itemDef.originalModelColors[0] = 14;
itemDef.modifiedModelColors[0] = 40;
break;
Then I tried only adding the first part and not the second, and the texture comes up, but it covers the whole cape front and back. How can I make it only cover the back of the cape?