Search Issue Tracker
By Design
Votes
0
Found in
2019.4
2020.1
2020.1.16f1
2020.2
2021.1
Issue ID
1297689
Regression
No
Editor GUI Labels change with creation of GUIContent in AssetImporterEditor
How to reproduce:
1. Download and open project 'GUICorruption.zip'
2. Select Asset 'Assets/SelectThisAndRecompile.asset'
3. Enter Play Mode
4. Observe Editor
Expected result: No changes in the Editor
Actual result: Most of Editor UI Labels are changed
Reproducible with: 2019.4.16f1, 2020.1.16f1, 2020.2.0b14, 2021.1.0a9
Couldn't test with: 2018.4.28f1 (No Namespace AssetImporters)
Notes: In CustomLevelImporterEditor.cs not initializing testlabel (changing "private GUIContent testlabel = GUIContent.none" -> "private GUIContent testlabel") and setting it's value later doesn't produce the issue
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
- Animator state transition preview clips are flickering when zooming in
- [Tile Palette] Sprites not rendering when brush tool "Paint a filled box with active brush" is used for the first time
- Adding available Nodes with longer names in Fragment Context window overflow Fragment Context window in Shader Graph
- "Layer Palette Profile" Asset is automatically applied to the second Terrain but doesn't load any layers
- "Terrain Tools" shortcut conflicts with the Overlays shortcut by default
Resolution Note:
The issue is due to assigning the reference pointer of none to the users variable and when assigning the new it overwrites the pointer. Because GUIContent is a reference type (class) it will be assigned based on a reference, not sure we can break that pattern.