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