A button that brings up a [PopupMenu] when clicked.
	
	
		A button that brings up a [PopupMenu] when clicked. To create new items inside this [PopupMenu], use [code]get_popup().add_item("My Item Name")[/code]. You can also create them directly from Godot editor's inspector.
		See also [BaseButton] which contains common properties and methods associated with this node.
	
	
	
	
		
			
			
				Returns the [PopupMenu] contained in this button.
				[b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to hide it or any of its children, use their [member Window.visible] property.
			
		
		
			
			
			
				If [code]true[/code], shortcuts are disabled and cannot be used to trigger the button.
			
		
		
			
			
				Adjusts popup position and sizing for the [MenuButton], then shows the [PopupMenu]. Prefer this over using [code]get_popup().popup()[/code].
			
		
	
	
		
		
		
		
			The number of items currently in the list.
		
		
			If [code]true[/code], when the cursor hovers above another [MenuButton] within the same parent which also has [code]switch_on_hover[/code] enabled, it will close the current [MenuButton] and open the other one.
		
		
	
	
		
			
				Emitted when the [PopupMenu] of this MenuButton is about to show.
			
		
	
	
		
			Default text [Color] of the [MenuButton].
		
		
			Text [Color] used when the [MenuButton] is disabled.
		
		
			Text [Color] used when the [MenuButton] is focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color.
		
		
			Text [Color] used when the [MenuButton] is being hovered.
		
		
			The tint of text outline of the [MenuButton].
		
		
			Text [Color] used when the [MenuButton] is being pressed.
		
		
			The horizontal space between [MenuButton]'s icon and text. Negative values will be treated as [code]0[/code] when used.
		
		
			The size of the text outline.
			[b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended.
		
		
			[Font] of the [MenuButton]'s text.
		
		
			Font size of the [MenuButton]'s text.
		
		
			[StyleBox] used when the [MenuButton] is disabled.
		
		
			[StyleBox] used when the [MenuButton] is focused. The [code]focus[/code] [StyleBox] is displayed [i]over[/i] the base [StyleBox], so a partially transparent [StyleBox] should be used to ensure the base [StyleBox] remains visible. A [StyleBox] that represents an outline or an underline works well for this purpose. To disable the focus visual effect, assign a [StyleBoxEmpty] resource. Note that disabling the focus visual effect will harm keyboard/controller navigation usability, so this is not recommended for accessibility reasons.
		
		
			[StyleBox] used when the [MenuButton] is being hovered.
		
		
			Default [StyleBox] for the [MenuButton].
		
		
			[StyleBox] used when the [MenuButton] is being pressed.