Search Issue Tracker
Fixed in 2022.1.X
Fixed in 2021.2.X
Votes
0
Found in
2020.1.a15
2022.1.0a7
Issue ID
1367222
Regression
Yes
Domain Reload missing when entering play mode
Users have reported that a domain reload isn't done when entering play mode, even though project is configured to do so. No solid repro case has been provided. For users having this problem, it even happens in an empty project.
Problem started with change related to moving domain reloads inside asset database. It was discovered that LockReloadAssemblies now got checked, when doing domain reload before play mode and would cause domain reload to be skipped if set.
Since there isn't a working repro case, this test can instead be used to verify the issue:
////
public class DomainReload
{
[UnityTest]
public IEnumerator LockedReloadAssemblies_DoesNotPreventDomainReload_WhenEnteringPlayMode()
{
AssetDatabaseExperimental.counters.ResetDeltas();
EditorApplication.LockReloadAssemblies();
yield return new EnterPlayMode();
Assert.AreEqual(1, AssetDatabaseExperimental.counters.import.domainReload.delta);
yield return new ExitPlayMode();
Assert.AreEqual(1, AssetDatabaseExperimental.counters.import.domainReload.delta);
EditorApplication.UnlockReloadAssemblies();
}
}
////
Above tests fails with: 2022.1.0a7, 2022.1.0a8 and 2021.2.0b12
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Add comment