예제 #1
0
파일: StoryTeller.cs 프로젝트: Donez/Home
        private void Display(StoryText text)
        {
            m_queuedTexts.Enqueue(text);

            if (m_update == null)
            {
                m_update = StartCoroutine(DisplayTexts());
            }
        }
예제 #2
0
파일: StoryTeller.cs 프로젝트: Donez/Home
 public static void DisplayText(StoryText text)
 {
     Instance?.Display(text);
 }