예제 #1
0
 /// <summary>
 /// Start a Dialogue
 /// </summary>
 /// <param name="dialogueId">ID (int) of the dialogue you wish to start</param>
 /// <param name="callback">Callback to be called when diaogue is finished.</param>
 public static void StartDialogue(int dialogueId, DialoguerCallback callback)
 {
     DialoguerDialogueManager.startDialogueWithCallback(dialogueId, callback);
 }
예제 #2
0
 /// <summary>
 /// Start a Dialogue
 /// </summary>
 /// <param name="dialogue">Dialogue from the DialoguerDialogues enum</param>
 /// <param name="callback">Callback to be called when diaogue is finished.</param>
 public static void StartDialogue(DialoguerDialogues dialogue, DialoguerCallback callback)
 {
     DialoguerDialogueManager.startDialogueWithCallback((int)dialogue, callback);
 }