Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.arctic.paperArmor.client;
- import com.arctic.paperArmor.init.ModItems;
- import com.arctic.paperArmor.tileEntities.TECrafting;
- import com.arctic.paperArmor.tileEntities.TEDecayingBookShelf;
- import net.minecraft.client.renderer.Tessellator;
- import net.minecraft.client.renderer.texture.TextureMap;
- import net.minecraft.item.ItemStack;
- import net.minecraft.tileentity.TileEntity;
- import org.lwjgl.opengl.GL11;
- public class CraftingRenderer extends TERendererBase{
- @Override
- public void renderTileEntityAt(TileEntity tileEntity, double x, double y, double z, float f) {
- this.bindTexture(TextureMap.locationItemsTexture);
- Tessellator tessellator = Tessellator.instance;
- GL11.glPushMatrix();
- GL11.glTranslated(x, y, z);
- tessellator.startDrawingQuads();
- Helper helper = new Helper();
- helper.y2=0.1;
- helper.icon = ModItems.paperTile.getIconFromDamage(0);
- TECrafting craft = (TECrafting) tileEntity;
- ItemStack stack = craft.getStackInSlot(0);
- if (stack!=null){
- //helper.x2 = 1D/3D;
- //helper.z2 = 1D/3D;
- helper.drawPosY(tessellator);
- }
- tessellator.draw();
- GL11.glPopMatrix();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement