Hello,
We are making a game where in one scene a player could have two conversations at the same time with two different NPC's. There would be the main dialogue, with its own UI and own conversation, and while the player is handling that, the phone could ring and a different dialogue has to start up with also its own UI. So two interactive dialogues on different sides of the screen.
Is this in any way possible and if so....could you point us in the right direction?
Thanks!
Two different dialogues executing at the same time
-
- Posts: 8
- Joined: Sun Apr 05, 2015 12:28 pm
Re: Two different dialogues executing at the same time
Hi,
Yes, tick the Dialogue Manager's Allow Simultaneous Conversations checkbox, and configure at least one of the conversations to use an Override Dialogue UI (or an Override Display Settings if you want to override more behavior than just the UI).
Here's an example scene that was made for a similar request: TurnBasedMultipleConversationExample_2017-02-23.unitypackage
If you use continue buttons, this updated version demonstrates the same thing with continue buttons: ContinueSpecificConversationExample_2017-06-14.unitypackage
It runs four simultaneous conversations in their own UIs.
Yes, tick the Dialogue Manager's Allow Simultaneous Conversations checkbox, and configure at least one of the conversations to use an Override Dialogue UI (or an Override Display Settings if you want to override more behavior than just the UI).
Here's an example scene that was made for a similar request: TurnBasedMultipleConversationExample_2017-02-23.unitypackage
If you use continue buttons, this updated version demonstrates the same thing with continue buttons: ContinueSpecificConversationExample_2017-06-14.unitypackage
It runs four simultaneous conversations in their own UIs.
-
- Posts: 8
- Joined: Sun Apr 05, 2015 12:28 pm
Re: Two different dialogues executing at the same time
Thanks a lot! We have tried this and thanks to your extensive examples we had it u and running in no time. It works perfectly.
Re: Two different dialogues executing at the same time
Great! Thanks for letting me know.
Re: Two different dialogues executing at the same time
Noticed: If you get around, there's a confusing explanation in documentation:
-- "Set true to include sim status for each dialogue entry."
Code: Select all
bool PixelCrushers.DialogueSystem.DialogueSystemController.allowSimultaneousConversations = false
Re: Two different dialogues executing at the same time
Thanks for reporting it. I'll fix it in the next release.