For some reason I can’t get my scene to load from another scene. I have the scene worldrecordscene added to build settings, but its not loading for some reason. Instead it loads normalscene. The conditional is returning TRUE. Please help.
if (scene1234.name == "worldrecordmode") //**tested with Debug.log and it returns TRUE**
{
SceneManager.LoadScene("worldrecordscene");
}
SceneManager.LoadScene("normalscene");
}