Going to one scene into another srews with the light.

Alright, so i’m working on my first real ‘big’ project in unity.
How ever I ran into a problem, I have a main menu that is a scene. Than I have the game it self that s another scene. To trainsit from main menu to my game I do it like this:

public void StartButton()
{
       SceneManager.LoadScene(1);
}

How ever, when I enter my game scene the lighting is rater screwed up. How can I fix that?

You don’t say how the lighting is messed up. Could you post a screen grab or provide some further detail?

If the lighting is going black, that’s a pretty common issue with baking. Take a look at the following link which should help:

Hope that helps.

Dan