We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a6a851 + e4e2dbc commit 73a68edCopy full SHA for 73a68ed
addons/textalog/nodes/dialogue_base_node/dialog_node/dialog_node.gd
@@ -73,7 +73,7 @@ func set_text(text:String) -> void:
73
## Adds text to the current one at the end. No need to call
74
## [method display_text] if the node is already displaying text
75
func add_text(text:String) -> void:
76
- text_node.append_bbcode(text)
+ text_node.bbcode_text = text_node.bbcode_text + text
77
78
79
## Returns the used text_node
@@ -461,7 +461,6 @@ func _notification(what:int) -> void:
461
func _init() -> void:
462
_text_timer = Timer.new()
463
_text_timer.connect("timeout", self, "_update_displayed_text")
464
- _text_timer.one_shot = true
465
add_child(_text_timer)
466
467
text_node = RichTextLabel.new()
0 commit comments