mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Clean up. This was for debugging.
This commit is contained in:
parent
5213d0050e
commit
b148126221
2 changed files with 2 additions and 14 deletions
|
@ -6,15 +6,9 @@ import net.minecraft.entity.Entity;
|
|||
|
||||
public class ModelCloud extends ModelBase {
|
||||
|
||||
ModelRenderer body;
|
||||
private final ModelRenderer body;
|
||||
|
||||
public ModelCloud() {
|
||||
init();
|
||||
}
|
||||
|
||||
private void init() {
|
||||
boxList.clear();
|
||||
|
||||
body = new ModelRenderer(this, 0, 0);
|
||||
body.setTextureSize(250, 90);
|
||||
|
||||
|
|
|
@ -11,15 +11,9 @@ import net.minecraft.entity.Entity;
|
|||
|
||||
public class ModelCuccoon extends ModelBase {
|
||||
|
||||
ModelRenderer body;
|
||||
private final ModelRenderer body;
|
||||
|
||||
public ModelCuccoon() {
|
||||
init();
|
||||
}
|
||||
|
||||
private void init() {
|
||||
boxList.clear();
|
||||
|
||||
body = new ModelRenderer(this, 0, 0);
|
||||
body.setTextureSize(250, 250);
|
||||
|
||||
|
|
Loading…
Reference in a new issue