summaryrefslogtreecommitdiff
path: root/ihl/processing/metallurgy/RollingMachinePart2Model.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-06-17 08:12:18 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-06-17 08:12:18 +0300
commitdc3df3edd5843bde0c1335d6a8e460b2c832aa48 (patch)
treeaf13bfeee567f2351e35e1ef176d168fe37c8aac /ihl/processing/metallurgy/RollingMachinePart2Model.java
parent1da8dcd58647e34c9af94ceeecaeaf3b0d08c48c (diff)
full project files
Diffstat (limited to 'ihl/processing/metallurgy/RollingMachinePart2Model.java')
-rw-r--r--ihl/processing/metallurgy/RollingMachinePart2Model.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/ihl/processing/metallurgy/RollingMachinePart2Model.java b/ihl/processing/metallurgy/RollingMachinePart2Model.java
deleted file mode 100644
index 39fd1f5..0000000
--- a/ihl/processing/metallurgy/RollingMachinePart2Model.java
+++ /dev/null
@@ -1,42 +0,0 @@
-package ihl.processing.metallurgy;
-
-
-import ihl.model.IHLModelRenderer;
-import net.minecraft.client.model.ModelBase;
-
-public class RollingMachinePart2Model extends ModelBase
-{
- //fields
- IHLModelRenderer Base;
-
- public RollingMachinePart2Model()
- {
- textureWidth = 64;
- textureHeight = 32;
- setTextureOffset("Base.Shape6", 0, 0);
- setTextureOffset("Base.Shape16", 0, 0);
- setTextureOffset("Base.Shape5", 0, 0);
- setTextureOffset("Base.Shape8", 0, 0);
- setTextureOffset("Base.Shape11", 0, 0);
- setTextureOffset("Base.Shape9", 0, 0);
-
- Base = new IHLModelRenderer(this, "Base");
- Base.setRotationPoint(0F, 16F, 0F);
- setRotation(Base, 0F, 0F, 0F);
- Base.mirror = true;
- Base.addBox("Shape6", -8F, 7F, -8F, 16, 1, 16);
- Base.addBox("Shape16", -3F, -7F, 5F, 6, 14, 1);
- Base.addBox("Shape5", 2F, -1F, -8F, 6, 1, 13);
- Base.addBox("Shape8", -8F, -1F, -8F, 6, 1, 13);
- Base.addBox("Shape11", 3F, 0F, -8F, 4, 7, 1);
- Base.addBox("Shape9", -7F, 0F, -8F, 4, 7, 1);
- }
-
- private void setRotation(IHLModelRenderer model, float x, float y, float z)
- {
- model.rotateAngleX = x;
- model.rotateAngleY = y;
- model.rotateAngleZ = z;
- }
-
-}