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.
1 parent 397f198 commit 46576b0Copy full SHA for 46576b0
addons/textalog/nodes/dialogue_base_node/dialog_node/dialog_node.gd
@@ -58,6 +58,7 @@ func display_text() -> void:
58
func set_text(text:String) -> void:
59
text_node.bbcode_text = text
60
text_node.visible_characters = 0
61
+ _char_position = 0
62
rect_min_size = _original_size
63
if text_fit_content_height:
64
_enable_fit_content_height()
@@ -191,7 +192,7 @@ func _update_displayed_text() -> void:
191
192
if text_node.visible_characters >= text_node.get_total_character_count():
193
_text_timer.stop()
194
_blip_counter = 0
- _char_position = 0
195
+ _char_position = text_node.get_total_character_count()
196
_already_played = false
197
emit_signal("text_displayed")
198
0 commit comments