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