Advertisement
Guest User

Untitled

a guest
Aug 10th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. GL11.glPushMatrix();
  2. tessellator.startDrawingQuads();
  3. Minecraft.getMinecraft().renderEngine.bindTexture(LAVA);
  4. tessellator.addVertexWithUV(0, 0, 0, 0, 0);
  5. tessellator.addVertexWithUV(1, 0, 0, 1, 0);
  6. tessellator.addVertexWithUV(1, 0, 1, 1, 1);
  7. tessellator.addVertexWithUV(0, 0, 1, 0, 1);
  8. GL11.glDisable(2896);
  9. tessellator.draw();
  10. GL11.glPopMatrix();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement