Search found 4 matches
- Wed Jun 05, 2024 11:07 am
- Forum: Dialogue System for Unity
- Topic: Delay before hidding response menu
- Replies: 3
- Views: 145
Re: Delay before hidding response menu
Thank you!
- Wed Jun 05, 2024 10:12 am
- Forum: Dialogue System for Unity
- Topic: Delay before hidding response menu
- Replies: 3
- Views: 145
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.
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.
- Fri Oct 20, 2023 1:08 pm
- Forum: Dialogue System for Unity
- Topic: Getting response ID through C# code
- Replies: 3
- Views: 240
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!
I thought that response.destinationEntry was the DialogueEntry following the response, not the DialogueEntry of the response itself.
I will give it a try!
- Fri Oct 20, 2023 11:32 am
- Forum: Dialogue System for Unity
- Topic: Getting response ID through C# code
- Replies: 3
- Views: 240
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...