How to remove baked shadow artifacts?

Hi All,

I’m pretty new to Unity, so I’m still trying to wrap my head around how it works.

I’ve created a scene, and on a very simple model (The letters Y and E) I am experiencing some shadow artifacts along the edges.

My scene is using all baked lighting, and I’ve tried using the “create lightmaps” button in Unity, as well as create my own UVWUnwrap light map in max before export. The objects are set to static.

Does anyone have any suggestions?

Thanks.

Use higher baked resolution and/or bigger padding/margin values for your UVs.

1 Like

Thank you for taking the time to answer, I’ll give it a try.

Another option is to set their light map scale to 0. The letters will still cast baked shadows, but they won’t receive any baked lighting, so you won’t get any seams or shadow artifacts. You will need to make sure they’re a separate object, and use light probes to illuminate them properly. I use this technique for objects that are too small or complex to be light mapped, but still need to be static and look baked with everything else.

2 Likes

Thanks for the tip!