Search Issue Tracker
Fixed in 5.6.0
Votes
1
Found in
5.5.0f3
Issue ID
871607
Regression
No
The function UnloadSceneAsync does not work with variable data type SceneManagement.Scene
Reproduction steps:
1. Open the attached project;
2. Open the scene "Scene0";
3. Enter the Play mode;
4. Observe the Console window;
Actual result: an error "ArgumentExeception: Scene to unload is invalid" shows up. The load scene is not removed from the SceneManager.
Expected result: the load scene should be removed from the SceneManager.
Workaround: in the documentation https://docs.unity3d.com/ScriptReference/SceneManagement.SceneManager.UnloadSceneAsync.html is written that the function UnloadSceneAsync variable can be int, string and SceneManagement.Scene data types. Everything works correctly with int and string types. However, the function does not understand SceneManagement.Scene data type variable.
Reproduced with: 5.5.0b4, 5.5.0f3, 5.6.0b4
Not reproducible with 5.4 and older versions because the function "UnloadSceneAsync" is not supported.
Comments (2)
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
- Memory leak when a lot of UI elements are spawned and despawned
- Warnings are not logged in the Console window when using external code analyzers
- Errors “TLS Allocator ALLOC_TEMP_TLS, underlying allocator ALLOC_TEMP_MAIN has unfreed allocations, size 288“ appear constantly when Prefab is open
- Crash on PPtr<Shader>::operator or NullException errors spammed in console when calling Dispose() on null GraphicsBuffer with baked Reflection Probes
- “EndRenderPass: Not inside a Renderpass” and other Render Graph errors in the Player when Render Graph is enabled and Overlay UI is used
Jbaker08
Aug 01, 2017 10:26
I can vouch for tiptip. This still is broken.
tiptip
Jul 03, 2017 08:05
this is not fixed.
When using SceneManager.UnloadSceneAsync(sceneName)
the scenemanger doesnt unload the scene.
I have 5 scenes in BuildSettings,
and when I run this piece of code on ios it throwing: "ArgumentException: Scene to unload is invalid"
Debug.Log("sceneCount-> "+sceneCount);
for (int i = 0; i < sceneCount; i++)
{
Debug.Log("Scene Index-> "+SceneManager.GetSceneAt(i).buildIndex+ " name-> "+SceneManager.GetSceneAt(i).name);
}
Reproduced with: 5.6, 5.6,1, 2017.1.0f1