Search Issue Tracker
Fixed
Fixed in 2022.3.30f1, 6000.0.0f1
Votes
0
Found in
2022.3.0f1
2023.2.0a1
2023.3.0a1
6000.0.37f1
Issue ID
UUM-61280
Regression
No
[Properties] Property Search doesn't work with properties with the same path
Both during asset indexing or scene search we index properties by property path. But if 2 types/components have components with the same name (width, enabled) these properties overrides themselves. There is no Type differentiator.
Also, when doing when searching we return the first match of a given property path which might not be what the user is looking for.
Potential fixes should be done in multiple parts:
- Search Proposition dialog, should only show properties relative to all types that are part of the results of the query.
* Due to the fact that we do not want to load assets, and that we do not have access to types of the component in prefab we cannot realiably implement this feature.
When indexing Enum shouldn't use IndexPropertyStringComponent. No variation of indexing are needed.
- We need to update the Find Similar Property workflow with the component type.
- Can we try to cache the Propositions of Scene and Asset providers.
- SearchProposition should contains the Complete property path, including the component type: MeshRenderer.m_Enabled
- When indexing, we index both complete property path and short property path (wihout type)
- When searching the scene, OnPropertyFilter should check if the property name contains a type and only search in that component.
- Property values stored in the PropertyDatabase should be store with the full path, since multiple properties might have the same name and override each other).
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
- Editor hangs when painting Details containing 2D Mesh on Terrain
- No audio is played when TimelinePlayable has one output
- Scene and Sprite Editor views break when an edge is deleted in an attempt to split geometry
- Specular lighting visible in a camera with Path Tracing when Preserve specular lighting is disabled in observed material
- Cinemachine package throws CS1061 errors in the Console when installed in a project that has HDRP and URP installed
Resolution Note (fix version 6000.0.0f1):
Search: Support component name prefix when searching component properties.
Resolution Note (fix version 2022.3.30f1):
Search: Support component name prefix when searching component properties.