コード例 #1
0
 public override void doAction()
 {
     Debug.Log("아이템 체크 시도");
     if (invenSys.CheckPassiveItem("Key"))
     {
         Debug.Log("아이템 체크 성공");
         StartCoroutine("NextEventSetting");
     }
     else
     {
         DialogueManager.Instance().StartDialogue(notHaveKeyDlg);
     }
 }