Search found 7 matches
- Thu May 11, 2023 5:18 am
- Forum: Dialogue System for Unity
- Topic: The best way to save choices in a dialog
- Replies: 3
- Views: 433
Re: The best way to save choices in a dialog
Thanks, I'll try that
- Wed May 10, 2023 9:41 am
- Forum: Dialogue System for Unity
- Topic: The best way to save choices in a dialog
- Replies: 3
- Views: 433
The best way to save choices in a dialog
Hello, I have many conversations. What I want is the following, for example, I selected a certain dialogue in one conversation and after that in another conversation, it was passed to me so that I could create a condition. What is the best solution for this, to create a new variable for each solution?
- Wed Apr 26, 2023 8:56 am
- Forum: Dialogue System for Unity
- Topic: Change conversation
- Replies: 5
- Views: 708
Re: Change conversation
This doesn't help me.
Thanks for helping
I resolve my problem using a workaround with PlayerPrefsDialogueManager.StopAllConversations()
Thanks for helping
- Wed Apr 26, 2023 5:23 am
- Forum: Dialogue System for Unity
- Topic: Change conversation
- Replies: 5
- Views: 708
Re: Change conversation
If I set this to false, everything is good
But with true I have the same error.
I need true for the set
But with true I have the same error.
I need true for the set
Code: Select all
PixelCrushers.DialogueSystem.DialogueLua.SetVariable
Yes, I have one conversation in the scene.Does your scene have more than one Dialogue Manager?
- Tue Apr 25, 2023 3:19 pm
- Forum: Dialogue System for Unity
- Topic: Change conversation
- Replies: 5
- Views: 708
Change conversation
Hello, I want to change the scene and conversation with this. For this, I do next IEnumerator NewSceen(int ind) { DSC.StopConversation(); DSC.StartConversation("Second"); yield return new WaitForSeconds(1f); SceneManager.LoadScene(ind); } I receive this message and the conversation don't c...
- Mon Dec 26, 2022 8:13 am
- Forum: Dialogue System for Unity
- Topic: How to pause dialogue
- Replies: 3
- Views: 510
Re: How to pause dialogue
Thank you! It helped me a lot
- Sun Dec 25, 2022 2:31 pm
- Forum: Dialogue System for Unity
- Topic: How to pause dialogue
- Replies: 3
- Views: 510
How to pause dialogue
Hello, it's possible to pause dialogue when they start?
For example, when I am in dialogue and want to start a mini-game, the dialogue should pause, so when the mini-game ends, the next record of dialogue should start.
For example, when I am in dialogue and want to start a mini-game, the dialogue should pause, so when the mini-game ends, the next record of dialogue should start.