Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.4
2019.4.0f1
2020.2
Issue ID
1254425
Regression
No
"ReferenceException" Errors are thrown when interacting with custom UI element after scene change
How to reproduce:
1. Open attached project "case1254425.zip" and scene "SampleScene"
2. Open scene "Test1"
3. Click on the Button in the Scene view
4. Observe the Console
Expected result: No errors in the Console
Actual result: One of two errors are thrown/spammed in the Console
Reproducible with: 2018.4.25f1, 2019.4.4f1, 2020.1.0b16, 2020.2.0a18
Notes:
-From version 2018.4.25f1 to 2019.3.0b9 and from 2020.1.0a15 to 2020.2.0a18 error "NullReferenceException: Object reference not set to an instance of an object HorizontalDropdown.OnDestroy ()" is thrown
-From version 2019.3.0b10 to 2020.1.0a14 error "MissingReferenceException: The object of type 'HorizontalDropdown' has been destroyed but you are still trying to access it." is being spammed
-This issue also reproduces on macOS
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
- Keywords on Material Variants aren't automatically saved when changed on original Material through Shader Graph
- Light Probes get baked when calling LightProbes.Tetrahedralize
- Shadows flicker and cause visual artifacts when modifying a GameObject's bounds using Swizzle (Y Mask) and Sine Time nodes
- [WebGL] Frame rate drops by 5-20 fps when moving cursor or touch input in the Player
- Light bleeds when using box shaped spotlight with specific Emission Range values
Resolution Note (2020.2.X):
The issue is the user is accessing a null object which then prevents some things from deregistering as the null stops execution. Their OnDestroy call doesn't ensure that either button is still present. Resolving that null reference exception i dont see a further issue...