示例#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" });
        }
    }