Search Issue Tracker
By Design
Votes
4
Found in
5.4.1p1
Issue ID
833860
Regression
No
SceneManager.LoadSceneAsync and Resources.LoadAsync disrupt one another when allowSceneActivation is set to false
STR:
1. Open "main" scene in the project
2. Play the scene
3. Observe the additive scene is not loading and object not instantiating
4. Switch scene and resource load lines with each other:
From:
m_ao = SceneManager.LoadSceneAsync("Stage", LoadSceneMode.Additive);
m_rr = Resources.LoadAsync<GameObject>("Model");
To:
m_rr = Resources.LoadAsync<GameObject>("Model");
m_ao = SceneManager.LoadSceneAsync("Stage", LoadSceneMode.Additive);
5. Observe the scene loading and object instantiating
Reproduced on: 5.3.6f1, 5.3.6p8, 5.4.1p1, 5.4.2f2, 5.5.0b9
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Baked GI loaded by LoadScene call with Additive mode is not cleaned up when unloading the Scene
- "Reflection Probe" borders disappear when interacting with the UI in the Inspector and one of the Reflection Probe editing tools is selected during the Baking process
- RenderGraph ContextData buffer leaks in IL2CPP when using Native Leak Detection
- Caret in "Add Default Preset" text field is vertically misaligned in Preset Manager
- Unused separation line is present at the bottom of the create GameObject sub menu when right clicking Scene in the Hierarchy
Add comment