diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 12:42:19 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 12:42:19 -0600 |
commit | 70cd632978bc185484c2e8b0d0fd3ad1caa90001 (patch) | |
tree | 07a1dd30646bfcc055093eadd964a31d9c3eb3dd /scenes/LegallyDistinctPaperclipAssistant/paperclip.gd | |
parent | 2546d0182056455fc84b2c28b875867ef97381d1 (diff) |
Give Clippette some good old fashioned intro dialogue
Diffstat (limited to 'scenes/LegallyDistinctPaperclipAssistant/paperclip.gd')
-rw-r--r-- | scenes/LegallyDistinctPaperclipAssistant/paperclip.gd | 6 |
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") |