Jump to content

Recommended Posts

Posted

Whenever i am trying to render a .obj model in minecraft it renders fine except for the lighting.

It renders the model with flat lighting but i am trying to get smooth lighting.

So far i couldn't figure out how to get it to work.

this is what i have:

@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {

	if(tile instanceof CannonLogic){

		CannonLogic cannon = (CannonLogic) tile;

		GL11.glPushMatrix();

		GL11.glShadeModel(GL11.GL_SMOOTH);

		GL11.glTranslated(x+0.5D, y, z+0.5D);
		GL11.glScalef(0.05F, 0.05F, 0.05F);

		bindTexture(texture);
		model.renderOnly("base");

		GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);
		GL11.glRotatef(cannon.getYaw(), 0.0F, 1.0F, 0.0F);

		model.renderAllExcept("base","barrel");

		model.renderOnly("barrel");

		GL11.glPopMatrix();
	}
}

Anyone knows how to enable smooth lighting in minecraft?

 

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.