Timeline pauses after dialogue is done

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
Avi3ator
Posts: 4
Joined: Wed Feb 23, 2022 2:37 pm

Timeline pauses after dialogue is done

Post 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?
User avatar
Tony Li
Posts: 21981
Joined: Thu Jul 18, 2013 1:27 pm

Re: Timeline pauses after dialogue is done

Post 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)
Avi3ator
Posts: 4
Joined: Wed Feb 23, 2022 2:37 pm

Re: Timeline pauses after dialogue is done

Post by Avi3ator »

The "nostop" was just what i was looking for! Thank you

the "nowait" makes it so the timeline doesnt play at all :o
User avatar
Tony Li
Posts: 21981
Joined: Thu Jul 18, 2013 1:27 pm

Re: Timeline pauses after dialogue is done

Post by Tony Li »

Glad to help!
Post Reply