Version: 2023.1

描述

Search items are fetched synchronously. This can take a long time for some SearchProvider (like asset). Use at your own risk.

using UnityEditor;
using UnityEditor.Search;
using UnityEngine;

public class SearchFlags_Synchronous
{
    [MenuItem("Examples/SearchFlags/Synchronous")]
    static void Run()
    {
        using (var searchContext = SearchService.CreateContext("menu", "Create"))
        {
            // ***IMPORTANT***: Synchronous search can take a long time to resolve depending on the provider (especially assets).
            // Unity suggests using SearchService.Request.

            // Initiate the query and get the results.
            var results = SearchService.GetItems(searchContext, SearchFlags.Synchronous);

            foreach (var searchItem in results)
                Debug.Log(searchItem.GetDescription(searchContext));
        }
    }
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961