Page 1 of 1

Continue button stops Timelines happening in Dialogues

Posted: Fri Sep 02, 2022 5:18 am
by Albyd
Hi everyone.
I have a problem regarding the "Continue Button" while playing Timelines.

I'm currently using the "Continue Button" at the end of every dialogue bubble, to give time to read every line and decide when to go forward by pressing the button.
During dialogues, i play some timelines to move NPCs around, make stuff happen etc..
However, pressing the "Continue Button" while a Timeline is playing will stop the timeline.
There's any way i can prevent the "Continue Button" from stopping my timelines while keeping it for every dialogue bubble?

Many Thanks

Re: Continue button stops Timelines happening in Dialogues

Posted: Fri Sep 02, 2022 8:01 am
by Tony Li
Hi,

If you're using the Timeline() sequencer command, pass 'nostop' to it. Example:

Code: Select all

Timeline(play, MyTimeline, nostop)
This tells the Dialogue System not to stop the timeline when advancing the conversation.,

Re: Continue button stops Timelines happening in Dialogues

Posted: Sun Sep 04, 2022 10:20 am
by Albyd
Alright!
I'll give it a try!
Thanks

Re: Continue button stops Timelines happening in Dialogues

Posted: Sun Sep 04, 2022 10:45 am
by Albyd
It does work indeed! Many thanks!!!

Re: Continue button stops Timelines happening in Dialogues

Posted: Sun Sep 04, 2022 11:07 am
by Tony Li
Happy to help!