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
- Texture2D hash changes inside of an AssetBundle when rebuilding a SpriteAtlas bundle with an empty AssetPostprocessor Script enabled
- Aniso Level still applies when Generate MipMap is disabled in Texture Import Settings
- Mipmap Limit Groups long names are not truncated when creating a new Mipmap Limit Group with a long name
- “ArgumentException: Invalid double parameter.” error is thrown when Infinity is typed into the Fixed Timestep field
- GameObject becomes gray when using HDRP and STP together on macOS
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.