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
- Error "Light baking failed with error code 5 (Convergence data not available while rendering lightmaps)" thrown in Console when generating lighting for specific GameObjects
- Copy and Paste options for an Animation Property value are disabled in the Right click contextual menu
- Asset is not found when searching the Label "NewLabel" in Search Window
- "Compute dispatch: missing texture ID..." and "Compute dispatch: missing UAV ID..." warnings are thrown after changing the platform in High Definition 3D template
- Text is culled by size when Content Size Fitter is small and rich text is used
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.