Search Issue Tracker
Won't Fix
Votes
2
Found in
2018.2.8f1
Issue ID
1081461
Regression
No
Unity freezes when using SceneManager.LoadScene in the childed GameObject
How to reproduce:
1. Open user's project
2. In the Hierarchy select "[GameManager]" and make it a child of "Systems"
3. Press Play
Expected result: Unity does not freeze.
Actual result: Unity freezes.
Reproducible with - 2019.1.0a1, 2018.3.0b2, 2018.2.8f1, 2018.1.9f2
Not reproducible with - 2017.4.11f1 (missing prefabs, can't fix it)
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
- var VisionOSEDRHeadromm has a comma instead of a dot when building with Metal Rendering App Mode and local OS localization is set to German
- IAP Catalog remove product “x” and add product “+” buttons are not consistent with other remove and add buttons in the Editor
- Performance issues in Play Mode when quickly hovering the mouse cursor over Hierarchy GameObjects
- Frame Debugger displays incorrect output when FidelityFX Super Resolution or Spatial-Temporal Upscaler is used with Temporal Anti-aliasing or Subpixel Morphological Anti-aliasing
- The layout system is failing to correctly calculate or apply the height of the Japanese fallback font when the primary English font's metrics are used
Resolution Note (2021.2.X):
The user calls LoadScene from Awake and this generates infinite loop.
private void Awake()
{
if (Instance != null)
{
Destroy(gameObject);
}
else
{
Instance = this;
DontDestroyOnLoad(gameObject);
RestartGame();
}
}
...
private void RestartGame()
{
Lives = 3;
coins = 0;
SceneManager.LoadScene(0);
if (OnLivesChanged != null)
OnLivesChanged(Lives);
if (OnCoinsChanged != null)
OnCoinsChanged(coins);
}
When "[GameManager]" is a child of any other object DontDestroyOnLoad doesn't work if its parent chain is not marked as DontDestroyOnLoad
I will update the documentation for DontDestroyOnLoad to reflect this requirement.