Search Issue Tracker
By Design
Votes
0
Found in
2020.3
2020.3.22f1
2021.2
2022.1
2022.2
Issue ID
1382261
Regression
No
[Serialization] Player build hangs on initial loading screen after reporting UnloadTime in the Player log
Reproduction steps:
1. Open the attached user's project "boardgame_demo.zip"
2. Open the "Assets\Scenes\BoardTest.unity" Scene
3. Build for Standalone
Expected result: Player does not hang and memory usage does not increase gradually leading to a crash
Actual result: Player hangs and memory usage increases gradually leading to a crash
Reproduces on: 2020.3.27f1, 2021.2.9f1, 2022.1.0b5, 2022.2.0a4
Could not test on 2019.4.36f1 due to console errors when downgrading
Notes:
-Issue reproduces with IL2CPP and Mono backends
-Issue also reproduces on WebGL
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
- TileMap selection resets to the default when the Scene is saved
- Opening Terrain Prefab in Prefab Editing Mode throws "NullReferenceException" error
- [Search] Dragging query pills put them behind the search text field
- A CustomPropertyDrawer that returns a PropertyField for a property named the same as a child field will not render all child fields
- Graphics Settings shows default values instead of the real values in the Rendering Debugger when Volume.profile is assigned via script
Resolution Note (2022.2.X):
This issue is caused by an infinite loop in your project caused by Board::Awake invoking HardDespawn, The player path for this is invoking Destroy which will not invoke the destruction of the object directly while the looping code is assuming that it does leading to an infinite loop. If you replace it with DestroyImmediate it will not loop infinitely but this is still not the best pattern for the cleanup intended it would be better to start from a clean initial state rather than doing it there.