Timeline pauses after dialogue is done
Timeline pauses after dialogue is done
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
Hi,
Try this:
"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)
Try this:
Code: Select all
Timeline(play, JohnnyTimeline, 1, nowait, nostop)
(Timeline() command reference)
Re: Timeline pauses after dialogue is done
The "nostop" was just what i was looking for! Thank you
the "nowait" makes it so the timeline doesnt play at all
the "nowait" makes it so the timeline doesnt play at all
Re: Timeline pauses after dialogue is done
Glad to help!