add doug to dialogue, start grandma quest

This commit is contained in:
2026-04-11 18:34:16 -05:00
parent 6491a3df11
commit 54db4e4b73
15 changed files with 1049 additions and 53 deletions
+11 -2
View File
@@ -6,6 +6,15 @@ public class Dialogue
public string charName;
public bool isActive = false;
[TextArea(3,10)]
public string[] sentences;
public DialogueLine[] sentences;
}
[System.Serializable]
public class DialogueLine
{
// is Doug or the character talking? Let's convo have 2 sides
public bool isDoug;
[TextArea(3, 10)]
public string line;
}