My name is Kerem, and I am currently working on a project using Convai’s tools to create dialogues and interactions for characters. In the narrative design process, I want to trigger a scene transition after the character’s conversation ends. I have a few questions regarding this:
In Unity, which component should I use to trigger a scene transition after the character dialogues are finished? Should I add the Narrative Design Manager or the Narrative Design Trigger component to the NPCs?
After adding the necessary components, how should I structure the scene transition?
Actually, after saying hello to the NPC, I want the NPC to tell me that their rabbit is lost and ask for my help in finding it. After I say that I can help, I want the NPC to thank me and end the conversation, then trigger a new function. Can I do this?
Actually, what I want to ask is whether I can determine if a conversation has ended from there. Also, after the conversation ends, I want to switch to another scene in Unity.
When you have an “End Conversation” section, you can use Unity’s Unity Event system to trigger any action. For example, you can change the scene or execute specific scripts in your project when the conversation ends.