Fixed errors with Forstride's wasp model
This commit is contained in:
parent
89d9deab06
commit
4dc5bc9587
1 changed files with 135 additions and 142 deletions
|
@ -1,15 +1,8 @@
|
||||||
// Date: 10/26/2013 7:29:42 PM
|
package biomesoplenty.entities.models;
|
||||||
// Template version 1.1
|
|
||||||
// Java generated by Techne
|
|
||||||
// Keep in mind that you still need to fill in some blanks
|
|
||||||
// - ZeuX
|
|
||||||
|
|
||||||
|
import net.minecraft.client.model.ModelBase;
|
||||||
|
import net.minecraft.client.model.ModelRenderer;
|
||||||
|
import net.minecraft.entity.Entity;
|
||||||
|
|
||||||
|
|
||||||
package net.minecraft.src;
|
|
||||||
|
|
||||||
public class ModelWasp extends ModelBase
|
public class ModelWasp extends ModelBase
|
||||||
{
|
{
|
||||||
|
@ -130,7 +123,7 @@ public class ModelWasp extends ModelBase
|
||||||
public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
|
public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
|
||||||
{
|
{
|
||||||
super.render(entity, f, f1, f2, f3, f4, f5);
|
super.render(entity, f, f1, f2, f3, f4, f5);
|
||||||
setRotationAngles(f, f1, f2, f3, f4, f5);
|
setRotationAngles(f, f1, f2, f3, f4, f5, entity);
|
||||||
Thorax.render(f5);
|
Thorax.render(f5);
|
||||||
Abdomen.render(f5);
|
Abdomen.render(f5);
|
||||||
Stinger.render(f5);
|
Stinger.render(f5);
|
||||||
|
@ -155,9 +148,9 @@ public class ModelWasp extends ModelBase
|
||||||
model.rotateAngleZ = z;
|
model.rotateAngleZ = z;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)
|
@Override
|
||||||
|
public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity entity)
|
||||||
{
|
{
|
||||||
super.setRotationAngles(f, f1, f2, f3, f4, f5);
|
super.setRotationAngles(f, f1, f2, f3, f4, f5, entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue