diff --git a/source/VersionHandlerImpl/src/VersionHandlerImpl.cs b/source/VersionHandlerImpl/src/VersionHandlerImpl.cs index 36e32fe2..a0f303e7 100644 --- a/source/VersionHandlerImpl/src/VersionHandlerImpl.cs +++ b/source/VersionHandlerImpl/src/VersionHandlerImpl.cs @@ -2299,11 +2299,14 @@ private static void LoadLogPreferences() { /// and remove files from older manifest files. /// static VersionHandlerImpl() { - Log("Loaded VersionHandlerImpl", verbose: true); - RunOnMainThread.Run(() => { - LoadLogPreferences(); - UpdateVersionedAssetsOnUpdate(); - }, runNow: false); + if (!EditorApplication.isPlayingOrWillChangePlaymode) + { + Log("Loaded VersionHandlerImpl", verbose: true); + RunOnMainThread.Run(() => { + LoadLogPreferences(); + UpdateVersionedAssetsOnUpdate(); + }, runNow: false); + } } static void UpdateVersionedAssetsOnUpdate() {