Added Grant Blevins
This commit is contained in:
9
client/Scripts/Entities/NPCs/CEO.gd
Normal file
9
client/Scripts/Entities/NPCs/CEO.gd
Normal file
@ -0,0 +1,9 @@
|
||||
extends "res://Scripts/Component/Interactable.gd"
|
||||
|
||||
func _ready():
|
||||
connect("interacted", self, "_on_interact")
|
||||
$Speaker.speaker_name = "CEO Grant Blevins"
|
||||
#$Speaker.start_dialog("intro_science")
|
||||
|
||||
func _on_interact():
|
||||
$Speaker.start_dialog("intro_meet_ceo")
|
@ -1,7 +1,10 @@
|
||||
extends "res://Scripts/Component/StorySpeaker.gd"
|
||||
extends "res://Scripts/Component/Interactable.gd"
|
||||
|
||||
func _ready():
|
||||
start_dialog("intro_science")
|
||||
connect("interacted", self, "_on_interact")
|
||||
$Speaker.speaker_name = "Dr.Thadd"
|
||||
$Speaker.start_dialog("intro_science")
|
||||
|
||||
func _on_interact():
|
||||
start_dialog("intro_science_followup")
|
||||
$Speaker.start_dialog("intro_science_followup")
|
||||
|
||||
|
Reference in New Issue
Block a user