From afde971c17e3d407530f9f3cb0a26c058545333e Mon Sep 17 00:00:00 2001 From: Joseph Manley Date: Sat, 16 May 2020 11:31:16 -0400 Subject: [PATCH] Misc bugfixes --- client/Scripts/Entities/NPCs/IntroScientist.gd | 2 +- client/project.godot | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/client/Scripts/Entities/NPCs/IntroScientist.gd b/client/Scripts/Entities/NPCs/IntroScientist.gd index e445a9a..1544d1d 100644 --- a/client/Scripts/Entities/NPCs/IntroScientist.gd +++ b/client/Scripts/Entities/NPCs/IntroScientist.gd @@ -3,7 +3,7 @@ extends "res://Scripts/Component/Interactable.gd" func _ready(): connect("interacted", self, "_on_interact") $Speaker.speaker_name = "Dr.Thadd" - #$Speaker.start_dialog("intro_science") + $Speaker.start_dialog("intro_science") func _on_interact(): $Speaker.start_dialog("intro_science_followup") diff --git a/client/project.godot b/client/project.godot index 9f9b54a..a871777 100644 --- a/client/project.godot +++ b/client/project.godot @@ -23,6 +23,11 @@ config/icon="res://icon.png" MusicManager="*res://Scripts/Singletons/MusicManager.gd" +[display] + +window/stretch/mode="2d" +window/stretch/aspect="keep_width" + [editor_plugins] enabled=PoolStringArray( "EXP-System-Dialog" )