Search Issue Tracker
Fixed in 2022.1.X
Votes
0
Found in
2022.1.0a15
Issue ID
1382843
Regression
Yes
[SceneTemplate] Opening Unity when a "LastOpenedScene" is set but the scene does not exist throws an exception
When opening a project, if the user preference "LastOpenedScene" is set but the scene does not exist in the project, an exception is thrown:
ArgumentException: Scene file not found: 'MyScene.unity'.
at (wrapper managed-to-native) UnityEditor.SceneManagement.EditorSceneManager.OpenScene_Injected(string,UnityEditor.SceneManagement.OpenSceneMode,UnityEngine.SceneManagement.Scene&)
at UnityEditor.SceneManagement.EditorSceneManager.OpenScene (System.String scenePath, UnityEditor.SceneManagement.OpenSceneMode mode) <0x195b5c730 + 0x0006a> in <d31e8d7dbcc24e419237a5e086ab705e>:0
at UnityEditor.EditorApplication.Internal_RestoreLastOpenedScenes () [0x00030] in /Users/alexey/Unity/unity/graphics/Editor/Mono/EditorApplication.cs:514
If this starts failing once, you are stuck with this exception until you open a project that either has this scene, or sets the preference key to another value.
Steps to reproduce:
- Create an empty 3d project.
- Close the project
- In a command line, write (or any other command to open unity with arguments) : "path/to/unity -projectpath path/to/my/project -openscene potato"
- The project will open with an exception in the console. Now, every time you open unity (without -openscene), with this project or another, you will get this exception.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- ACES Tonemapping causes banding artifacts and negative values in ColorGradingLUT when HDR is enabled and "High Dynamic Range" Grading mode is selected while Android Platform is used
- Android Player freezes when an Audio Source is playing and an incoming call is picked up and then hung up and the Audio Source is started again
- Green success icon is poorly visible in the light Unity theme
- Incorrect input into the Input Field when using Microsoft IME Japanese
- Multiplayer role "ClientAndServer" is displayed without the spaces in the "Play Mode Scenarios" window
Resolution Note (fix version 2022.1):
Fixed an endless exception thrown when opening a project with a specified scene if the scene does not exist.