예제 #1
0
    private void OnProgress(int index)
    {
        if (index == start)
        {
            _narrative.ProgressStory();

            _stage = Stage.GatherIngredients;
            Game.Instance.UI.ShowQuestView();
            _questView.SetTitle(title);

            ShowIngredients();
        }
    }
예제 #2
0
파일: GiveBook.cs 프로젝트: cyndrdev/myah
    private void OnProgress(int index)
    {
        if (index == start)
        {
            _stage = Stage.FindBook;

            _narrative.ProgressStory();

            Game.Instance.UI.ShowQuestView();
            _questView.SetTitle(title);
            _questView.SetQuestItems(new[] { "Find book" });
        }
    }