版本:Unity 6 (6000.0)
语言英语
  • C#

SearchFlags.Synchronous

建议更改

成功!

感谢您帮助我们提升 Unity 文档的质量。虽然我们无法接受所有提交的作品,但我们会阅读用户提出的每一条建议更改,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请在几分钟内<a>重试</a>。感谢您抽出时间帮助我们提升 Unity 文档的质量。

关闭

取消

说明

同步获取搜索项。对于某些 SearchProvider(如资产),可能需要很长时间。请谨慎使用。

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));
        }
    }
}