/// Start the dialogue from a given node
 public void StartDialogue(string startNode)
 {
     // Stop any processes that might be running already
     StopAllCoroutines();
     dialogueUI.StopAllCoroutines();
     dialogueUI.CleanUI();
     // Get it going
     StartCoroutine(RunDialogue(startNode));
 }