Search Issue Tracker
By Design
By Design in 2023.2.X
Votes
0
Found in
2021.3.4f1
2022.2.0a13
2023.1.0b8
2023.2.0a6
Issue ID
UUM-3946
Regression
No
Object Picker only shows the parent Asset and not the child assets when using Advanced Object Picker
How to reproduce:
- Open the attached project “1221974.zip”
- Make sure that the Object Selector is set to “Advanced” in Preferences > Search
- Select the “testParentAndChildren” GameObject in the Hierarchy window
- From the Inspector window select the Object Picker
Expected results: All “ParentSO” Objects are visible in both the Classic and Advanced Object Picker
Actual results: The Advanced Object Picker doesn't show the child Objects of the Asset
Reproducible with: 2021.3.4f1, 2022.1.0f1, 2022.2.0a13
Could not test with: 2019.4.39f1, 2020.3.34f1, 2022.2.0a15 (needed asset does not contain child assets)
Reproduced on: macOS (Intel) Monterey 12.3.1
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
- Texture Import Warnings are obscured by other Terrain Layer options in the Inspector
- Active Targets section text in Graph Inspector is truncated despite available space
- Burst Inspector middle divider is jittering when resized with the Burst Inspector window docked
- Shader Graph Node information is briefly displayed in Graph Inspector when clicking on Category in the Blackboard
- JsonConvert conversion fails trying to call GetCallbackMethodsForType when [OnDeserialized] is used in a class
Resolution Note:
The Advanced asset picker works using the AdvancedSearch backend which indexes asset files on disk. The current script to create a "multi asset" file doesn't save the asset on disk after having added the subassets. Adding the line: AssetDatabase.SaveAssets(); at the end of the script will ensure the asset file is properly saved in disk and asset indexation works fine. If you do this, the result would be visible in the advanced picker.
Resolution Note (2023.2.X):
The Advanced asset picker works using the AdvancedSearch backend which indexes asset files on disk. The current script to create a "multi asset" file doesn't save the asset on disk after having added the subassets. Adding the line: AssetDatabase.SaveAssets(); at the end of the script will ensure the asset file is properly saved in disk and asset indexation works fine. If you do this, the result would be visible in the advanced picker.