diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-25 14:41:01 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-25 14:41:01 +0100 |
commit | 8cebd0a2ce09295a4c2d745eb9582e4270871a05 (patch) | |
tree | 3b9f15d95262b651a2bfefc567b22fbae359923d /doc/classes | |
parent | 6369196b9698c92854bb4dba458ad0b099965d8f (diff) | |
parent | be733ea3d17bedf4a6846c6fa0704ad4bf961fb4 (diff) |
Merge pull request #71983 from vmedea/push-customfx
Expose RichTextLabel::push_customfx to GDScript
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 8c0b16c76f..1ecc8a1d4e 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -251,6 +251,14 @@ Adds a [code][color][/code] tag to the tag stack. </description> </method> + <method name="push_customfx"> + <return type="void" /> + <param index="0" name="effect" type="RichTextEffect" /> + <param index="1" name="env" type="Dictionary" /> + <description> + Adds a custom effect tag to the tag stack. The effect does not need to be in [member custom_effects]. The environment is directly passed to the effect. + </description> + </method> <method name="push_dropcap"> <return type="void" /> <param index="0" name="string" type="String" /> |