Why is my static mesh importing darker and shiny?

This is the first time I’ve encountered this problem after many static mesh imports, can’t figure out what I did wrong. When I import this mesh it comes in darker than a usual static mesh. It also seems to have some specular properties that are picking up the emissive lights in the room.

I’ve double checked the geo and it seems to be in order. Lightmap and UV also seem to be in order.

Any help would be great. Thanks!

Hi mikegarn,

With this area looking indirectly lit the shadowing differences you’re seeing is caused by lighting for each actor being handled by a different thread when it’s computed. It’s harder to see with the with the world grid material, so if you use a base color like white it’s much easier to see the disparity between the pieces.

This can help you from the wiki for lighting troubleshooting and tips with some suggestions to improve this or alternative options to take: A new, community-hosted Unreal Engine Wiki - Announcements - Epic Developer Community Forums

-Tim

Thanks for the help Tim. I did what the documentation said and nothing changed. I still have these white parts on the mesh that shouldnt be there. I’m not sure if we’re talking about the same thing. I found another mesh doing the same thing in another part of the scene. Here’s some screenshots where Ive drawn a square around the white areas to clarify. Thanks again for the help and hopefully there’s a fix to this.

Yeah I think I misinterpreted a little from your initial post.

Do you have any backface to the mesh? Looks like the mesh has some backlighting on it, but really hard to be sure without knowing all the lighting setups here for the composition of the scene, more about the mesh in question vs the difference with others in regards to its construction.

If it’s really only happening with this mesh it may be better to upload it here and I can have a look to see if anything stands out that is wrong.

Yeah probably be easiest to just take a look at the mesh yourself. Here’s a link to it.

https://drive.google.com/open?id=0B1Q0i-UuKNGgaWdvMF9FZExOS00

Thanks for the test asset.

After looking at it I can see that the Normals are not aligned correctly which is causing lighting and shadowing issues.

Here’s the test asset original and corrected demonstration.

Once correcting the normals (which can be done inside UE4) everything checked out and worked as I would expect.

To fix the issue in UE4 do the following:

  • Open the Static Mesh Editor
  • Under the Build Settings enable “Recompute Normals”
  • Hit Apply and then save the asset.

This will correctly align the normals to the faces. Right now they are a bit askew.

-Tim

Yep that was the problem, thanks Tim! You’re a real hero!