Exemplo n.º 1
0
    public bool NextLineConversation()
    {
        bool finishedDialog = false;

        currConversationLine++;
        //If its not the last line move text to following line
        if (currConversationLine < currConversation.GetSizeConversation(0))
        {
            HandleCurrentDialogLine();
            ResetTick();
        }
        else
        {
            finishedDialog = true;
        }
        return(finishedDialog);
    }