Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


LargeSplitButtonWithDropdownList

Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
Read time 1 minuteLast updated 8 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor

LargeSplitButtonWithDropdownList(GUIContent, string[], MenuFunction2)

Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
public static bool LargeSplitButtonWithDropdownList(GUIContent content, string[] buttonNames, GenericMenu.MenuFunction2 callback)

Parameters

content

Text, image and tooltip the button displays.

buttonNames

The list of options in the dropdown menu.

The callback to fire when a dropdown menu item is selected.

Returns

Type

Description

bool
true
when the user clicks the button.

Remarks

When the user selects the button section the method returns true. When the user selects the dropdown arrow a dropdown menu appears. When the user selects an item in the dropdown menu,
callback
is fired with the selected menu item as input.

LargeSplitButtonWithDropdownList(GUIContent, string[], MenuFunction2, bool)

Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
public static bool LargeSplitButtonWithDropdownList(GUIContent content, string[] buttonNames, GenericMenu.MenuFunction2 callback, bool disableMainButton)

Parameters

content

Text, image and tooltip the button displays.

buttonNames

The list of options in the dropdown menu.

The callback to fire when a dropdown menu item is selected.

disableMainButton

Whether to disable the button. The default value is
false
.

Returns

Type

Description

bool
true
when the user clicks the button.

Remarks

When the user selects the button section the method returns true. When the user selects the dropdown arrow a dropdown menu appears. When the user selects an item in the dropdown menu,
callback
is fired with the selected menu item as input.