Examples of LockAttachment


Examples of net.mcft.copy.betterstorage.attachment.LockAttachment

   
    GL11.glRotatef(-angle, 0, 1, 0);
    GL11.glTranslatef(-0.5F - 3F / 16F, 0F, 0F)
    GL11.glScalef(1F, 1F, 2.5F);
   
    LockAttachment a = arg0.lockAttachment;
    a.getRenderer().render(a, partialTicks);
    GL11.glPopMatrix();
  }
View Full Code Here

Examples of net.mcft.copy.betterstorage.attachment.LockAttachment

        double seven = 7 / 16.0D;
        GL11.glTranslated((locker.mirror ? seven : -seven), 0, seven);
        GL11.glRotatef((locker.mirror ? angle : -angle), 0, 1, 0);
        GL11.glTranslated((locker.mirror ? -seven : seven), 0, -seven);
      }
      LockAttachment a = locker.lockAttachment;
      GL11.glTranslated(0.5 - a.getX(), 0.5 - a.getY(), 0.5 - a.getZ());
      a.getRenderer().render(a, partialTicks);
    }
   
    GL11.glDisable(GL12.GL_RESCALE_NORMAL);
    GL11.glPopMatrix();
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.