mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Mention that modifying text erases BBCode stacks
(cherry picked from commit 3f0e9da5a4
)
This commit is contained in:
parent
51bcfd53b4
commit
7fade16b55
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@
|
||||||
</member>
|
</member>
|
||||||
<member name="bbcode_text" type="String" setter="set_bbcode" getter="get_bbcode" default="""">
|
<member name="bbcode_text" type="String" setter="set_bbcode" getter="get_bbcode" default="""">
|
||||||
The label's text in BBCode format. Is not representative of manual modifications to the internal tag stack. Erases changes made by other methods when edited.
|
The label's text in BBCode format. Is not representative of manual modifications to the internal tag stack. Erases changes made by other methods when edited.
|
||||||
[b]Note:[/b] It is unadvised to use the [code]+=[/code] operator with [code]bbcode_text[/code] (e.g. [code]bbcode_text += "some string"[/code]) as it replaces the whole text and can cause slowdowns. Use [method append_bbcode] for adding text instead, unless you absolutely need to close a tag that was opened in an earlier method call.
|
[b]Note:[/b] It is unadvised to use the [code]+=[/code] operator with [code]bbcode_text[/code] (e.g. [code]bbcode_text += "some string"[/code]) as it replaces the whole text and can cause slowdowns. It will also erase all BBCode that was added to stack using [code]push_*[/code] methods. Use [method append_bbcode] for adding text instead, unless you absolutely need to close a tag that was opened in an earlier method call.
|
||||||
</member>
|
</member>
|
||||||
<member name="custom_effects" type="Array" setter="set_effects" getter="get_effects" default="[ ]">
|
<member name="custom_effects" type="Array" setter="set_effects" getter="get_effects" default="[ ]">
|
||||||
The currently installed custom effects. This is an array of [RichTextEffect]s.
|
The currently installed custom effects. This is an array of [RichTextEffect]s.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue