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
- The search field has an additional icon that has no functionality
- Splash Image logo is shown after being removed when pressing the Preview button
- Crash on GenerateParticleGeometry when creating certain particles
- HD Sample Buffer returns black for Rendering Layer Mask when Custom Pass Volume is not active
- SpriteRenderer has wrong input color when associated material uses SRPBatcher
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.