diff --git a/Editor/PackageInstaller.cs b/Editor/PackageInstaller.cs index e7d6a790d..e852381e4 100644 --- a/Editor/PackageInstaller.cs +++ b/Editor/PackageInstaller.cs @@ -63,6 +63,8 @@ public static bool TryInstallAssets(Dictionary installationPaths EditorUtility.DisplayProgressBar("Verifying assets...", Path.GetFileNameWithoutExtension(installedAssets[i]), i / (float)installedAssets.Count); installedAssets[i] = installedAssets[i].Replace($"{Directory.GetParent(Application.dataPath).FullName}\\", string.Empty).ToForwardSlashes(); } + + EditorUtility.ClearProgressBar(); } else { @@ -123,6 +125,7 @@ public static bool TryInstallAssets(Dictionary installationPaths EditorApplication.delayCall += () => AddConfigurations(installedAssets); } + EditorUtility.ClearProgressBar(); return true; } diff --git a/Runtime/Utilities/Editor/MixedRealityEditorSettings.cs b/Runtime/Utilities/Editor/MixedRealityEditorSettings.cs index bc192082c..e2d421f29 100644 --- a/Runtime/Utilities/Editor/MixedRealityEditorSettings.cs +++ b/Runtime/Utilities/Editor/MixedRealityEditorSettings.cs @@ -78,7 +78,7 @@ static MixedRealityEditorSettings() /// public static void CheckSettings() { - EditorPrefs.SetBool("XRTK", true); + EditorPrefs.SetBool($"{Application.productName}_XRTK", true); if (Application.isPlaying || EditorPrefs.GetBool(IgnoreKey, false) ||