Show response menu instantly on the previous dialogue entry?

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
irongamer
Posts: 7
Joined: Tue Mar 01, 2022 11:42 pm

Show response menu instantly on the previous dialogue entry?

Post by irongamer »

I'm using the Runic dialogue UI for a game that does not have voice overs at this time, so the dialogue is only text. I am wondering if there is a built-in solution to have the player response menu items show up instantly with the NPC dialogue just before the player options.

Currently I'm adding the following to the sequence field for the NPC dialogue just before all the player options.

Code: Select all

Delay(0.1); Continue();
This displays the NPC text and shows the player response menu basically instantly. I am wondering if I have missed a toggle option for this type of behavior or if I'd need to extend some class to have it do that automagically.
User avatar
Tony Li
Posts: 21722
Joined: Thu Jul 18, 2013 1:27 pm

Re: Show response menu instantly on the previous dialogue entry?

Post by Tony Li »

Hi,

That'll do, or to make it shorter: Continue()@0

You haven't missed a toggle option.
irongamer
Posts: 7
Joined: Tue Mar 01, 2022 11:42 pm

Re: Show response menu instantly on the previous dialogue entry?

Post by irongamer »

Thank you!
User avatar
Tony Li
Posts: 21722
Joined: Thu Jul 18, 2013 1:27 pm

Re: Show response menu instantly on the previous dialogue entry?

Post by Tony Li »

Happy to help!
Post Reply