You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
package net.minecraft.client.model;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class ModelCow extends ModelQuadruped
|
|
{
|
|
private static final String __OBFID = "CL_00000836";
|
|
|
|
public ModelCow()
|
|
{
|
|
super(12, 0.0F);
|
|
this.head = new ModelRenderer(this, 0, 0);
|
|
this.head.addBox(-4.0F, -4.0F, -6.0F, 8, 8, 6, 0.0F);
|
|
this.head.setRotationPoint(0.0F, 4.0F, -8.0F);
|
|
this.head.setTextureOffset(22, 0).addBox(-5.0F, -5.0F, -4.0F, 1, 3, 1, 0.0F);
|
|
this.head.setTextureOffset(22, 0).addBox(4.0F, -5.0F, -4.0F, 1, 3, 1, 0.0F);
|
|
this.body = new ModelRenderer(this, 18, 4);
|
|
this.body.addBox(-6.0F, -10.0F, -7.0F, 12, 18, 10, 0.0F);
|
|
this.body.setRotationPoint(0.0F, 5.0F, 2.0F);
|
|
this.body.setTextureOffset(52, 0).addBox(-2.0F, 2.0F, -8.0F, 4, 6, 1);
|
|
--this.leg1.rotationPointX;
|
|
++this.leg2.rotationPointX;
|
|
this.leg1.rotationPointZ += 0.0F;
|
|
this.leg2.rotationPointZ += 0.0F;
|
|
--this.leg3.rotationPointX;
|
|
++this.leg4.rotationPointX;
|
|
--this.leg3.rotationPointZ;
|
|
--this.leg4.rotationPointZ;
|
|
this.field_78151_h += 2.0F;
|
|
}
|
|
} |