I'm working on a project currently where I have two NPCs that need to talk to each other through bubble UI. I've followed the example posted elsewhere on this forum to have a conversation being displayed through bubbles, which works perfectly.
The problem I am having is that only NPC1's part of the conversation is displaying, NPC2 never speaks.
Both of the game objects have the Dialogue Actor component on them, and they're set to the actors that they are represented with in the conversation editor. The conversation in question has also been properly set to have the right actor and conversant.
I trigger the conversation from script using:
Code: Select all
DialogueManager.StartConversation(GetComponent<DialogueSystemTrigger>().conversation.ToString(), transform, GameObject.Find(characterName).transform);
The conversation in question takes place as one path in a conversation tree for one of the NPCs, which also has other dialogue paths within it that target the player as conversant. If I press on a blank space in the conversation editor, the actor is set as the NPC, and the conversant is set as the player.
The only way I've been able to fix this problem is if I set the conversant as NPC2 in this menu.
I've set conversations up this way so that I can just have a single conversation for each NPC, which then has all the different paths required for the game, just to try to be organised.
So, what I'm asking, is there a way to set the actor and conversant in script when starting the dialogue, so that it'll work for my NPC-only dialogue (which my player can see as they approach), but also still allow my player to be set as the default conversant within the conversation editor?
Hopefully this made sense. Thank you in advance for any help!