void Awake()
 {
     if (questLogWindow == null)
     {
         questLogWindow = FindObjectOfType <QuestLogWindow>();
     }
 }
Example #2
0
 void Awake()
 {
     if (questLogWindow == null)
     {
         questLogWindow = FindObjectOfType <QuestLogWindow>();
     }
     if (questLogWindow == null)
     {
         enabled = false;
     }
 }
		void Start() {
			if (questLogWindow == null) questLogWindow = FindObjectOfType<QuestLogWindow>();
			DialogueManager.ShowAlert("Press Escape for Menu");
		}