Ejemplo n.º 1
0
        public static GuideWindow ShowIntroductionWindow()
        {
            GuideWindow window = EditorWindow.GetWindow <GuideWindow>();

            window.Show();
            window.SetTitle("InAudio Introduction");
            return(window);
        }
Ejemplo n.º 2
0
        public static GuideWindow Launch()
        {
            GuideWindow window = GetWindow <GuideWindow>();

            window.maxSize = new Vector2(600, 100000);
            window.minSize = new Vector2(600, 0);
            window.Show();

            window.SetTitle("InAudio Introduction");
            return(window);
        }