Advertisement
Arctic_Wolfy

CraftingRenderer.class

Feb 29th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. package com.arctic.paperArmor.client;
  2.  
  3. import com.arctic.paperArmor.init.ModItems;
  4. import com.arctic.paperArmor.tileEntities.TECrafting;
  5. import com.arctic.paperArmor.tileEntities.TEDecayingBookShelf;
  6. import net.minecraft.client.renderer.Tessellator;
  7. import net.minecraft.client.renderer.texture.TextureMap;
  8. import net.minecraft.item.ItemStack;
  9. import net.minecraft.tileentity.TileEntity;
  10. import org.lwjgl.opengl.GL11;
  11.  
  12. public class CraftingRenderer extends TERendererBase{
  13.     @Override
  14.     public void renderTileEntityAt(TileEntity tileEntity, double x, double y, double z, float f) {
  15.         this.bindTexture(TextureMap.locationItemsTexture);
  16.  
  17.         Tessellator tessellator = Tessellator.instance;
  18.         GL11.glPushMatrix();
  19.         GL11.glTranslated(x, y, z);
  20.         tessellator.startDrawingQuads();
  21.  
  22.         Helper helper = new Helper();
  23.         helper.y2=0.1;
  24.  
  25.         helper.icon = ModItems.paperTile.getIconFromDamage(0);
  26.  
  27.         TECrafting craft = (TECrafting) tileEntity;
  28.         ItemStack stack = craft.getStackInSlot(0);
  29.         if (stack!=null){
  30.             //helper.x2 = 1D/3D;
  31.             //helper.z2 = 1D/3D;
  32.             helper.drawPosY(tessellator);
  33.         }
  34.  
  35.         tessellator.draw();
  36.         GL11.glPopMatrix();
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement