Poster un message
En réponse à :
API
24 juin 2021
To manually start a Dialogue is as easy as calling the Run method from the Dialogue component. Bear in mind though that this method is a coroutine. More information about coroutines here.
StartCoroutine(this.dialogue.Run()) ;
The previous example shows how to start a conversation between characters. We provide a coroutine so that you can keep track when the conversation finishes. For example : public IEnumerator StartDialogue()
Debug.Log("Start Dialogue !") ; (...)