package mhfc.net.client.render.block; import mhfc.net.client.model.block.ModelAkuraCrystal; import mhfc.net.common.util.lib.MHFCReference; import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ResourceLocation; import org.lwjgl.opengl.GL11; public class RenderAkuraCrystal extends TileEntitySpecialRenderer { private ModelAkuraCrystal model; public RenderAkuraCrystal() { model = new ModelAkuraCrystal(); } @Override public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) { GL11.glPushMatrix(); GL11.glTranslatef((float) x + 0.5F, (float) y - -4.5F, (float) z + 0.5F); GL11.glRotatef(180F, 0F, 0F, 1F); bindTexture(new ResourceLocation(MHFCReference.tile_akuracrystal_tex)); GL11.glPushMatrix(); model.renderModel(0.1825F); GL11.glPopMatrix(); GL11.glPopMatrix(); } }