Answers for "InvalidOperationException: Calling Scene Raisefrom assembly reloading callbacks are not supported."

C#
1

InvalidOperationException: Calling Scene Raisefrom assembly reloading callbacks are not supported.

//Delay the open scene method call.
private void OpenScene()
{
  EditorApplication.delayCall += OpenSceneDelay;
}

private void OpenSceneDelay()
{
  EditorApplication.delayCall -= OpenSceneDelay;
  EditorSceneManager.OpenScene(ScenePath, OpenSceneMode.Additive);
}
Posted by: Guest on March-01-2021

Code answers related to "InvalidOperationException: Calling Scene Raisefrom assembly reloading callbacks are not supported."

C# Answers by Framework

Browse Popular Code Answers by Language