Hi. I’m on the laser defender section in the Udemy 2d course and have just implemented Level Loader. When I click on a “Start” button in a “Main menu” it gets me on a “game” scene but the scene is empty and I get that NullReferenceException.
When I run the game scene directly everything works fine.
I’ve checked and I spelled names correctly.
public void LoadGameScene()
{
SceneManager.LoadScene("Game");
}
Thanks in advance.