diff options
author | Yuri Sizov <yuris@humnom.net> | 2022-02-11 17:53:58 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-02-11 17:57:52 +0300 |
commit | 175088db250cf4049147d346e36c8eadb05e5932 (patch) | |
tree | 22ac22f4f6270027f56987697e0f6c0417e42a58 /doc/classes | |
parent | ea0337909ce562e4ef0eaed1fc29c2940ebdecaf (diff) |
Add an explicit way to remove a theme type
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Theme.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/classes/Theme.xml b/doc/classes/Theme.xml index b1367be263..f2775e60f3 100644 --- a/doc/classes/Theme.xml +++ b/doc/classes/Theme.xml @@ -13,6 +13,14 @@ <link title="Using the theme editor">$DOCS_URL/tutorials/ui/gui_using_theme_editor.html</link> </tutorials> <methods> + <method name="add_type"> + <return type="void" /> + <argument index="0" name="theme_type" type="StringName" /> + <description> + Adds an empty theme type for every valid data type. + [b]Note:[/b] Empty types are not saved with the theme. This method only exists to perform in-memory changes to the resource. Use available [code]set_*[/code] methods to add theme items. + </description> + </method> <method name="clear"> <return type="void" /> <description> @@ -375,6 +383,13 @@ [b]Note:[/b] This modifies the current theme. If you want to merge two themes together without modifying either one, create a new empty theme and merge the other two into it one after another. </description> </method> + <method name="remove_type"> + <return type="void" /> + <argument index="0" name="theme_type" type="StringName" /> + <description> + Removes the theme type, gracefully discarding defined theme items. If the type is a variation, this information is also erased. If the type is a base for type variations, those variations lose their base. + </description> + </method> <method name="rename_color"> <return type="void" /> <argument index="0" name="old_name" type="StringName" /> |