Search found 4 matches

by OwlionDemanix
Wed Jun 05, 2024 10:12 am
Forum: Dialogue System for Unity
Topic: Delay before hidding response menu
Replies: 3
Views: 131

Delay before hidding response menu

Hello,

I would like the response menu not to close automatically when I click on a response.
Instead, I would like to let one of my script do some stuff, and then trigger manually to hide the response menu and to continue the conversation.
Can I handle it with a sequence ?

Thank you in advance.
by OwlionDemanix
Fri Oct 20, 2023 1:08 pm
Forum: Dialogue System for Unity
Topic: Getting response ID through C# code
Replies: 3
Views: 229

Re: Getting response ID through C# code

Thank you for your answer!
I thought that response.destinationEntry was the DialogueEntry following the response, not the DialogueEntry of the response itself.
I will give it a try!
by OwlionDemanix
Fri Oct 20, 2023 11:32 am
Forum: Dialogue System for Unity
Topic: Getting response ID through C# code
Replies: 3
Views: 229

Getting response ID through C# code

Hello ! I would like to retrieve in my C# script the ID of the responses that are actually shown on screen. I was able to get a Response array using this : Response[] responses = DialogueManager.CurrentConversationState.pcResponses; or this : public void OnConversationResponseMenu(Response[] respons...