Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void drawOrb(Minecraft client)
- {
- float scale = 0.8f;
- GL11.glPushMatrix();
- //GL11.glDisable(GL11.GL_ALPHA_TEST);
- GL11.glEnable(GL11.GL_BLEND);
- GL11.glTranslatef(width / 2 - (int)((float) (64 / 2) * scale), 5.0f, 0.0f);
- GL11.glScalef(scale, scale, 1.0f);
- this.drawTexturedModalRect(0, 0, 0, 0, 64, 64);
- this.drawTexturedModalRect(0, 0, 64 * 3, 0, 64, 64);
- GL11.glPopMatrix();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement