Search Assets
A+ Assets Explorer supports two ways to search your assets:
- Type condictions string into input and press
ENTERon the keyboard - Click the
Searchbutton to Open Search UI - Double click the search input will open the history window
Search Condition Format
Searching in Assets Explorer supports multiple asset properties. For each property, the search condition format is
[AssetPropertyDataHeader] : [>|<] [SearchValue]
For the above format:
[AssetPropertyDataHeader]is the table header in Assets Explorer:is Required, it connects data header and its value[>|<]is not needed forstringtype property. Fornumbertype property, if it’s not specified, it will default to>[SearchValue]is the property value we want to search. Forstringtype, if you have serveral keywords to search, use|to combine them
NOTE: if there are no valid search format, the input string will trust as the search vaule of Name property of assets.
Samples:
- Below are samples for searching for textures:
Name:iconmeans searching the textures whose name contains ‘icon’ charsStorageSize:>1024means searching the textures whose storage size is larger than 1024 KBMaxSize:<2048means searching the textures whose import parameter MaxSize is less than 2048
- For multiple conditions, each search condition will always be
ANDlogic. Take textures search for example:
StorageSize:>1000 KB MaxSize:>1024means:
search the texture with storage size is larger than 1000KB AND import parameter MaxSize is larger than 1024
- The multipe values sample:
Name: icon | bodymeans search the texture whose name contains ‘icon’ OR ‘body’