Another Conversation is Triggered.
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Another Conversation is Triggered.
I have a problem that when I play the game,go to mainmenu and click the start game.
Nothing will show up on the screen and there's a warning on the console says "Another Conversation is Triggered."
My question is how to resolve this problem? Thank you!
Nothing will show up on the screen and there's a warning on the console says "Another Conversation is Triggered."
My question is how to resolve this problem? Thank you!
Re: Another Conversation is Triggered.
Hi,
Are you using the Dialogue System's Visual Novel Framework?
Are these the steps?
1. Play the Start scene in the Unity editor.
2. Click the Start button.
3. The Console window reports: "Another conversation is triggered."
Can you please run these steps:
1. In the Start scene, temporarily set the Dialogue Manager's Debug Level to Info.
2. Reproduce the problem.
3. Send the editor log file to tony (at) pixelcrushers.com.
Are you using the Dialogue System's Visual Novel Framework?
Are these the steps?
1. Play the Start scene in the Unity editor.
2. Click the Start button.
3. The Console window reports: "Another conversation is triggered."
Can you please run these steps:
1. In the Start scene, temporarily set the Dialogue Manager's Debug Level to Info.
2. Reproduce the problem.
3. Send the editor log file to tony (at) pixelcrushers.com.
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Another Conversation is Triggered.
Yes, At first run of the game. The dialogue system works fine. Then If I click the Go to mainmenu button and start again the game. The warning shows up.
What I think is the conversation trigger is still running while changing scene like if you change scene while a conversation is triggered. The conversation trigger is still active even the other scene is loaded. That's my best guess so far. still working on it.
I already sent the log as freakingsoda on gmail.
What I think is the conversation trigger is still running while changing scene like if you change scene while a conversation is triggered. The conversation trigger is still active even the other scene is loaded. That's my best guess so far. still working on it.
I already sent the log as freakingsoda on gmail.
Re: Another Conversation is Triggered.
Thanks for the info. I got your email. I'll check this and send you a patch or solution by the end of the day.
Re: Another Conversation is Triggered.
Hi,
In your Start scene, please expand Dialogue Manager > Canvas > QuitToMenuPanel > Panel. Inspect QuitToMenuConfirm. Make sure the OnClick() event has three event handlers:
If that doesn't fix the issue, please let me know.
In your Start scene, please expand Dialogue Manager > Canvas > QuitToMenuPanel > Panel. Inspect QuitToMenuConfirm. Make sure the OnClick() event has three event handlers:
- Dialogue Manager: Menus.CancelConversation
- Dialogue Manager: SaveHelper.ReturnToMenu
- QuitToMenuPanel: GameObject.SetActive (checkbox unticked)
If that doesn't fix the issue, please let me know.
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Another Conversation is Triggered.
I use the feature demo script. I copy the script from feature demo and create a new script then I change the "Close Menu" to Go to mainmenu.
Inside the Main menu if statement, I change the script to Scenemanager.LoadScene("Mainmenu);
Inside the Main menu if statement, I change the script to Scenemanager.LoadScene("Mainmenu);
Re: Another Conversation is Triggered.
In your main menu method, add this line before SceneManager.LoadScene("MainMenu"):
Code: Select all
DialogueManager.StopConversation();
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Another Conversation is Triggered.
It work! Thanks a lot
Would you mind if I ask another question here, About the feature demo script?
The feature demo script, saves the quest state,variable states and the position of the character. But it didn't save dialogues.
Example:
-Before saving-
Hi, which are my favorite food?
a. spagetti
b.Burger
c.steak
The player wishes to save before answering the question. If the player got the wrong answer. The player can load the dialogue where the player saves.
Should I use persistent active data together with the feature demo script or there's another way to do that?
Would you mind if I ask another question here, About the feature demo script?
The feature demo script, saves the quest state,variable states and the position of the character. But it didn't save dialogues.
Example:
-Before saving-
Hi, which are my favorite food?
a. spagetti
b.Burger
c.steak
The player wishes to save before answering the question. If the player got the wrong answer. The player can load the dialogue where the player saves.
Should I use persistent active data together with the feature demo script or there's another way to do that?
Re: Another Conversation is Triggered.
There's a script in the Visual Novel Framework on the Dialogue System Extras page that saves your place in the current conversation. You should be able to use this script in your project.
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Another Conversation is Triggered.
Currently, I'm working on another scene which is a 3d one and without the vn framework. I used the feature demo script as a pause for the game. I really like it and I wanted to try. Is it possible to save the current conversation through scripting?