Posted July 12, 201312 yr While I was updating my mod, I started re-implementing my obj loader and render code. I copy and pasted the code from my 1.5.2 version. Here is my code: @SideOnly(Side.CLIENT) public class ModelHand extends ModelBase { public IModelCustom hands; public ModelHand() { hands = AdvancedModelLoader.loadModel(reasources.INSTANCE.path+"models/lefthand2.obj"); } public void render() { GL11.glTranslatef(1,7.5F, -; GL11.glRotatef(20, 0, 0, 1); GL11.glRotatef(-40, 1, 0, 0); GL11.glRotatef(-80, 0, 1, 0); GL11.glScalef(100, 100, 100); hands.renderAll(); } } Even calling the render function won't render the model. Any help could be appreciated.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.