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 4ec260b commit 6ef6134Copy full SHA for 6ef6134
addons/dialogic/Nodes/TextBubble.gd
@@ -138,9 +138,12 @@ func handle_command(command:Array):
138
$sounds.play()
139
elif(command[1] == "pause"):
140
$WritingTimer.stop()
141
+ var x = text_label.visible_characters
142
get_parent().get_node("DialogicTimer").start(float(command[2]))
143
yield(get_parent().get_node("DialogicTimer"), "timeout")
- start_text_timer()
144
+ # only continue, if no skip was performed
145
+ if text_label.visible_characters == x:
146
+ start_text_timer()
147
148
149
func skip():
0 commit comments