summaryrefslogtreecommitdiff
path: root/scenes/LegallyDistinctPaperclipAssistant/paperclip.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/LegallyDistinctPaperclipAssistant/paperclip.gd')
-rw-r--r--scenes/LegallyDistinctPaperclipAssistant/paperclip.gd6
1 files changed, 5 insertions, 1 deletions
diff --git a/scenes/LegallyDistinctPaperclipAssistant/paperclip.gd b/scenes/LegallyDistinctPaperclipAssistant/paperclip.gd
index d431372..3a87c66 100644
--- a/scenes/LegallyDistinctPaperclipAssistant/paperclip.gd
+++ b/scenes/LegallyDistinctPaperclipAssistant/paperclip.gd
@@ -10,7 +10,7 @@ var label: Label
var timer: Timer
var panel: Panel
-var current_text = START_TEXT
+@export_multiline var current_text = START_TEXT
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
@@ -49,3 +49,7 @@ func _on_timer_timeout() -> void:
angy.visible = false
current_text = ""
timer.stop()
+
+
+func start_dialogue():
+ $AnimationPlayer.play("intro")