2019-09-24 09:44:48 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "RichTextEffect" inherits= "Resource" version= "4.0" >
2019-09-24 09:44:48 +00:00
<brief_description >
2019-12-06 19:50:17 +00:00
A custom effect for use with [RichTextLabel].
2019-09-24 09:44:48 +00:00
</brief_description>
<description >
2019-12-06 19:50:17 +00:00
A custom effect for use with [RichTextLabel].
[b]Note:[/b] For a [RichTextEffect] to be usable, a BBCode tag must be defined as a member variable called [code]bbcode[/code] in the script.
2020-11-27 23:33:15 +00:00
[codeblocks]
[gdscript]
2019-12-06 19:50:17 +00:00
# The RichTextEffect will be usable like this: `[example]Some text[/example]`
var bbcode = "example"
2020-11-27 23:33:15 +00:00
[/gdscript]
[csharp]
// The RichTextEffect will be usable like this: `[example]Some text[/example]`
public string bbcode = "example";
[/csharp]
[/codeblocks]
2019-12-06 19:50:17 +00:00
[b]Note:[/b] As soon as a [RichTextLabel] contains at least one [RichTextEffect], it will continuously process the effect unless the project is paused. This may impact battery life negatively.
2019-09-24 09:44:48 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "BBCode in RichTextLabel" > https://docs.godotengine.org/en/latest/tutorials/gui/bbcode_in_richtextlabel.html</link>
<link title= "RichTextEffect test project (third-party)" > https://github.com/Eoin-ONeill-Yokai/Godot-Rich-Text-Effect-Test-Project</link>
2019-09-24 09:44:48 +00:00
</tutorials>
<methods >
<method name= "_process_custom_fx" qualifiers= "virtual" >
<return type= "bool" >
</return>
<argument index= "0" name= "char_fx" type= "CharFXTransform" >
</argument>
<description >
2019-12-06 19:50:17 +00:00
Override this method to modify properties in [code]char_fx[/code]. The method must return [code]true[/code] if the character could be transformed successfully. If the method returns [code]false[/code], it will skip transformation to avoid displaying broken text.
2019-09-24 09:44:48 +00:00
</description>
</method>
</methods>
<constants >
</constants>
</class>