diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-07 18:57:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-07 18:57:27 +0200 |
commit | b17e71b6e5e035f49b5b3b5b55b9cdac80215d72 (patch) | |
tree | 90dcb48cb3c2c5a1d306c311b41655002c946a5a /doc/classes/RichTextLabel.xml | |
parent | cebbb2a325cc028f8311e18ea050f91801385597 (diff) | |
parent | b150ceb62cfd91f11b62f823f3dd5517a640cbc3 (diff) |
Merge pull request #22808 from KellyThomas/vector-one
Add ONE constants to Vector2 and Vector3
Diffstat (limited to 'doc/classes/RichTextLabel.xml')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 618f2f42b2..357d2e7a15 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -166,6 +166,12 @@ Adds a meta tag to the tag stack. Similar to the bbcode [code][url=something]{text}[/url][/code], but supports non-[String] metadata types. </description> </method> + <method name="push_strikethrough"> + <return type="void"> + </return> + <description> + </description> + </method> <method name="push_table"> <return type="void"> </return> @@ -304,15 +310,17 @@ </constant> <constant name="ITEM_UNDERLINE" value="6" enum="ItemType"> </constant> - <constant name="ITEM_ALIGN" value="7" enum="ItemType"> + <constant name="ITEM_STRIKETHROUGH" value="7" enum="ItemType"> + </constant> + <constant name="ITEM_ALIGN" value="8" enum="ItemType"> </constant> - <constant name="ITEM_INDENT" value="8" enum="ItemType"> + <constant name="ITEM_INDENT" value="9" enum="ItemType"> </constant> - <constant name="ITEM_LIST" value="9" enum="ItemType"> + <constant name="ITEM_LIST" value="10" enum="ItemType"> </constant> - <constant name="ITEM_TABLE" value="10" enum="ItemType"> + <constant name="ITEM_TABLE" value="11" enum="ItemType"> </constant> - <constant name="ITEM_META" value="11" enum="ItemType"> + <constant name="ITEM_META" value="12" enum="ItemType"> </constant> </constants> <theme_items> |