Home > Blockchain >  Im trying to create a menu scene but when i render it, it is kinda dark. How to fix the dark lightni
Im trying to create a menu scene but when i render it, it is kinda dark. How to fix the dark lightni

Time:01-12

As you can see in my Unity scene

it looks dark.

game tab

you can see here that it's dark.

I've done going to window > render > lightning > clear baked data but its still the same.

Any unity devs can help me, thanks

As you can see in my lightning tab

auto generate is disabled so I can't check it to verify if it can solve my problem.

CodePudding user response:

Somewhere in the Canvas you have an object that has a sprite on it where the color is modified. Also check the alpha setting for the colors there.

Lighting doesn't affect UI elements like that. That only applies to non UIElements like 3D and 2D objects placed in the world (https://docs.unity3d.com/Manual/LightingInUnity.html).

So it's just a sprite that is causing this background color as @Çağatay IŞIK suggested.

  • Related