Home > OS >  How to fix weird lighting in Unity
How to fix weird lighting in Unity

Time:01-24

So I am currently working on a project in Unity, trying to learn the basics of it. I'm trying to create a room that is only lit by some lamps, but I keep getting these weird lights inside the room that's supposed to be dark.

I tried setting the Environment Light to None, but this issue still happens.

CodePudding user response:

  • Remove directional lights from your scene.
  • Under Window > Rendering > Lighting > Environment remove the Skybox material and set Ambient Color to black.
  • In the same tab under Other Settings disable Fog.
  • Related