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

SearchAction 构造函数

建议变更

成功!

感谢你帮助我们改善 Unity 文档质量。虽然我们无法接受所有提交,但我们会阅读来自我们用户的所有建议变更并酌情更新。

关闭

提交失败

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

关闭

取消

声明

public SearchAction(string providerId, string id, GUIContent content);

声明

public SearchAction(string providerId, string id, GUIContent content, Action<SearchItem[]> handler);

声明

public SearchAction(string providerId, string id, GUIContent content, Action<SearchItem> handler);

声明

public SearchAction(string providerId, string name, Texture2D icon, string tooltip, Action<SearchItem[]> handler);

声明

public SearchAction(string providerId, string name, Texture2D icon, string tooltip, Action<SearchItem> handler);

声明

public SearchAction(string providerId, string name, Texture2D icon, string tooltip);

参数

id 稍后用来查找的唯一操作 id。
providerId 支持此操作的搜索提供程序 ID。
content 显示操作菜单中的操作时显示显示名称、一个图标和一个工具提示。
handler 执行操作的处理程序。
name 在操作菜单中显示操作时的标签名称。
icon 操作菜单中操作的图标。
tooltip 在操作菜单中显示时与操作关联的工具提示。

描述

构建搜索操作的默认构造函数。