示例#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);
 }