Пример #1
0
    void ShowNextFrame()
    {
        currentNarrationFrameIndex++;
        NarrationInfo currentNarrationInfo = CurrentNarrationInfo();

        if (currentNarrationInfo != null)
        {
            UpdateView(currentNarrationInfo);
        }
        else
        {
            Debug.LogError("narration info could not be found for index " + currentNarrationFrameIndex);
        }
    }
Пример #2
0
 void UpdateView(NarrationInfo narrationInfo)
 {
     dialogText.text = narrationInfo.dialog;
     teleType.Init();
 }