예제 #1
0
        protected override void OnReveal()
        {
            base.OnReveal();

            // Add the GUI
            Game.Screen.Elements.Add(m_border);
            Game.Screen.Elements.AddBefore(m_terminal, m_border);

            // Start the cutscene
            if (ScriptController != null && ScriptController.HasFunction("run_cutscene"))
            {
                ScriptController.StartFunction("run_cutscene", LuaArgs.Empty);
            }
        }