Files
engine/doc/classes/RichTextEffect.xml
T

35 lines
1.6 KiB
XML
Raw Normal View History

2019-09-24 11:44:48 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-31 17:03:48 -08:00
<class name="RichTextEffect" inherits="Resource" version="4.0">
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]`
public string bbcode = "example";
[/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>
<link title="BBCode in RichTextLabel">$DOCS_URL/tutorials/ui/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 11:44:48 +02:00
</tutorials>
<methods>
<method name="_process_custom_fx" qualifiers="virtual const">
<return type="bool" />
<argument index="0" name="char_fx" type="CharFXTransform" />
2019-09-24 11:44:48 +02:00
<description>
2019-12-06 20:50:17 +01: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 11:44:48 +02:00
</description>
</method>
</methods>
</class>