I am having a problem with conversations when switching between scenes. After playing conversations is one scene and then loading a new scene, conversations no longer play. The dialog UI does not show up and there is no text or audio. If I play the new scene by itself, the conversations play perfectly. Here is a screenshot of the Debug Info:
I have then set "Allow Simultaneous Conversations" to true in the other settings section. After this, upon entering the 2nd scene, the conversation plays the first node fine. After pressing "continue" to go on to the next node, the dialog UI pops up briefly showing the text and then closes. The audio plays completely through for that node. However, since the dialog UI went away, the player cannot advance because there is no "continue" button to press. Here is the debug info for this situation:
Any idea what could be causing this?
After switching scenes, dialog conversations will not play
Re: After switching scenes, dialog conversations will not play
Conversations don't automatically end when you change scenes.
I see an 'Ending conversation' log in your Console screenshot, but I don't know if it corresponds to the scene change. Make sure your conversation ends when you change scenes. If you're requiring continue button clicks, you'll probably want to use the "Continue()" sequencer command in the last node. For example:
Also, unless you really need simultaneous conversations, I recommend unticking the checkbox. That way you'll get a handy warning in the Console if you unintentionally try to start a conversation when another is running.
I see an 'Ending conversation' log in your Console screenshot, but I don't know if it corresponds to the scene change. Make sure your conversation ends when you change scenes. If you're requiring continue button clicks, you'll probably want to use the "Continue()" sequencer command in the last node. For example:
- Dialogue Text: "Take me to Scene 2."
- Sequence:
Code: Select all
required LoadLevel(Scene 2); Continue()
Also, unless you really need simultaneous conversations, I recommend unticking the checkbox. That way you'll get a handy warning in the Console if you unintentionally try to start a conversation when another is running.
Re: After switching scenes, dialog conversations will not play
That was the problem. Your solution worked perfectly. Thanks!
Re: After switching scenes, dialog conversations will not play
Glad I could help!