Page 1 of 1

Show response menu instantly on the previous dialogue entry?

Posted: Mon Mar 07, 2022 4:56 pm
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.

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

Posted: Mon Mar 07, 2022 5:12 pm
by Tony Li
Hi,

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

You haven't missed a toggle option.

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

Posted: Mon Mar 07, 2022 5:47 pm
by irongamer
Thank you!

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

Posted: Mon Mar 07, 2022 8:11 pm
by Tony Li
Happy to help!