default commands in other scripts?
default commands in other scripts?
How can I invoke the default commands (e.g. Fade(), SpineAnimation()) in other scripts?
Re: default commands in other scripts?
Hi,
You can use DialogueManager.PlaySequence(). Example:
You can use DialogueManager.PlaySequence(). Example:
Code: Select all
Debug.Log("Farewell...");
DialogueManager.PlaySequence("Fade(stay)");
Re: default commands in other scripts?
It works, thank you! )))
Re: default commands in other scripts?
Happy to help!