Files
the-connection/client/Scripts/Entities/NPCs/IntroScientist.gd
2020-05-16 11:22:41 -04:00

11 lines
260 B
GDScript

extends "res://Scripts/Component/Interactable.gd"
func _ready():
connect("interacted", self, "_on_interact")
$Speaker.speaker_name = "Dr.Thadd"
#$Speaker.start_dialog("intro_science")
func _on_interact():
$Speaker.start_dialog("intro_science_followup")