summaryrefslogtreecommitdiff
path: root/ihl/enviroment/LightBulbModel.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-04-22 14:31:54 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-04-22 14:31:54 +0300
commitb67ac617dc9c5f43b911158a281c3c61ced5ea5a (patch)
tree649b4553f8b2e673b0c4b12e470feb7e7628de8e /ihl/enviroment/LightBulbModel.java
parentaa42aedecd2d2842351088085e8fd9d69ec79565 (diff)
NEI titles translation
Diffstat (limited to 'ihl/enviroment/LightBulbModel.java')
-rw-r--r--ihl/enviroment/LightBulbModel.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/ihl/enviroment/LightBulbModel.java b/ihl/enviroment/LightBulbModel.java
deleted file mode 100644
index bca6305..0000000
--- a/ihl/enviroment/LightBulbModel.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package ihl.enviroment;
-
-import ihl.model.IHLModelRenderer;
-import net.minecraft.client.model.ModelBase;
-import net.minecraftforge.common.util.ForgeDirection;
-
-public class LightBulbModel extends ModelBase
-{
- //fields
- IHLModelRenderer Base;
- IHLModelRenderer BaseON;
-
- public LightBulbModel()
- {
- textureWidth = 32;
- textureHeight = 32;
- setTextureOffset("Base.Shape1", 0, 19);
- setTextureOffset("Base.TubeNorth", 20, 0);
- setTextureOffset("Base.CylinderNorth", 0, 0);
- setTextureOffset("Base.CylinderNorth2", 0, 0);
- setTextureOffset("Base.SpyralNorth", 16, 24);
-
- setTextureOffset("BaseON.Shape1", 0, 19);
- setTextureOffset("BaseON.TubeNorth", 20, 0);
- setTextureOffset("BaseON.CylinderNorth", 0, 9);
- setTextureOffset("BaseON.CylinderNorth2", 10, 10);
- setTextureOffset("BaseON.SpyralNorth", 0, 24);
-
- Base = new IHLModelRenderer(this, "Base");
- Base.setRotationPoint(0F, 16F, 0F);
- Base.mirror = true;
- Base.addBox("Shape1", -2F, -2F, 7F, 4, 4, 1);
- Base.addTube("TubeNorth", -2F, -2F, 5F, 4, 4, 2, 0.8f, 1f, ForgeDirection.NORTH);
- Base.drawFromInside = true;
- Base.addTube("CylinderNorth", -1.5F, -1.5F, 0F, 3, 3, 7, 0f, 1f, ForgeDirection.NORTH);
- Base.addTube("CylinderNorth2", -1F, -1F, 0.5F, 2, 2, 5, 0f, 1f, ForgeDirection.NORTH);
- Base.drawFromInside = false;
- Base.addTube("SpyralNorth", -0.5F, -0.5F, 0.5F, 1, 1, 7, 0f, 1f, ForgeDirection.NORTH);
-
- BaseON = new IHLModelRenderer(this, "BaseON");
- BaseON.setRotationPoint(0F, 16F, 0F);
- BaseON.mirror = true;
- BaseON.addBox("Shape1", -2F, -2F, 7F, 4, 4, 1);
- BaseON.addTube("TubeNorth", -2F, -2F, 5F, 4, 4, 2, 0.8f, 1f, ForgeDirection.NORTH);
- BaseON.drawFromInside = true;
- BaseON.addTube("CylinderNorth", -1.5F, -1.5F, 0F, 3, 3, 7, 0f, 1f, ForgeDirection.NORTH);
- BaseON.addTube("CylinderNorth2", -1F, -1F, 0.5F, 2, 2, 5, 0f, 1f, ForgeDirection.NORTH);
- BaseON.drawFromInside = false;
- BaseON.addTube("SpyralNorth", -0.5F, -0.5F, 0.5F, 1, 1, 7, 0f, 1f, ForgeDirection.NORTH);
- }
-}