Example #1
0
    public void NextText()
    {
        if (currentTextIndex >= storyboard.Count)
        {
            return;
        }

        Show(storyboard[currentTextIndex]);
        currentTextIndex += 1;

        if (currentTextIndex >= storyboard.Count)
        {
            storyManager.DisplayButtons();
        }
    }