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

ISearchView.context

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每一项更改建议,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public Search.SearchContext context;

描述

返回当前视图搜索上下文。

using UnityEngine;
using UnityEditor;
using UnityEditor.Search;

static class Example_ISearchView_context
{
    [MenuItem("Examples/ISearchView/context")]
    public static void Run()
    {
        var view = SearchService.ShowContextual("asset");

        view.SetSearchText("t:material");

        // Search text corresponds to the searchText of the view SearchContext.
        Debug.Assert(view.context.searchText == "t:material");
    }
}