Adds an item, with a [code]texture[/code] icon, text [code]label[/code] and (optionally) [code]id[/code]. If no [code]id[/code] is passed, [code]id[/code] becomes the item index. New items are appended at the end.
Adds an item, with a [code]texture[/code] icon, text [code]label[/code] and (optionally) [code]id[/code]. If no [code]id[/code] is passed, the item index will be used as the item's ID. New items are appended at the end.
Adds an item, with text [code]label[/code] and (optionally) [code]id[/code]. If no [code]id[/code] is passed, [code]id[/code] becomes the item index. New items are appended at the end.
Adds an item, with text [code]label[/code] and (optionally) [code]id[/code]. If no [code]id[/code] is passed, the item index will be used as the item's ID. New items are appended at the end.
</description>
</method>
<methodname="add_separator">
@ -44,14 +44,14 @@
<returntype="void">
</return>
<description>
Clear all the items in the [OptionButton].
Clears all the items in the [OptionButton].
</description>
</method>
<methodname="get_item_count"qualifiers="const">
<returntype="int">
</return>
<description>
Returns the amount of items in the OptionButton.
Returns the amount of items in the OptionButton, including separators.
</description>
</method>
<methodname="get_item_icon"qualifiers="const">
@ -87,6 +87,7 @@
<argumentindex="0"name="idx"type="int">
</argument>
<description>
Retrieves the metadata of an item. Metadata may be any type and can be used to store extra information about an item, such as an external string ID.
</description>
</method>
<methodname="get_item_text"qualifiers="const">
@ -109,12 +110,14 @@
<returntype="int">
</return>
<description>
Returns the ID of the selected item, or [code]0[/code] if no item is selected.
Gets the metadata of the selected item. Metadata for items can be set using [method set_item_metadata].
</description>
</method>
<methodname="is_item_disabled"qualifiers="const">
@ -123,6 +126,7 @@
<argumentindex="0"name="idx"type="int">
</argument>
<description>
Returns [code]true[/code] if the item at index [code]idx[/code] is disabled.
</description>
</method>
<methodname="remove_item">
@ -131,6 +135,7 @@
<argumentindex="0"name="idx"type="int">
</argument>
<description>
Removes the item at index [code]idx[/code].
</description>
</method>
<methodname="select">
@ -139,7 +144,7 @@
<argumentindex="0"name="idx"type="int">
</argument>
<description>
Select an item by index and make it the current item.
Selects an item by index and makes it the current item. This will work even if the item is disabled.
</description>
</method>
<methodname="set_item_disabled">
@ -150,6 +155,8 @@
<argumentindex="1"name="disabled"type="bool">
</argument>
<description>
Sets whether the item at index [code]idx[/code] is disabled.
Disabled items are drawn differently in the dropdown and are not selectable by the user. If the current selected item is set as disabled, it will remain selected.
</description>
</method>
<methodname="set_item_icon">
@ -160,7 +167,7 @@
<argumentindex="1"name="texture"type="Texture">
</argument>
<description>
Sets the icon of an item at index [code]idx[/code].
Sets the icon of the item at index [code]idx[/code].
</description>
</method>
<methodname="set_item_id">
@ -171,7 +178,7 @@
<argumentindex="1"name="id"type="int">
</argument>
<description>
Sets the ID of an item at index [code]idx[/code].
Sets the ID of the item at index [code]idx[/code].
</description>
</method>
<methodname="set_item_metadata">
@ -182,6 +189,7 @@
<argumentindex="1"name="metadata"type="Variant">
</argument>
<description>
Sets the metadata of an item. Metadata may be of any type and can be used to store extra information about an item, such as an external string ID.
</description>
</method>
<methodname="set_item_text">
@ -192,7 +200,7 @@
<argumentindex="1"name="text"type="String">
</argument>
<description>
Sets the text of an item at index [code]idx[/code].
Sets the text of the item at index [code]idx[/code].