Page 1 of 1

How to Initiate Conversations from Scripts

Posted: Tue May 09, 2017 2:49 pm
by zenasprime
Where in the documentation should I look for information regarding how to initiate conversations from scripts?

Re: How to Initiate Conversations from Scripts

Posted: Tue May 09, 2017 3:46 pm
by Tony Li
Hi!

Use DialogueManager.StartConversation(). There are several variants, but the simplest is:

Code: Select all

using PixelCrushers.DialogueSystem;
...
DialogueManager.StartConversation("My Conversation"); 
And here's general info about How To Start Conversations.

Re: How to Initiate Conversations from Scripts

Posted: Wed May 10, 2017 11:11 am
by zenasprime
Just found that myself but thanks for the heads up Tony. It's exactly what I was looking for.

Cheers!