Hello,
I am using Unity's PlaybleDirector and Timeline for cutscenes. The Timeline contains a conversation. I am using skip function by forcing the Timeline to go to last frame. It works, however in the conversation in Timeline there is a script on the last conversation node that changes the variable's value. As I skip the cutscene the variable is not changed. Is there a way to skip the entire conversation but keep the script to change the variable?
Thanks
Skip PlayableDirector cutscene containing the script
Re: Skip PlayableDirector cutscene containing the script
Hi,
You could use the ConversationControl component and call its SkipAll() method. It will blast through all of the remaining dialogue entries, running their Script fields, without showing any subtitles.
You could use the ConversationControl component and call its SkipAll() method. It will blast through all of the remaining dialogue entries, running their Script fields, without showing any subtitles.
Re: Skip PlayableDirector cutscene containing the script
Thanks for a reply.
I found the ConversationControl component but I am not sure where to add it. Should I add it to DialogueManager?
I found the ConversationControl component but I am not sure where to add it. Should I add it to DialogueManager?
Re: Skip PlayableDirector cutscene containing the script
Hi,
Yes, add it to the Dialogue Manager. Note: Since the Dialogue Manager survives scene changes, you can't make inspector assignments between scene objects and the Dialogue Manager. (See [How To: Manage Player Controls and Scene Changes](https://pixelcrushers.com/phpbb/viewtopic.php?t=5928) for a related discussion.)
In the worst case, you can use this line of C# code:
Yes, add it to the Dialogue Manager. Note: Since the Dialogue Manager survives scene changes, you can't make inspector assignments between scene objects and the Dialogue Manager. (See [How To: Manage Player Controls and Scene Changes](https://pixelcrushers.com/phpbb/viewtopic.php?t=5928) for a related discussion.)
In the worst case, you can use this line of C# code:
Code: Select all
DialogueManager.instance.GetComponent<ConversationControl>().SkipAll();
Re: Skip PlayableDirector cutscene containing the script
Thanks. I got it working. I also had to add StopSkipAll(); because it was skipping next conversations too 
God Bless You mate

God Bless You mate

Re: Skip PlayableDirector cutscene containing the script
You could also tick the Conversation Control component's "Stop Skip All On Conversation End" checkbox. This way it will automatically call StopSkipAll() so you don't need to add it yourself.