Added more render methods to IModelCustom interface.
This commit is contained in:
parent
ca011729d3
commit
2c9e11299e
1 changed files with 2 additions and 0 deletions
|
@ -5,5 +5,7 @@ package net.minecraftforge.client.model;
|
||||||
public interface IModelCustom {
|
public interface IModelCustom {
|
||||||
String getType();
|
String getType();
|
||||||
void renderAll();
|
void renderAll();
|
||||||
|
void renderOnly(String... groupNames);
|
||||||
void renderPart(String partName);
|
void renderPart(String partName);
|
||||||
|
void renderAllExcept(String... excludedGroupNames);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue