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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function 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