Standard themed Button. Button is the standard themed button. It can contain text and an icon, and will display them according to the current [Theme]. [b]Example of creating a button and assigning an action when pressed by code:[/b] [codeblock] func _ready(): var button = Button.new() button.text = "Click me" button.connect("pressed", self, "_button_pressed") add_child(button) func _button_pressed(): print("Hello world!") [/codeblock] Buttons (like all Control nodes) can also be created in the editor, but some situations may require creating them from code. See also [BaseButton] which contains common properties and methods associated with this node. Text alignment policy for the button's text, use one of the [enum TextAlign] constants. When this property is enabled, text that is too large to fit the button is clipped, when disabled the Button will always be wide enough to hold the text. When enabled, the button's icon will expand/shrink to fit the button's size while keeping its aspect. Flat buttons don't display decoration. Button's icon, if text is present the icon will be placed before the text. The button's text that will be displayed inside the button's area. Align the text to the left. Align the text to the center. Align the text to the right. [StyleBox] used when the [Button] is disabled. [StyleBox] used when the [Button] is focused. It is displayed over the current [StyleBox], so using [StyleBoxEmpty] will just disable the focus visual effect. [Font] of the [Button]'s text. Default text [Color] of the [Button]. Text [Color] used when the [Button] is disabled. Text [Color] used when the [Button] is being hovered. Text [Color] used when the [Button] is being pressed. [StyleBox] used when the [Button] is being hovered. The horizontal space between [Button]'s icon and text. Default [StyleBox] for the [Button]. [StyleBox] used when the [Button] is being pressed.