Version: 2021.1
言語: 日本語

SearchActionConstructor

マニュアルに切り替える
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 Unique action id used to find it back later.
providerId The search provider ID that supports this action.
content Displays the displayname, an icon, and a tooltip when displaying the action in the Action Menu.
handler Handler that executes the action.
name Label name when displaying the action in the Action Menu.
icon Icon for the action in the Action Menu.
tooltip Tooltip associated with the action when displayed in the Action Menu.

説明

Default constructor to build a search action.