Search found 7 matches

by dryuk
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: 387

Re: The best way to save choices in a dialog

Thanks, I'll try that
by dryuk
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: 387

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?
by dryuk
Wed Apr 26, 2023 8:56 am
Forum: Dialogue System for Unity
Topic: Change conversation
Replies: 5
Views: 627

Re: Change conversation

This doesn't help me.
DialogueManager.StopAllConversations()
I resolve my problem using a workaround with PlayerPrefs

Thanks for helping
by dryuk
Wed Apr 26, 2023 5:23 am
Forum: Dialogue System for Unity
Topic: Change conversation
Replies: 5
Views: 627

Re: Change conversation

If I set this to false, everything is good
1.png
1.png (35.74 KiB) Viewed 620 times

But with true I have the same error.
I need true for the set

Code: Select all

PixelCrushers.DialogueSystem.DialogueLua.SetVariable
Does your scene have more than one Dialogue Manager?
Yes, I have one conversation in the scene.
by dryuk
Tue Apr 25, 2023 3:19 pm
Forum: Dialogue System for Unity
Topic: Change conversation
Replies: 5
Views: 627

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...
by dryuk
Mon Dec 26, 2022 8:13 am
Forum: Dialogue System for Unity
Topic: How to pause dialogue
Replies: 3
Views: 413

Re: How to pause dialogue

Thank you! It helped me a lot
by dryuk
Sun Dec 25, 2022 2:31 pm
Forum: Dialogue System for Unity
Topic: How to pause dialogue
Replies: 3
Views: 413

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.