2019-09-24 11:44:48 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "RichTextEffect" inherits= "Resource" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2019-09-24 11:44:48 +02:00
<brief_description >
2019-12-06 20:50:17 +01:00
A custom effect for use with [RichTextLabel].
2019-09-24 11:44:48 +02:00
</brief_description>
<description >
2019-12-06 20:50:17 +01: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-28 00:33:15 +01:00
[codeblocks]
[gdscript]
2019-12-06 20:50:17 +01:00
# The RichTextEffect will be usable like this: `[example]Some text[/example]`
var bbcode = "example"
2020-11-28 00:33:15 +01:00
[/gdscript]
[csharp]
// The RichTextEffect will be usable like this: `[example]Some text[/example]`
2023-01-31 18:21:09 +01:00
string bbcode = "example";
2020-11-28 00:33:15 +01:00
[/csharp]
[/codeblocks]
2019-12-06 20:50:17 +01: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 11:44:48 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "BBCode in RichTextLabel" > $DOCS_URL/tutorials/ui/bbcode_in_richtextlabel.html</link>
2020-08-05 14:43:40 +02:00
<link title= "RichTextEffect test project (third-party)" > https://github.com/Eoin-ONeill-Yokai/Godot-Rich-Text-Effect-Test-Project</link>
2019-09-24 11:44:48 +02:00
</tutorials>
<methods >
2021-08-22 03:52:44 +02:00
<method name= "_process_custom_fx" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "char_fx" type= "CharFXTransform" />
2019-09-24 11:44:48 +02:00
<description >
2022-08-10 04:00:19 +02:00
Override this method to modify properties in [param char_fx]. 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 11:44:48 +02:00
</description>
</method>
</methods>
</class>