Remove Response Menu Delay After Select

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
vinchenamigo
Posts: 14
Joined: Tue May 13, 2025 4:09 am

Remove Response Menu Delay After Select

Post by vinchenamigo »

Hello, i want to ask again about response menu,

On each selection like "Hmm... nah, l'll just look around!", i have already attach Continue(); on the sequence, and it immediately change the state to "...Fine, I’ll be laughing at your stupid confused face!"(the dialog entry box turn green). but in fact on the dialog/real game, theres 1-2 second delay before it shows the "...Fine, I’ll be laughing at your stupid confused face!" dialog. My question was, Is there any way to ged rid of that delay?

Thanks ;)
Attachments
Screenshot 2025-06-16 at 21.49.05.png
Screenshot 2025-06-16 at 21.49.05.png (96.51 KiB) Viewed 2092 times
User avatar
Tony Li
Posts: 23377
Joined: Thu Jul 18, 2013 1:27 pm

Re: Remove Response Menu Delay After Select

Post by Tony Li »

Hi,

What is the complete value of the Sequence field for "Hmm... nah, I'll just look around"?

What are the settings in the Dialogue Manager's Display Settings > Subtitle Settings section?
vinchenamigo
Posts: 14
Joined: Tue May 13, 2025 4:09 am

Re: Remove Response Menu Delay After Select

Post by vinchenamigo »

heres the sequence and the settings:
SendMessage(CallProcessCheckCoins, , GoudTheGoat);
Continue();

hope it helps!
vinchenamigo
Posts: 14
Joined: Tue May 13, 2025 4:09 am

Re: Remove Response Menu Delay After Select

Post by vinchenamigo »

heres the sequence and the settings:
SendMessage(CallProcessCheckCoins, , GoudTheGoat);
Continue();

hope it helps!
Attachments
Screenshot 2025-06-17 at 15.34.23.png
Screenshot 2025-06-17 at 15.34.23.png (59.37 KiB) Viewed 2038 times
User avatar
Tony Li
Posts: 23377
Joined: Thu Jul 18, 2013 1:27 pm

Re: Remove Response Menu Delay After Select

Post by Tony Li »

Hi,

Try setting the Dialogue Manager's Display Settings > Subtitle Settings > Continue Button to Not For PC or Optional For PC. Then set the response entry's Sequence to just:

Code: Select all

SendMessage(CallProcessCheckCoins, , GoudTheGoat);
Alternatively, if you don't want to change the Continue Button dropdown, change the sequence to:

Code: Select all

required SendMessage(CallProcessCheckCoins, , GoudTheGoat);
Continue();
vinchenamigo
Posts: 14
Joined: Tue May 13, 2025 4:09 am

Re: Remove Response Menu Delay After Select

Post by vinchenamigo »

Hello, its still didnt work, i will attach this google drive link for the video, hope it could help to undestand better about the problem:


thank you :mrgreen:
User avatar
Tony Li
Posts: 23377
Joined: Thu Jul 18, 2013 1:27 pm

Re: Remove Response Menu Delay After Select

Post by Tony Li »

Hi,

What is the full Sequence of the "." dialogue entry?

Alternatively, maybe it's the typewriter delay? Inspect the typewriter effect. Does its "Full Pause Characters" list include "."?

Please feel free to send a reproduction project to tony (at) pixelcrushers.com at any time.
Post Reply