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

SearchSelection.MaxIndex

建议更改

成功!

感谢你帮助我们提高 Unity 文档的质量。尽管我们无法接受所有的建议,我们确实会阅读用户们建议的每条更改并根据情况进行更新。

关闭

提交失败

由于某种原因,你的建议更改无法提交。请在几分钟后重试。感谢你抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public int MaxIndex();

返回

int 返回最高选中的索引。

说明

选中中任何项目的最高索引。

using UnityEngine;
using UnityEditor;
using UnityEditor.Search;

static class Example_ISearchView_AddSelection
{
    static ISearchView s_View;

    [MenuItem("Examples/ISearchView/AddSelection")]
    public static void Run()
    {
        s_View = SearchService.ShowContextual("asset");
        s_View.SetSearchText("t:MonoScript");

        EditorApplication.delayCall += DisplayResultsWhenReady;
    }

    public static void DisplayResultsWhenReady()
    {
        // Wait until results are ready to process.
        if (s_View.results.pending || s_View.results.Count == 0)
        {
            EditorApplication.delayCall += DisplayResultsWhenReady;
            return;
        }

        // Use AddSelection to append to the current selection.
        s_View.AddSelection(0);
        s_View.AddSelection(2);
        s_View.AddSelection(4);

        // Validate what is actually selected:
        var selection = s_View.selection;
        Debug.Log(selection.Count); // 3
        Debug.Log(selection.MinIndex()); // 0
        Debug.Log(selection.MaxIndex()); // 4
    }
}