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.
29 lines
1.1 KiB
Java
29 lines
1.1 KiB
Java
package net.minecraft.client.model;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class ModelLargeChest extends ModelChest
|
|
{
|
|
private static final String __OBFID = "CL_00000841";
|
|
|
|
public ModelLargeChest()
|
|
{
|
|
this.chestLid = (new ModelRenderer(this, 0, 0)).setTextureSize(128, 64);
|
|
this.chestLid.addBox(0.0F, -5.0F, -14.0F, 30, 5, 14, 0.0F);
|
|
this.chestLid.rotationPointX = 1.0F;
|
|
this.chestLid.rotationPointY = 7.0F;
|
|
this.chestLid.rotationPointZ = 15.0F;
|
|
this.chestKnob = (new ModelRenderer(this, 0, 0)).setTextureSize(128, 64);
|
|
this.chestKnob.addBox(-1.0F, -2.0F, -15.0F, 2, 4, 1, 0.0F);
|
|
this.chestKnob.rotationPointX = 16.0F;
|
|
this.chestKnob.rotationPointY = 7.0F;
|
|
this.chestKnob.rotationPointZ = 15.0F;
|
|
this.chestBelow = (new ModelRenderer(this, 0, 19)).setTextureSize(128, 64);
|
|
this.chestBelow.addBox(0.0F, 0.0F, 0.0F, 30, 10, 14, 0.0F);
|
|
this.chestBelow.rotationPointX = 1.0F;
|
|
this.chestBelow.rotationPointY = 6.0F;
|
|
this.chestBelow.rotationPointZ = 1.0F;
|
|
}
|
|
} |