Search Issue Tracker
Won't Fix
Votes
0
Found in
2021.3.39f1
2022.3.31f1
6000.0.5f1
Issue ID
UUM-73225
Regression
No
AssetReference property drawer has incorrect layout and becomes uneditable when placed inside IMGUIContainer
Reproduction steps:
1. Open the attached “BugReportIMGUI.zip” project
2. Open the “BugReport_04” scene (Assets > Scenes)
3. Click on the “Test01” GameObject in the Hierarchy
4. Observe the Inspector
Expected result: Elements are not overlapping
Actual result: Elements are overlapping
Reproducible with: 2021.3.39f1, 2022.3.31f1, 6000.0.5f1
Reproducible on: Windows 11
Not reproducible on: no other environment tested
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
- Getting a deprecated package for JetBrains Rider pop up when opening or creating a project
- [Android] Volume level of the same audio file is different on Samsung Galaxy Tab A8 between 2023.3.0b3 and 2023.3.0b4
- ‘Expected end of value’ warning occurs when a property declaration includes five or more variable references
- Crash on BurstCompilerService::CompileAsync when entering Play mode in a specific scene
- InvalidOperationException when using Game Camera Preview in Scene window with a custom RenderGraph pass
Resolution Note:
To display an AssetReference field with the SerializedProperty at hand, the code inside the IMGUIContainer can simply be
`EditorGUILayout.PropertyField(property);`
It takes care of the layout and will display the field as expected.
Bear in mind that IMGUI code is immediate mode so it is run every frame, hence using reflection and CreateInstance in an IMGUIContainer is very costly and should be avoided.