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

  1. 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.

Add comment

Log in to post comment