diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-12-25 23:45:28 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-02-14 14:11:44 +0200 |
commit | d78336c65e3dda2081fe4f3c1e4c269452514086 (patch) | |
tree | e229db2993aabd62977e532ed1b49456f2ada1bc /doc/classes/MenuButton.xml | |
parent | b21f854b7f573bcbc963d5346ed37231c29446b6 (diff) | |
download | redot-engine-d78336c65e3dda2081fe4f3c1e4c269452514086.tar.gz |
[CTL] Add missing font outline drawing routines and theme constants.
Diffstat (limited to 'doc/classes/MenuButton.xml')
-rw-r--r-- | doc/classes/MenuButton.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/MenuButton.xml b/doc/classes/MenuButton.xml index 1e8874fdc5..481b737eee 100644 --- a/doc/classes/MenuButton.xml +++ b/doc/classes/MenuButton.xml @@ -65,6 +65,9 @@ <theme_item name="font_hover_color" type="Color" default="Color( 0.94, 0.94, 0.94, 1 )"> Text [Color] used when the [MenuButton] is being hovered. </theme_item> + <theme_item name="font_outline_color" type="Color" default="Color( 1, 1, 1, 1 )"> + The tint of text outline of the [MenuButton]. + </theme_item> <theme_item name="font_pressed_color" type="Color" default="Color( 1, 1, 1, 1 )"> Text [Color] used when the [MenuButton] is being pressed. </theme_item> @@ -80,6 +83,9 @@ <theme_item name="normal" type="StyleBox"> Default [StyleBox] for the [MenuButton]. </theme_item> + <theme_item name="outline_size" type="int" default="0"> + The size of the text outline. + </theme_item> <theme_item name="pressed" type="StyleBox"> [StyleBox] used when the [MenuButton] is being pressed. </theme_item> |