Search Issue Tracker
By Design
Votes
0
Found in
2019.3.0a2
2019.3.0a8
Issue ID
1168733
Regression
No
Unassigned private array field is not null when entering play mode with Reload Domain & Scene disabled.
How to reproduce:
1. Open the attached project ("case_1168733-PlayModeTest.zip")
2. Open the repro scene ("SampleScene")
3. Enter Play mode
4. Notice "Start: testVector is null" message in the console
5. Do a trivial change in the "PlayModeTest.cs" script and save it
6. Enter Play mode again
7. Inspect the console
Expected results: "Start: testVector is null"
Actual results: "Start: testVector is not null"
Reproducible with: 2019.3.0a2, 2019.3.0a9
Couldn't test with version 2019.3.0a1 and below because it does not have "Fast Enter Playmode" functionality.
Note:
This issue only reproduces when entering the play mode first time after the Editor recompiles the scripts
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
- Errors when rendering a camera to render texture with only depth
- 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
Resolution Note (2020.1.X):
TL;DR: This is by design. Initialize private fields on MonoBehaviours/ScriptableObjects to avoid unexpected behavior.
The serialization system in Unity does not support null and always initializes members by calling the default constructor. During domain reload we also deserialize private fields on MonoBehaviours/ScriptabbleObjects to make edit-and-continue in play mode easier to work with.
So what happens in this case is that we during domain reload create a empty array and this is stored in memory as the value for the field. Due to legacy quirks we also deserialize the MonoBehaviour during scene reload, but this time without deserializing private fields, so the value remains null.
This is why you see this issue after recompile/domain reload, where we initialize the field during domain to an empty array. And if you enter play mode without scene reload, then the field remains a empty array.