Posted August 8, 201411 yr Hello there, does anyone know's ho to load a .obj Model on a Block and Render it properly? I already have loaded obj Models on Entities with IModelCustom etc. but there arent any Materials on the Model and if i look at it ingame, i can see the Model but the World around it disapears! Thanks, MasterOfProgramming. If you want to visit me: Youtube(German): https://www.youtube.com/user/TheDelphiMaster My Website: http://www.mdc470.Wix.com/MasterOfProgramming
August 9, 201411 yr Hi This probably means you need to save and restore the OpenGL settings Try wrapping your model render call in these try { GL11.glPushMatrix(); GL11.glPushAttrib(GL11.GL_ENABLE_BIT); // render your model here } finally { GL11.glPopAttrib(); GL11.glPopMatrix(); } -TGG
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.