Exemplo n.º 1
0
    private void OnProgress(int index)
    {
        if (index == start)
        {
            _narrative.ProgressStory();

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

            ShowIngredients();
        }
    }
Exemplo n.º 2
0
    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" });
        }
    }