コード例 #1
0
 public void SetupDialogue(string nPCName, NPCDialogue response)
 {
     //Sets the name, butons and dialogues, while creating a cache of the npc
     nameText.text = nPCName;
     ResetButtons();
     dialogueText.text = response.GetDialogue();
     npc = response;
 }