Page 1 of 1
Timeline pauses after dialogue is done
Posted: Wed Feb 23, 2022 2:39 pm
by Avi3ator
Hi! Im playing a timeline : "Timeline(play, JohnnyTimeline, 1)" on my last dialogue. But after i press the continue button(or 5 sec passes) the timeline pauses, because the dialogue is done? is there any way to allow the timeline to just play out?
Re: Timeline pauses after dialogue is done
Posted: Wed Feb 23, 2022 3:20 pm
by Tony Li
Hi,
Try this:
Code: Select all
Timeline(play, JohnnyTimeline, 1, nowait, nostop)
"nowait" doesn't make the dialogue entry node wait for the director to finish, and "nostop" doesn't force the director to stop at the end of the sequencer command.
(
Timeline() command reference)
Re: Timeline pauses after dialogue is done
Posted: Wed Feb 23, 2022 3:42 pm
by Avi3ator
The "nostop" was just what i was looking for! Thank you
the "nowait" makes it so the timeline doesnt play at all
Re: Timeline pauses after dialogue is done
Posted: Wed Feb 23, 2022 4:01 pm
by Tony Li
Glad to help!