internal static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         EditorBootstrapper bootstrapper = new EditorBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
        internal static void RunInDebugMode()
        {
            EditorBootstrapper bootstrapper = new EditorBootstrapper();

            bootstrapper.Run();
        }