Version: 2023.2
언어: 한국어

SearchSelectorAttribute

class in UnityEditor.Search

매뉴얼로 전환

설명

Search selector attribute used to define how a custom value can be selected from a search item.

Here's an example to select the number of line of code of text assets. > select{p: *.cs, @path, @loc}.

[SearchSelector("loc", provider: "asset")]
static object SelectLineOfCode(SearchSelectorArgs args)
{
    TextAsset textAsset = args.current.ToObject<TextAsset>();
    if (textAsset)
        return textAsset.text.Split('\n').Length;

return null; }

변수

cacheableSet the cacheable property if you do not want the search backend to pull cached values from the property database.