Jump to content

Recommended Posts

Posted

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

Posted

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.