Example #1
0
        public static void RestoreDefaultConfiguration()
        {
            EditorConsole.Clear();
            Debug.Log("Applying Unity's default configuration...");

            // Actions performed when the button "Apply Unity's default configuration" is clicked
            QuickSearch.Uninstall();
            SuppressionOfWarningCS0649.EnableWarning();
        }
Example #2
0
        public static void ApplyRecommendedConfiguration()
        {
            EditorConsole.Clear();
            Debug.Log("Applying recommended configuration...");

            // Actions performed when the button "Apply recommended configuration" is clicked
            QuickSearch.Install();
            SuppressionOfWarningCS0649.DisableWarning();
        }