UnityEditor.WelcomeScreen.LoadLogos C# (CSharp) Method

LoadLogos() private static method

private static LoadLogos ( ) : void
return void
        private static void LoadLogos()
        {
            if (styles == null)
            {
                s_ShowAtStartup = EditorPrefs.GetInt("ShowWelcomeAtStartup4", 1) != 0;
                s_ShowCount = EditorPrefs.GetInt("WelcomeScreenShowCount", 0);
                styles = new Styles();
            }
        }

Usage Example

Exemplo n.º 1
0
 private static void ShowWelcomeScreenAtStartup()
 {
     WelcomeScreen.LoadLogos();
     if (WelcomeScreen.s_ShowAtStartup)
     {
         WelcomeScreen.DoShowWelcomeScreen("Startup");
     }
 }
All Usage Examples Of UnityEditor.WelcomeScreen::LoadLogos