diff --git a/JNFrame2/Assembly-CSharp.csproj b/JNFrame2/Assembly-CSharp.csproj
index 498606ee..3a4c055f 100644
--- a/JNFrame2/Assembly-CSharp.csproj
+++ b/JNFrame2/Assembly-CSharp.csproj
@@ -90,6 +90,7 @@
+
@@ -477,6 +478,7 @@
+
@@ -701,8 +703,6 @@
-
-
diff --git a/JNFrame2/Assets/JNGame/Sync/App/Frame/JNSyncFrameService.cs b/JNFrame2/Assets/JNGame/Sync/App/Frame/JNSyncFrameService.cs
index e923043c..1095b962 100644
--- a/JNFrame2/Assets/JNGame/Sync/App/Frame/JNSyncFrameService.cs
+++ b/JNFrame2/Assets/JNGame/Sync/App/Frame/JNSyncFrameService.cs
@@ -72,7 +72,7 @@ namespace JNGame.Sync.Frame
#endif
if (!IsStart) return;
base.Execute();
- int deltaTime = (int)(Time.deltaTime * 1000f);
+ int deltaTime = TickTime;
dtTotal += deltaTime;
dtInputTotal += deltaTime;
diff --git a/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateClientService.cs b/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateClientService.cs
index f5d97ac2..7a1b792b 100644
--- a/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateClientService.cs
+++ b/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateClientService.cs
@@ -35,7 +35,7 @@ namespace JNGame.Sync.State
#endif
if (!IsStart) return;
base.Execute();
- dtTime += (int)(Time.deltaTime * 1000);
+ dtTime += TickTime;
if (DeltaTime <= dtTime)
{
dtTime -= DeltaTime;
diff --git a/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateServerService.cs b/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateServerService.cs
index 47ab865d..aa02acca 100644
--- a/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateServerService.cs
+++ b/JNFrame2/Assets/JNGame/Sync/App/State/JNSStateServerService.cs
@@ -37,7 +37,7 @@ namespace JNGame.Sync.State
#endif
if (!IsStart) return;
base.Execute();
- dtTime += (int)(Time.deltaTime * 1000);
+ dtTime += TickTime;
if (DeltaTime <= dtTime)
{
dtTime -= DeltaTime;
diff --git a/JNFrame2/Assets/JNGame/Sync/JNSyncDefaultService.cs b/JNFrame2/Assets/JNGame/Sync/JNSyncDefaultService.cs
index 303d889c..e6a9341b 100644
--- a/JNFrame2/Assets/JNGame/Sync/JNSyncDefaultService.cs
+++ b/JNFrame2/Assets/JNGame/Sync/JNSyncDefaultService.cs
@@ -1,12 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using System.Threading;
+using System.Threading.Tasks;
using Entitas;
using JNGame.Sync.Entity;
using JNGame.Sync.Frame.Entity;
using JNGame.Sync.Frame.Service;
using JNGame.Sync.System;
using JNGame.Sync.System.View;
+using JNGame.Util;
using UnityEngine;
namespace JNGame.Sync.Frame
@@ -20,6 +23,11 @@ namespace JNGame.Sync.Frame
public JNContexts Contexts;
public abstract bool IsStartGame { get; }
+
+ private Thread thread;
+
+ //执行时间
+ protected int TickTime;
public JNSyncDefaultService() : base()
@@ -52,6 +60,13 @@ namespace JNGame.Sync.Frame
}
+ public void Dispose()
+ {
+ base.Cleanup();
+ thread?.Abort();
+ thread = null;
+ }
+
public override Systems Add(ISystem system)
{
(system as SLogicSystem)?.OnSyncStart();
@@ -85,7 +100,7 @@ namespace JNGame.Sync.Frame
}
///
- /// 自动更新视图帧
+ /// 更新(不可在外部调用)
///
public override void Execute()
{
@@ -93,9 +108,44 @@ namespace JNGame.Sync.Frame
#if (!ENTITAS_DISABLE_VISUAL_DEBUGGING && UNITY_EDITOR)
if (paused) return;
#endif
- base.Execute();
+ UnityMainThreadDispatcher.Instance.Enqueue(base.Execute);
}
+
+ ///
+ /// Unity主线程更新
+ ///
+ ///
+ public void MExecute(int ms = -1)
+ {
+ if (ms <= -1) ms = (int)Time.deltaTime * 1000;
+ TickTime = ms;
+ Execute();
+ }
+
+ ///
+ /// 线程更新
+ ///
+ public void TStartExecute(int ms = -1)
+ {
+ if (ms <= -1) ms = DeltaTime;
+
+ thread = new Thread(() =>
+ {
+ while (thread.ThreadState != ThreadState.Aborted)
+ {
+ Thread.Sleep(ms);
+ TickTime = ms;
+ Execute();
+ }
+ });
+ thread.Start();
+ }
+ public void TStopExecute()
+ {
+ thread?.Abort();
+ thread = null;
+ }
///
/// 推逻辑帧
diff --git a/JNFrame2/Assets/JNGame/Sync/System/SLogicSystem.cs b/JNFrame2/Assets/JNGame/Sync/System/SLogicSystem.cs
index 7172faaf..0ab2e8b1 100644
--- a/JNFrame2/Assets/JNGame/Sync/System/SLogicSystem.cs
+++ b/JNFrame2/Assets/JNGame/Sync/System/SLogicSystem.cs
@@ -27,7 +27,7 @@ namespace JNGame.Sync.System
{
}
- public void OnSyncDestroy(){}
+ public virtual void OnSyncDestroy(){}
}
}
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/AppGame/DApplication.cs b/JNFrame2/Assets/Scripts/AppGame/DApplication.cs
index 9e05c4fb..a31822d4 100644
--- a/JNFrame2/Assets/Scripts/AppGame/DApplication.cs
+++ b/JNFrame2/Assets/Scripts/AppGame/DApplication.cs
@@ -33,11 +33,6 @@ public class DApplication : MonoBehaviour
}
- private void Update()
- {
- App.Game.Update();
- }
-
public void OnClickPlayerCreate()
{
var input = App.Game.GetInput();
diff --git a/JNFrame2/Assets/Scripts/AppGame/Systems/JNGGame.cs b/JNFrame2/Assets/Scripts/AppGame/Systems/JNGGame.cs
index 28136e9c..ccbd1988 100644
--- a/JNFrame2/Assets/Scripts/AppGame/Systems/JNGGame.cs
+++ b/JNFrame2/Assets/Scripts/AppGame/Systems/JNGGame.cs
@@ -26,6 +26,13 @@ namespace AppGame.Systems
}
+ public override void OnClose()
+ {
+ base.OnClose();
+ client?.Dispose();
+ server?.Dispose();
+ }
+
///
/// 运行同步类
///
@@ -33,24 +40,17 @@ namespace AppGame.Systems
{
client = new T();
client.Initialize();
+ client.TStartExecute();
return client as T;
}
public T StartServer() where T : JNSStateServerService,new()
{
server = new T();
server.Initialize();
+ server.TStartExecute();
return server as T;
}
- ///
- /// 更新周期
- ///
- public void Update()
- {
- client?.Execute();
- server?.Execute();
- }
-
///
/// 获取第一个客户端的输入类
///
diff --git a/JNFrame2/Assets/Scripts/Game/View/DViewSystem.cs b/JNFrame2/Assets/Scripts/Game/View/DViewSystem.cs
index a08bc816..0ae86eea 100644
--- a/JNFrame2/Assets/Scripts/Game/View/DViewSystem.cs
+++ b/JNFrame2/Assets/Scripts/Game/View/DViewSystem.cs
@@ -1,6 +1,7 @@
using Game.JNGFrame.View.Entity;
using JNGame.Sync.System;
using JNGame.Sync.View;
+using JNGame.Util;
namespace Game.JNGFrame.View
{
@@ -23,7 +24,8 @@ namespace Game.JNGFrame.View
base.OnSyncUpdate(dt);
foreach (var view in views)
{
- view.Execute();
+ //视图逻辑交给主线程运行
+ UnityMainThreadDispatcher.Instance.Enqueue(view.Execute);
}
}
// public override void Execute()
diff --git a/JNFrame2/Logs/AssetImportWorker0.log b/JNFrame2/Logs/AssetImportWorker0.log
new file mode 100644
index 00000000..7f0540ae
--- /dev/null
+++ b/JNFrame2/Logs/AssetImportWorker0.log
@@ -0,0 +1,2362 @@
+Using pre-set license
+Built from '2021.3/staging' branch; Version is '2021.3.35f1 (157b46ce122a) revision 1407814'; Using compiler version '192829333'; Build Type 'Release'
+OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'zh' Physical Memory: 32651 MB
+BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
+
+COMMAND LINE ARGUMENTS:
+D:\Unity\2021.3.35f1\Editor\Unity.exe
+-adb2
+-batchMode
+-noUpm
+-name
+AssetImportWorker0
+-projectPath
+D:/myproject/JisolGame/JNFrame2
+-logFile
+Logs/AssetImportWorker0.log
+-srvPort
+54034
+Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
+D:/myproject/JisolGame/JNFrame2
+[UnityMemory] Configuration Parameters - Can be set up in boot.config
+ "memorysetup-bucket-allocator-granularity=16"
+ "memorysetup-bucket-allocator-bucket-count=8"
+ "memorysetup-bucket-allocator-block-size=33554432"
+ "memorysetup-bucket-allocator-block-count=8"
+ "memorysetup-main-allocator-block-size=16777216"
+ "memorysetup-thread-allocator-block-size=16777216"
+ "memorysetup-gfx-main-allocator-block-size=16777216"
+ "memorysetup-gfx-thread-allocator-block-size=16777216"
+ "memorysetup-cache-allocator-block-size=4194304"
+ "memorysetup-typetree-allocator-block-size=2097152"
+ "memorysetup-profiler-bucket-allocator-granularity=16"
+ "memorysetup-profiler-bucket-allocator-bucket-count=8"
+ "memorysetup-profiler-bucket-allocator-block-size=33554432"
+ "memorysetup-profiler-bucket-allocator-block-count=8"
+ "memorysetup-profiler-allocator-block-size=16777216"
+ "memorysetup-profiler-editor-allocator-block-size=1048576"
+ "memorysetup-temp-allocator-size-main=16777216"
+ "memorysetup-job-temp-allocator-block-size=2097152"
+ "memorysetup-job-temp-allocator-block-size-background=1048576"
+ "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
+ "memorysetup-temp-allocator-size-background-worker=32768"
+ "memorysetup-temp-allocator-size-job-worker=262144"
+ "memorysetup-temp-allocator-size-preload-manager=33554432"
+ "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
+ "memorysetup-temp-allocator-size-audio-worker=65536"
+ "memorysetup-temp-allocator-size-cloud-worker=32768"
+ "memorysetup-temp-allocator-size-gi-baking-worker=262144"
+ "memorysetup-temp-allocator-size-gfx=262144"
+Player connection [27236] Host "[IP] 192.168.15.124 [Port] 0 [Flags] 2 [Guid] 745511463 [EditorId] 745511463 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+
+Player connection [27236] Host "[IP] 192.168.15.124 [Port] 0 [Flags] 2 [Guid] 745511463 [EditorId] 745511463 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+
+[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers.
+Refreshing native plugins compatible for Editor in 145.36 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Initialize engine version: 2021.3.35f1 (157b46ce122a)
+[Subsystems] Discovering subsystems at path D:/Unity/2021.3.35f1/Editor/Data/Resources/UnitySubsystems
+[Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame2/Assets
+GfxDevice: creating device client; threaded=0; jobified=0
+Direct3D:
+ Version: Direct3D 11.0 [level 11.1]
+ Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
+ Vendor: NVIDIA
+ VRAM: 5980 MB
+ Driver: 31.0.15.3623
+Initialize mono
+Mono path[0] = 'D:/Unity/2021.3.35f1/Editor/Data/Managed'
+Mono path[1] = 'D:/Unity/2021.3.35f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
+Mono config path = 'D:/Unity/2021.3.35f1/Editor/Data/MonoBleedingEdge/etc'
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56240
+Begin MonoManager ReloadAssembly
+Registering precompiled unity dll's ...
+Register platform support module: D:/Unity/2021.3.35f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
+Register platform support module: D:/Unity/2021.3.35f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
+Registered in 0.005646 seconds.
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Android Extension - Scanning For ADB Devices 642 ms
+Refreshing native plugins compatible for Editor in 365.80 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Mono: successfully reloaded assembly
+- Completed reload, in 3.408 seconds
+Domain Reload Profiling:
+ ReloadAssembly (3410ms)
+ BeginReloadAssembly (110ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (0ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (1ms)
+ EndReloadAssembly (3199ms)
+ LoadAssemblies (106ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (119ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (56ms)
+ SetupLoadedEditorAssemblies (2901ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (929ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (366ms)
+ BeforeProcessingInitializeOnLoad (3ms)
+ ProcessInitializeOnLoadAttributes (1289ms)
+ ProcessInitializeOnLoadMethodAttributes (313ms)
+ AfterProcessingInitializeOnLoad (0ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (0ms)
+Platform modules already initialized, skipping
+Registering precompiled user dll's ...
+Registered in 0.314566 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Package Manager log level set to [2]
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 3.383 seconds
+Domain Reload Profiling:
+ ReloadAssembly (3384ms)
+ BeginReloadAssembly (321ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ EndReloadAssembly (2808ms)
+ LoadAssemblies (362ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (675ms)
+ ReleaseScriptCaches (5ms)
+ RebuildScriptCaches (238ms)
+ SetupLoadedEditorAssemblies (1555ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (53ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (215ms)
+ ProcessInitializeOnLoadAttributes (1213ms)
+ ProcessInitializeOnLoadMethodAttributes (50ms)
+ AfterProcessingInitializeOnLoad (21ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (13ms)
+Platform modules already initialized, skipping
+========================================================================
+Worker process is ready to serve import requests
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.37 seconds
+Refreshing native plugins compatible for Editor in 2.96 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6354 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 100 unused Assets / (126.2 KB). Loaded Objects now: 6781.
+Memory consumption went from 227.0 MB to 226.9 MB.
+Total: 23.612000 ms (FindLiveObjects: 2.115900 ms CreateObjectMapping: 1.335800 ms MarkObjects: 19.522900 ms DeleteObjects: 0.634400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Import Request.
+ Time since last request: 23446.788253 seconds.
+ path: Assets/JNGame/JNetGame.cs
+ artifactKey: Guid(251a7edbf0764857b9a7c6d80ce1cdd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/JNGame/JNetGame.cs using Guid(251a7edbf0764857b9a7c6d80ce1cdd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a112540cbb817d07a6929fffd1870941') in 0.113017 seconds
+Number of asset objects unloaded after import = 0
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.084460 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.604 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1606ms)
+ BeginReloadAssembly (216ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (58ms)
+ EndReloadAssembly (1276ms)
+ LoadAssemblies (173ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (314ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (50ms)
+ SetupLoadedEditorAssemblies (747ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (65ms)
+ ProcessInitializeOnLoadAttributes (621ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6796.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.451900 ms (FindLiveObjects: 0.526600 ms CreateObjectMapping: 0.293200 ms MarkObjects: 2.520400 ms DeleteObjects: 0.110000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.044116 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.695 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1696ms)
+ BeginReloadAssembly (231ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (73ms)
+ EndReloadAssembly (1354ms)
+ LoadAssemblies (154ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (359ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (761ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (67ms)
+ ProcessInitializeOnLoadAttributes (634ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6811.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.071700 ms (FindLiveObjects: 0.410800 ms CreateObjectMapping: 0.232000 ms MarkObjects: 2.379300 ms DeleteObjects: 0.048100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.048509 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.615 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1616ms)
+ BeginReloadAssembly (211ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (65ms)
+ EndReloadAssembly (1298ms)
+ LoadAssemblies (159ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (356ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (727ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (71ms)
+ ProcessInitializeOnLoadAttributes (598ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6826.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 4.477700 ms (FindLiveObjects: 0.897300 ms CreateObjectMapping: 0.488600 ms MarkObjects: 3.018400 ms DeleteObjects: 0.071300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.102613 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.686 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1687ms)
+ BeginReloadAssembly (250ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (83ms)
+ EndReloadAssembly (1320ms)
+ LoadAssemblies (162ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (341ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (54ms)
+ SetupLoadedEditorAssemblies (757ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (620ms)
+ ProcessInitializeOnLoadMethodAttributes (30ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6841.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 2.695600 ms (FindLiveObjects: 0.417300 ms CreateObjectMapping: 0.220800 ms MarkObjects: 2.010400 ms DeleteObjects: 0.046400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.046980 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.594 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1594ms)
+ BeginReloadAssembly (185ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (57ms)
+ EndReloadAssembly (1308ms)
+ LoadAssemblies (149ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (349ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (750ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (72ms)
+ ProcessInitializeOnLoadAttributes (623ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6856.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 3.101600 ms (FindLiveObjects: 0.610500 ms CreateObjectMapping: 0.325600 ms MarkObjects: 2.107500 ms DeleteObjects: 0.055800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.040261 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.690 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1691ms)
+ BeginReloadAssembly (235ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (77ms)
+ EndReloadAssembly (1330ms)
+ LoadAssemblies (170ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (354ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (751ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (627ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6871.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 2.627500 ms (FindLiveObjects: 0.401400 ms CreateObjectMapping: 0.226600 ms MarkObjects: 1.961200 ms DeleteObjects: 0.037500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.057516 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.660 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1661ms)
+ BeginReloadAssembly (188ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (58ms)
+ EndReloadAssembly (1353ms)
+ LoadAssemblies (142ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (339ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (48ms)
+ SetupLoadedEditorAssemblies (792ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (646ms)
+ ProcessInitializeOnLoadMethodAttributes (36ms)
+ AfterProcessingInitializeOnLoad (24ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (15ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 6886.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 3.900800 ms (FindLiveObjects: 0.639100 ms CreateObjectMapping: 0.346400 ms MarkObjects: 2.855600 ms DeleteObjects: 0.058400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.058510 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.814 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1815ms)
+ BeginReloadAssembly (268ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (94ms)
+ EndReloadAssembly (1406ms)
+ LoadAssemblies (169ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (348ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (65ms)
+ SetupLoadedEditorAssemblies (804ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (89ms)
+ ProcessInitializeOnLoadAttributes (650ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6901.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 3.633400 ms (FindLiveObjects: 0.537600 ms CreateObjectMapping: 0.382500 ms MarkObjects: 2.647600 ms DeleteObjects: 0.064300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.065148 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.691 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1692ms)
+ BeginReloadAssembly (257ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (85ms)
+ EndReloadAssembly (1312ms)
+ LoadAssemblies (174ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (311ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (41ms)
+ SetupLoadedEditorAssemblies (790ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (656ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6916.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 2.971500 ms (FindLiveObjects: 0.467600 ms CreateObjectMapping: 0.270700 ms MarkObjects: 2.172700 ms DeleteObjects: 0.059500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.046720 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.645 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1646ms)
+ BeginReloadAssembly (221ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (12ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (70ms)
+ EndReloadAssembly (1321ms)
+ LoadAssemblies (149ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (331ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (52ms)
+ SetupLoadedEditorAssemblies (764ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (633ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6931.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.189100 ms (FindLiveObjects: 0.512400 ms CreateObjectMapping: 0.250500 ms MarkObjects: 2.369000 ms DeleteObjects: 0.055900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.035525 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.814 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1815ms)
+ BeginReloadAssembly (282ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (84ms)
+ EndReloadAssembly (1368ms)
+ LoadAssemblies (208ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (359ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (44ms)
+ SetupLoadedEditorAssemblies (759ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (69ms)
+ ProcessInitializeOnLoadAttributes (626ms)
+ ProcessInitializeOnLoadMethodAttributes (31ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6946.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 4.621400 ms (FindLiveObjects: 0.765000 ms CreateObjectMapping: 0.731200 ms MarkObjects: 3.070100 ms DeleteObjects: 0.053700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.050363 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.937 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1938ms)
+ BeginReloadAssembly (285ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (72ms)
+ EndReloadAssembly (1465ms)
+ LoadAssemblies (248ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (406ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (50ms)
+ SetupLoadedEditorAssemblies (809ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (662ms)
+ ProcessInitializeOnLoadMethodAttributes (33ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 6961.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 4.195600 ms (FindLiveObjects: 1.150900 ms CreateObjectMapping: 0.602200 ms MarkObjects: 2.336400 ms DeleteObjects: 0.091600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.047596 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.612 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1613ms)
+ BeginReloadAssembly (210ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (54ms)
+ EndReloadAssembly (1289ms)
+ LoadAssemblies (166ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (309ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (42ms)
+ SetupLoadedEditorAssemblies (760ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (62ms)
+ ProcessInitializeOnLoadAttributes (638ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (15ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6976.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.207700 ms (FindLiveObjects: 0.559300 ms CreateObjectMapping: 0.284900 ms MarkObjects: 2.312200 ms DeleteObjects: 0.050600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.064939 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.735 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1736ms)
+ BeginReloadAssembly (204ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (61ms)
+ EndReloadAssembly (1403ms)
+ LoadAssemblies (159ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (334ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (60ms)
+ SetupLoadedEditorAssemblies (814ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (26ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (86ms)
+ ProcessInitializeOnLoadAttributes (668ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6991.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.542800 ms (FindLiveObjects: 0.406500 ms CreateObjectMapping: 0.392800 ms MarkObjects: 2.689000 ms DeleteObjects: 0.053600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.078074 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.783 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1784ms)
+ BeginReloadAssembly (263ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (96ms)
+ EndReloadAssembly (1399ms)
+ LoadAssemblies (169ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (356ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (45ms)
+ SetupLoadedEditorAssemblies (818ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (76ms)
+ ProcessInitializeOnLoadAttributes (666ms)
+ ProcessInitializeOnLoadMethodAttributes (38ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7006.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 3.708600 ms (FindLiveObjects: 0.626600 ms CreateObjectMapping: 0.342000 ms MarkObjects: 2.654600 ms DeleteObjects: 0.084300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.068692 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.699 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1699ms)
+ BeginReloadAssembly (255ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (92ms)
+ EndReloadAssembly (1348ms)
+ LoadAssemblies (135ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (359ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (51ms)
+ SetupLoadedEditorAssemblies (787ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (82ms)
+ ProcessInitializeOnLoadAttributes (648ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7021.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 4.087300 ms (FindLiveObjects: 0.718000 ms CreateObjectMapping: 0.314700 ms MarkObjects: 2.984500 ms DeleteObjects: 0.068400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.053319 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.731 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1732ms)
+ BeginReloadAssembly (226ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (65ms)
+ EndReloadAssembly (1376ms)
+ LoadAssemblies (163ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (350ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (799ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (76ms)
+ ProcessInitializeOnLoadAttributes (651ms)
+ ProcessInitializeOnLoadMethodAttributes (34ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7036.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 3.079900 ms (FindLiveObjects: 0.456600 ms CreateObjectMapping: 0.287700 ms MarkObjects: 2.287600 ms DeleteObjects: 0.047000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.065133 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.623 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1624ms)
+ BeginReloadAssembly (194ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (55ms)
+ EndReloadAssembly (1313ms)
+ LoadAssemblies (144ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (319ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (51ms)
+ SetupLoadedEditorAssemblies (786ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (647ms)
+ ProcessInitializeOnLoadMethodAttributes (30ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7051.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 2.979000 ms (FindLiveObjects: 0.427200 ms CreateObjectMapping: 0.333200 ms MarkObjects: 2.167700 ms DeleteObjects: 0.049400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.041079 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.81 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 2.024 seconds
+Domain Reload Profiling:
+ ReloadAssembly (2024ms)
+ BeginReloadAssembly (211ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (73ms)
+ EndReloadAssembly (1659ms)
+ LoadAssemblies (182ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (498ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (58ms)
+ SetupLoadedEditorAssemblies (862ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (30ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (86ms)
+ ProcessInitializeOnLoadAttributes (706ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7066.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 5.797900 ms (FindLiveObjects: 0.955600 ms CreateObjectMapping: 0.496000 ms MarkObjects: 4.233100 ms DeleteObjects: 0.109200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.045996 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.742 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1743ms)
+ BeginReloadAssembly (236ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (48ms)
+ EndReloadAssembly (1357ms)
+ LoadAssemblies (176ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (349ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (49ms)
+ SetupLoadedEditorAssemblies (788ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (72ms)
+ ProcessInitializeOnLoadAttributes (663ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7081.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 2.778000 ms (FindLiveObjects: 0.479200 ms CreateObjectMapping: 0.248700 ms MarkObjects: 1.984400 ms DeleteObjects: 0.064900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.080224 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.922 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1923ms)
+ BeginReloadAssembly (237ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (58ms)
+ EndReloadAssembly (1558ms)
+ LoadAssemblies (180ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (444ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (61ms)
+ SetupLoadedEditorAssemblies (849ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (34ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (93ms)
+ ProcessInitializeOnLoadAttributes (668ms)
+ ProcessInitializeOnLoadMethodAttributes (37ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7096.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 4.272100 ms (FindLiveObjects: 0.463900 ms CreateObjectMapping: 0.267400 ms MarkObjects: 3.461400 ms DeleteObjects: 0.077800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.050368 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 2.206 seconds
+Domain Reload Profiling:
+ ReloadAssembly (2207ms)
+ BeginReloadAssembly (246ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (90ms)
+ EndReloadAssembly (1836ms)
+ LoadAssemblies (161ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (604ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (48ms)
+ SetupLoadedEditorAssemblies (965ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (29ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (86ms)
+ ProcessInitializeOnLoadAttributes (799ms)
+ ProcessInitializeOnLoadMethodAttributes (35ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (13ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 2.41 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7111.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 2.619500 ms (FindLiveObjects: 0.453600 ms CreateObjectMapping: 0.258300 ms MarkObjects: 1.855800 ms DeleteObjects: 0.050500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.094025 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.542 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1543ms)
+ BeginReloadAssembly (192ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (48ms)
+ EndReloadAssembly (1239ms)
+ LoadAssemblies (137ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (304ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (42ms)
+ SetupLoadedEditorAssemblies (744ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (63ms)
+ ProcessInitializeOnLoadAttributes (628ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7126.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 3.836600 ms (FindLiveObjects: 0.601000 ms CreateObjectMapping: 0.284600 ms MarkObjects: 2.888400 ms DeleteObjects: 0.061000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.052309 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.559 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1560ms)
+ BeginReloadAssembly (184ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (47ms)
+ EndReloadAssembly (1251ms)
+ LoadAssemblies (143ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (308ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (743ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (616ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 7141.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 7.467400 ms (FindLiveObjects: 1.540700 ms CreateObjectMapping: 1.169300 ms MarkObjects: 4.552000 ms DeleteObjects: 0.201200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.050271 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.666 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1667ms)
+ BeginReloadAssembly (257ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (67ms)
+ EndReloadAssembly (1290ms)
+ LoadAssemblies (184ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (337ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (59ms)
+ SetupLoadedEditorAssemblies (720ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (69ms)
+ ProcessInitializeOnLoadAttributes (597ms)
+ ProcessInitializeOnLoadMethodAttributes (21ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 7156.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 2.813500 ms (FindLiveObjects: 0.536300 ms CreateObjectMapping: 0.227200 ms MarkObjects: 2.006200 ms DeleteObjects: 0.042500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.107573 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.659 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1660ms)
+ BeginReloadAssembly (199ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (65ms)
+ EndReloadAssembly (1354ms)
+ LoadAssemblies (142ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (327ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (48ms)
+ SetupLoadedEditorAssemblies (814ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (84ms)
+ ProcessInitializeOnLoadAttributes (665ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7171.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 4.804500 ms (FindLiveObjects: 0.947700 ms CreateObjectMapping: 0.564000 ms MarkObjects: 3.192300 ms DeleteObjects: 0.098200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.049789 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.803 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1804ms)
+ BeginReloadAssembly (205ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (62ms)
+ EndReloadAssembly (1495ms)
+ LoadAssemblies (152ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (327ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (858ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (720ms)
+ ProcessInitializeOnLoadMethodAttributes (33ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 4.12 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7186.
+Memory consumption went from 225.5 MB to 225.5 MB.
+Total: 3.326900 ms (FindLiveObjects: 0.559800 ms CreateObjectMapping: 0.266600 ms MarkObjects: 2.434100 ms DeleteObjects: 0.065000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.049344 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.550 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1551ms)
+ BeginReloadAssembly (177ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (49ms)
+ EndReloadAssembly (1248ms)
+ LoadAssemblies (140ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (312ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (42ms)
+ SetupLoadedEditorAssemblies (729ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (65ms)
+ ProcessInitializeOnLoadAttributes (608ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7201.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 3.247700 ms (FindLiveObjects: 0.631200 ms CreateObjectMapping: 0.352900 ms MarkObjects: 2.207300 ms DeleteObjects: 0.055300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.102423 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 9.39 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 9.095 seconds
+Domain Reload Profiling:
+ ReloadAssembly (9099ms)
+ BeginReloadAssembly (1151ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (18ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (345ms)
+ EndReloadAssembly (7483ms)
+ LoadAssemblies (878ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (2606ms)
+ ReleaseScriptCaches (11ms)
+ RebuildScriptCaches (594ms)
+ SetupLoadedEditorAssemblies (3045ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (95ms)
+ SetLoadedEditorAssemblies (42ms)
+ RefreshPlugins (10ms)
+ BeforeProcessingInitializeOnLoad (985ms)
+ ProcessInitializeOnLoadAttributes (1813ms)
+ ProcessInitializeOnLoadMethodAttributes (62ms)
+ AfterProcessingInitializeOnLoad (36ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (23ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 2.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7216.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 6.119100 ms (FindLiveObjects: 1.190200 ms CreateObjectMapping: 1.233000 ms MarkObjects: 3.518400 ms DeleteObjects: 0.175300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.037823 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.763 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1764ms)
+ BeginReloadAssembly (165ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (40ms)
+ EndReloadAssembly (1460ms)
+ LoadAssemblies (151ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (416ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (51ms)
+ SetupLoadedEditorAssemblies (806ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (77ms)
+ ProcessInitializeOnLoadAttributes (660ms)
+ ProcessInitializeOnLoadMethodAttributes (29ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7231.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 3.055300 ms (FindLiveObjects: 0.545500 ms CreateObjectMapping: 0.345700 ms MarkObjects: 2.110200 ms DeleteObjects: 0.052600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.033495 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.541 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1542ms)
+ BeginReloadAssembly (178ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (49ms)
+ EndReloadAssembly (1252ms)
+ LoadAssemblies (144ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (332ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (714ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (64ms)
+ ProcessInitializeOnLoadAttributes (601ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (7ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7246.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 3.119200 ms (FindLiveObjects: 0.488200 ms CreateObjectMapping: 0.308100 ms MarkObjects: 2.278700 ms DeleteObjects: 0.043200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031443 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.636 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1637ms)
+ BeginReloadAssembly (175ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (52ms)
+ EndReloadAssembly (1345ms)
+ LoadAssemblies (136ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (346ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (49ms)
+ SetupLoadedEditorAssemblies (779ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (640ms)
+ ProcessInitializeOnLoadMethodAttributes (30ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7261.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 4.099100 ms (FindLiveObjects: 0.650100 ms CreateObjectMapping: 0.427800 ms MarkObjects: 2.945800 ms DeleteObjects: 0.073700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031209 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.666 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1667ms)
+ BeginReloadAssembly (161ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (41ms)
+ EndReloadAssembly (1395ms)
+ LoadAssemblies (158ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (371ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (789ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (654ms)
+ ProcessInitializeOnLoadMethodAttributes (28ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7276.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 2.952600 ms (FindLiveObjects: 0.570100 ms CreateObjectMapping: 0.249400 ms MarkObjects: 2.073400 ms DeleteObjects: 0.058800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.043059 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.583 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1584ms)
+ BeginReloadAssembly (173ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (40ms)
+ EndReloadAssembly (1279ms)
+ LoadAssemblies (166ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (333ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (722ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (62ms)
+ ProcessInitializeOnLoadAttributes (608ms)
+ ProcessInitializeOnLoadMethodAttributes (22ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7291.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 2.918300 ms (FindLiveObjects: 0.489400 ms CreateObjectMapping: 0.215300 ms MarkObjects: 2.171500 ms DeleteObjects: 0.041200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.032859 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.722 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1723ms)
+ BeginReloadAssembly (161ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (40ms)
+ EndReloadAssembly (1442ms)
+ LoadAssemblies (158ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (380ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (803ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (75ms)
+ ProcessInitializeOnLoadAttributes (648ms)
+ ProcessInitializeOnLoadMethodAttributes (39ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7306.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 4.049900 ms (FindLiveObjects: 0.618500 ms CreateObjectMapping: 0.327800 ms MarkObjects: 3.017900 ms DeleteObjects: 0.083600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.049383 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.546 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1547ms)
+ BeginReloadAssembly (167ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (47ms)
+ EndReloadAssembly (1259ms)
+ LoadAssemblies (151ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (319ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (41ms)
+ SetupLoadedEditorAssemblies (721ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (64ms)
+ ProcessInitializeOnLoadAttributes (602ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (8ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7321.
+Memory consumption went from 225.8 MB to 225.7 MB.
+Total: 2.992100 ms (FindLiveObjects: 0.543200 ms CreateObjectMapping: 0.245600 ms MarkObjects: 2.145600 ms DeleteObjects: 0.056600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.033911 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.637 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1638ms)
+ BeginReloadAssembly (168ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (44ms)
+ EndReloadAssembly (1358ms)
+ LoadAssemblies (137ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (349ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (51ms)
+ SetupLoadedEditorAssemblies (787ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (71ms)
+ ProcessInitializeOnLoadAttributes (654ms)
+ ProcessInitializeOnLoadMethodAttributes (28ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7336.
+Memory consumption went from 225.8 MB to 225.7 MB.
+Total: 3.022900 ms (FindLiveObjects: 0.607600 ms CreateObjectMapping: 0.310200 ms MarkObjects: 2.049400 ms DeleteObjects: 0.054400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
diff --git a/JNFrame2/Logs/AssetImportWorker1.log b/JNFrame2/Logs/AssetImportWorker1.log
new file mode 100644
index 00000000..cf516f30
--- /dev/null
+++ b/JNFrame2/Logs/AssetImportWorker1.log
@@ -0,0 +1,2354 @@
+Using pre-set license
+Built from '2021.3/staging' branch; Version is '2021.3.35f1 (157b46ce122a) revision 1407814'; Using compiler version '192829333'; Build Type 'Release'
+OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'zh' Physical Memory: 32651 MB
+BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
+
+COMMAND LINE ARGUMENTS:
+D:\Unity\2021.3.35f1\Editor\Unity.exe
+-adb2
+-batchMode
+-noUpm
+-name
+AssetImportWorker1
+-projectPath
+D:/myproject/JisolGame/JNFrame2
+-logFile
+Logs/AssetImportWorker1.log
+-srvPort
+54034
+Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
+D:/myproject/JisolGame/JNFrame2
+[UnityMemory] Configuration Parameters - Can be set up in boot.config
+ "memorysetup-bucket-allocator-granularity=16"
+ "memorysetup-bucket-allocator-bucket-count=8"
+ "memorysetup-bucket-allocator-block-size=33554432"
+ "memorysetup-bucket-allocator-block-count=8"
+ "memorysetup-main-allocator-block-size=16777216"
+ "memorysetup-thread-allocator-block-size=16777216"
+ "memorysetup-gfx-main-allocator-block-size=16777216"
+ "memorysetup-gfx-thread-allocator-block-size=16777216"
+ "memorysetup-cache-allocator-block-size=4194304"
+ "memorysetup-typetree-allocator-block-size=2097152"
+ "memorysetup-profiler-bucket-allocator-granularity=16"
+ "memorysetup-profiler-bucket-allocator-bucket-count=8"
+ "memorysetup-profiler-bucket-allocator-block-size=33554432"
+ "memorysetup-profiler-bucket-allocator-block-count=8"
+ "memorysetup-profiler-allocator-block-size=16777216"
+ "memorysetup-profiler-editor-allocator-block-size=1048576"
+ "memorysetup-temp-allocator-size-main=16777216"
+ "memorysetup-job-temp-allocator-block-size=2097152"
+ "memorysetup-job-temp-allocator-block-size-background=1048576"
+ "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
+ "memorysetup-temp-allocator-size-background-worker=32768"
+ "memorysetup-temp-allocator-size-job-worker=262144"
+ "memorysetup-temp-allocator-size-preload-manager=33554432"
+ "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
+ "memorysetup-temp-allocator-size-audio-worker=65536"
+ "memorysetup-temp-allocator-size-cloud-worker=32768"
+ "memorysetup-temp-allocator-size-gi-baking-worker=262144"
+ "memorysetup-temp-allocator-size-gfx=262144"
+Player connection [26232] Host "[IP] 192.168.15.124 [Port] 0 [Flags] 2 [Guid] 1482479521 [EditorId] 1482479521 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+
+Player connection [26232] Host "[IP] 192.168.15.124 [Port] 0 [Flags] 2 [Guid] 1482479521 [EditorId] 1482479521 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+
+[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers.
+Refreshing native plugins compatible for Editor in 145.37 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Initialize engine version: 2021.3.35f1 (157b46ce122a)
+[Subsystems] Discovering subsystems at path D:/Unity/2021.3.35f1/Editor/Data/Resources/UnitySubsystems
+[Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame2/Assets
+GfxDevice: creating device client; threaded=0; jobified=0
+Direct3D:
+ Version: Direct3D 11.0 [level 11.1]
+ Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
+ Vendor: NVIDIA
+ VRAM: 5980 MB
+ Driver: 31.0.15.3623
+Initialize mono
+Mono path[0] = 'D:/Unity/2021.3.35f1/Editor/Data/Managed'
+Mono path[1] = 'D:/Unity/2021.3.35f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
+Mono config path = 'D:/Unity/2021.3.35f1/Editor/Data/MonoBleedingEdge/etc'
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56840
+Begin MonoManager ReloadAssembly
+Registering precompiled unity dll's ...
+Register platform support module: D:/Unity/2021.3.35f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
+Register platform support module: D:/Unity/2021.3.35f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
+Registered in 0.005448 seconds.
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Android Extension - Scanning For ADB Devices 735 ms
+Refreshing native plugins compatible for Editor in 605.08 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Mono: successfully reloaded assembly
+- Completed reload, in 3.645 seconds
+Domain Reload Profiling:
+ ReloadAssembly (3650ms)
+ BeginReloadAssembly (101ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (0ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (1ms)
+ EndReloadAssembly (3443ms)
+ LoadAssemblies (98ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (130ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (59ms)
+ SetupLoadedEditorAssemblies (3149ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (1011ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (605ms)
+ BeforeProcessingInitializeOnLoad (4ms)
+ ProcessInitializeOnLoadAttributes (1295ms)
+ ProcessInitializeOnLoadMethodAttributes (232ms)
+ AfterProcessingInitializeOnLoad (0ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (0ms)
+Platform modules already initialized, skipping
+Registering precompiled user dll's ...
+Registered in 0.208657 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Package Manager log level set to [2]
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 3.591 seconds
+Domain Reload Profiling:
+ ReloadAssembly (3592ms)
+ BeginReloadAssembly (315ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (1ms)
+ CreateAndSetChildDomain (84ms)
+ EndReloadAssembly (2978ms)
+ LoadAssemblies (328ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (764ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (161ms)
+ SetupLoadedEditorAssemblies (1639ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (54ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (3ms)
+ BeforeProcessingInitializeOnLoad (160ms)
+ ProcessInitializeOnLoadAttributes (1227ms)
+ ProcessInitializeOnLoadMethodAttributes (158ms)
+ AfterProcessingInitializeOnLoad (34ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (23ms)
+Platform modules already initialized, skipping
+========================================================================
+Worker process is ready to serve import requests
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.73 seconds
+Refreshing native plugins compatible for Editor in 2.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6354 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 100 unused Assets / (121.2 KB). Loaded Objects now: 6781.
+Memory consumption went from 227.0 MB to 226.9 MB.
+Total: 5.347600 ms (FindLiveObjects: 1.186900 ms CreateObjectMapping: 0.863600 ms MarkObjects: 3.031000 ms DeleteObjects: 0.263800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.046327 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.591 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1592ms)
+ BeginReloadAssembly (222ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (57ms)
+ EndReloadAssembly (1267ms)
+ LoadAssemblies (164ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (311ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (50ms)
+ SetupLoadedEditorAssemblies (748ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (620ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6796.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.351400 ms (FindLiveObjects: 0.467300 ms CreateObjectMapping: 0.312700 ms MarkObjects: 2.509000 ms DeleteObjects: 0.061200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.045051 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.721 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1722ms)
+ BeginReloadAssembly (226ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (61ms)
+ EndReloadAssembly (1381ms)
+ LoadAssemblies (173ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (368ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (54ms)
+ SetupLoadedEditorAssemblies (771ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (25ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (72ms)
+ ProcessInitializeOnLoadAttributes (635ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6811.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.188200 ms (FindLiveObjects: 0.540900 ms CreateObjectMapping: 0.313400 ms MarkObjects: 2.277800 ms DeleteObjects: 0.054900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.046584 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.615 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1616ms)
+ BeginReloadAssembly (210ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (72ms)
+ EndReloadAssembly (1293ms)
+ LoadAssemblies (150ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (350ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (44ms)
+ SetupLoadedEditorAssemblies (735ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (609ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6826.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.082400 ms (FindLiveObjects: 0.593400 ms CreateObjectMapping: 0.320500 ms MarkObjects: 2.113100 ms DeleteObjects: 0.054200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.079177 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.711 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1712ms)
+ BeginReloadAssembly (247ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (77ms)
+ EndReloadAssembly (1342ms)
+ LoadAssemblies (183ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (346ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (770ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (633ms)
+ ProcessInitializeOnLoadMethodAttributes (29ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6841.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.324400 ms (FindLiveObjects: 0.521300 ms CreateObjectMapping: 0.273300 ms MarkObjects: 2.468400 ms DeleteObjects: 0.060000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.053266 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.588 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1589ms)
+ BeginReloadAssembly (193ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (56ms)
+ EndReloadAssembly (1296ms)
+ LoadAssemblies (153ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (344ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (743ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (618ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6856.
+Memory consumption went from 225.1 MB to 225.0 MB.
+Total: 3.181500 ms (FindLiveObjects: 0.424300 ms CreateObjectMapping: 0.227100 ms MarkObjects: 2.465300 ms DeleteObjects: 0.063900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.043871 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.689 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1690ms)
+ BeginReloadAssembly (250ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (72ms)
+ EndReloadAssembly (1314ms)
+ LoadAssemblies (183ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (339ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (754ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (631ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6871.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 2.767100 ms (FindLiveObjects: 0.459600 ms CreateObjectMapping: 0.243300 ms MarkObjects: 2.013600 ms DeleteObjects: 0.049700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.058499 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.637 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1638ms)
+ BeginReloadAssembly (190ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (50ms)
+ EndReloadAssembly (1323ms)
+ LoadAssemblies (153ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (314ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (46ms)
+ SetupLoadedEditorAssemblies (769ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (66ms)
+ ProcessInitializeOnLoadAttributes (637ms)
+ ProcessInitializeOnLoadMethodAttributes (30ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6886.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 5.108100 ms (FindLiveObjects: 1.066100 ms CreateObjectMapping: 0.947300 ms MarkObjects: 3.015000 ms DeleteObjects: 0.078300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.051568 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.820 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1820ms)
+ BeginReloadAssembly (253ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (80ms)
+ EndReloadAssembly (1426ms)
+ LoadAssemblies (183ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (352ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (66ms)
+ SetupLoadedEditorAssemblies (798ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (26ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (91ms)
+ ProcessInitializeOnLoadAttributes (643ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6901.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 2.620000 ms (FindLiveObjects: 0.481300 ms CreateObjectMapping: 0.233200 ms MarkObjects: 1.864300 ms DeleteObjects: 0.040400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.063608 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.666 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1667ms)
+ BeginReloadAssembly (247ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (83ms)
+ EndReloadAssembly (1295ms)
+ LoadAssemblies (164ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (307ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (775ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (73ms)
+ ProcessInitializeOnLoadAttributes (640ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6916.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 3.827700 ms (FindLiveObjects: 0.896100 ms CreateObjectMapping: 0.485700 ms MarkObjects: 2.368900 ms DeleteObjects: 0.075300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.058215 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.634 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1635ms)
+ BeginReloadAssembly (211ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (64ms)
+ EndReloadAssembly (1320ms)
+ LoadAssemblies (148ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (335ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (51ms)
+ SetupLoadedEditorAssemblies (762ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (71ms)
+ ProcessInitializeOnLoadAttributes (632ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6931.
+Memory consumption went from 225.2 MB to 225.1 MB.
+Total: 3.265200 ms (FindLiveObjects: 0.549000 ms CreateObjectMapping: 0.315000 ms MarkObjects: 2.318200 ms DeleteObjects: 0.081900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.043309 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.783 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1784ms)
+ BeginReloadAssembly (280ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (80ms)
+ EndReloadAssembly (1348ms)
+ LoadAssemblies (210ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (361ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (746ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (613ms)
+ ProcessInitializeOnLoadMethodAttributes (31ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6946.
+Memory consumption went from 225.2 MB to 225.2 MB.
+Total: 3.737100 ms (FindLiveObjects: 0.516000 ms CreateObjectMapping: 0.269000 ms MarkObjects: 2.843700 ms DeleteObjects: 0.107200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.051659 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.942 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1943ms)
+ BeginReloadAssembly (278ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (66ms)
+ EndReloadAssembly (1473ms)
+ LoadAssemblies (248ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (421ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (49ms)
+ SetupLoadedEditorAssemblies (809ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (73ms)
+ ProcessInitializeOnLoadAttributes (666ms)
+ ProcessInitializeOnLoadMethodAttributes (31ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.89 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6961.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.869800 ms (FindLiveObjects: 1.240800 ms CreateObjectMapping: 0.349100 ms MarkObjects: 2.226000 ms DeleteObjects: 0.049500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.061288 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.586 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1587ms)
+ BeginReloadAssembly (206ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (68ms)
+ EndReloadAssembly (1275ms)
+ LoadAssemblies (156ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (304ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (757ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (63ms)
+ ProcessInitializeOnLoadAttributes (631ms)
+ ProcessInitializeOnLoadMethodAttributes (33ms)
+ AfterProcessingInitializeOnLoad (8ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 6976.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.179800 ms (FindLiveObjects: 0.583400 ms CreateObjectMapping: 0.265700 ms MarkObjects: 2.261500 ms DeleteObjects: 0.067700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.062503 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.57 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.706 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1707ms)
+ BeginReloadAssembly (211ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (67ms)
+ EndReloadAssembly (1389ms)
+ LoadAssemblies (158ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (332ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (52ms)
+ SetupLoadedEditorAssemblies (821ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (33ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (3ms)
+ BeforeProcessingInitializeOnLoad (90ms)
+ ProcessInitializeOnLoadAttributes (659ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 6991.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.025700 ms (FindLiveObjects: 0.506800 ms CreateObjectMapping: 0.389100 ms MarkObjects: 2.069500 ms DeleteObjects: 0.058900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.080082 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.785 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1786ms)
+ BeginReloadAssembly (256ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (75ms)
+ EndReloadAssembly (1409ms)
+ LoadAssemblies (194ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (367ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (812ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (72ms)
+ ProcessInitializeOnLoadAttributes (675ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7006.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 4.535200 ms (FindLiveObjects: 0.630300 ms CreateObjectMapping: 0.769300 ms MarkObjects: 3.001700 ms DeleteObjects: 0.132200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.070305 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.730 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1730ms)
+ BeginReloadAssembly (266ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (11ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (95ms)
+ EndReloadAssembly (1364ms)
+ LoadAssemblies (156ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (362ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (52ms)
+ SetupLoadedEditorAssemblies (792ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (85ms)
+ ProcessInitializeOnLoadAttributes (648ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7021.
+Memory consumption went from 225.3 MB to 225.2 MB.
+Total: 3.340800 ms (FindLiveObjects: 0.714800 ms CreateObjectMapping: 0.265900 ms MarkObjects: 2.302300 ms DeleteObjects: 0.056300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.053666 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.747 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1749ms)
+ BeginReloadAssembly (232ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (67ms)
+ EndReloadAssembly (1389ms)
+ LoadAssemblies (172ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (377ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (46ms)
+ SetupLoadedEditorAssemblies (790ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (74ms)
+ ProcessInitializeOnLoadAttributes (649ms)
+ ProcessInitializeOnLoadMethodAttributes (33ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7036.
+Memory consumption went from 225.3 MB to 225.3 MB.
+Total: 2.794100 ms (FindLiveObjects: 0.423000 ms CreateObjectMapping: 0.219100 ms MarkObjects: 2.089500 ms DeleteObjects: 0.061200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.063389 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.641 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1642ms)
+ BeginReloadAssembly (200ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (56ms)
+ EndReloadAssembly (1325ms)
+ LoadAssemblies (156ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (319ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (48ms)
+ SetupLoadedEditorAssemblies (786ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (649ms)
+ ProcessInitializeOnLoadMethodAttributes (28ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7051.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 2.956900 ms (FindLiveObjects: 0.486900 ms CreateObjectMapping: 0.280800 ms MarkObjects: 2.131500 ms DeleteObjects: 0.056900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.043354 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.81 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 2.014 seconds
+Domain Reload Profiling:
+ ReloadAssembly (2014ms)
+ BeginReloadAssembly (202ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (64ms)
+ EndReloadAssembly (1673ms)
+ LoadAssemblies (178ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (503ms)
+ ReleaseScriptCaches (3ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (864ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (32ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (80ms)
+ ProcessInitializeOnLoadAttributes (710ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7066.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 5.779800 ms (FindLiveObjects: 1.250000 ms CreateObjectMapping: 0.704300 ms MarkObjects: 3.661800 ms DeleteObjects: 0.160600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.048393 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.767 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1768ms)
+ BeginReloadAssembly (223ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (56ms)
+ EndReloadAssembly (1395ms)
+ LoadAssemblies (189ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (370ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (789ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (659ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.6 KB). Loaded Objects now: 7081.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 3.539400 ms (FindLiveObjects: 0.468400 ms CreateObjectMapping: 0.409500 ms MarkObjects: 2.616400 ms DeleteObjects: 0.044000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.086637 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.67 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.896 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1897ms)
+ BeginReloadAssembly (249ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (76ms)
+ EndReloadAssembly (1526ms)
+ LoadAssemblies (166ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (322ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (126ms)
+ SetupLoadedEditorAssemblies (858ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (3ms)
+ BeforeProcessingInitializeOnLoad (99ms)
+ ProcessInitializeOnLoadAttributes (681ms)
+ ProcessInitializeOnLoadMethodAttributes (28ms)
+ AfterProcessingInitializeOnLoad (19ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7096.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 2.619500 ms (FindLiveObjects: 0.526700 ms CreateObjectMapping: 0.253500 ms MarkObjects: 1.795700 ms DeleteObjects: 0.042800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.051135 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 2.141 seconds
+Domain Reload Profiling:
+ ReloadAssembly (2142ms)
+ BeginReloadAssembly (252ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (66ms)
+ EndReloadAssembly (1778ms)
+ LoadAssemblies (194ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (602ms)
+ ReleaseScriptCaches (4ms)
+ RebuildScriptCaches (61ms)
+ SetupLoadedEditorAssemblies (907ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (84ms)
+ ProcessInitializeOnLoadAttributes (762ms)
+ ProcessInitializeOnLoadMethodAttributes (25ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7111.
+Memory consumption went from 225.4 MB to 225.3 MB.
+Total: 5.449400 ms (FindLiveObjects: 0.998500 ms CreateObjectMapping: 1.304700 ms MarkObjects: 3.037900 ms DeleteObjects: 0.105600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.086364 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.577 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1578ms)
+ BeginReloadAssembly (219ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (57ms)
+ EndReloadAssembly (1244ms)
+ LoadAssemblies (156ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (305ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (738ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (19ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (64ms)
+ ProcessInitializeOnLoadAttributes (618ms)
+ ProcessInitializeOnLoadMethodAttributes (24ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7126.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 3.184000 ms (FindLiveObjects: 0.519100 ms CreateObjectMapping: 0.253700 ms MarkObjects: 2.362900 ms DeleteObjects: 0.047200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.052637 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.545 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1545ms)
+ BeginReloadAssembly (184ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (47ms)
+ EndReloadAssembly (1237ms)
+ LoadAssemblies (142ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (308ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (44ms)
+ SetupLoadedEditorAssemblies (722ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (64ms)
+ ProcessInitializeOnLoadAttributes (601ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7141.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 5.784900 ms (FindLiveObjects: 1.069200 ms CreateObjectMapping: 0.699400 ms MarkObjects: 3.913300 ms DeleteObjects: 0.100600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.045848 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.639 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1640ms)
+ BeginReloadAssembly (250ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (69ms)
+ EndReloadAssembly (1276ms)
+ LoadAssemblies (182ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (335ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (59ms)
+ SetupLoadedEditorAssemblies (706ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (65ms)
+ ProcessInitializeOnLoadAttributes (589ms)
+ ProcessInitializeOnLoadMethodAttributes (22ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7156.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 3.005900 ms (FindLiveObjects: 0.512600 ms CreateObjectMapping: 0.254400 ms MarkObjects: 2.192600 ms DeleteObjects: 0.045500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.108418 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.661 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1662ms)
+ BeginReloadAssembly (209ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (62ms)
+ EndReloadAssembly (1349ms)
+ LoadAssemblies (150ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (346ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (45ms)
+ SetupLoadedEditorAssemblies (793ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (27ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (78ms)
+ ProcessInitializeOnLoadAttributes (636ms)
+ ProcessInitializeOnLoadMethodAttributes (36ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7171.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 5.819500 ms (FindLiveObjects: 1.029300 ms CreateObjectMapping: 0.959500 ms MarkObjects: 3.704200 ms DeleteObjects: 0.123100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.045533 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.829 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1830ms)
+ BeginReloadAssembly (212ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (51ms)
+ EndReloadAssembly (1502ms)
+ LoadAssemblies (174ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (330ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (866ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (23ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (70ms)
+ ProcessInitializeOnLoadAttributes (724ms)
+ ProcessInitializeOnLoadMethodAttributes (33ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7186.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 3.312400 ms (FindLiveObjects: 0.527800 ms CreateObjectMapping: 0.298800 ms MarkObjects: 2.404600 ms DeleteObjects: 0.080000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.051720 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.554 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1555ms)
+ BeginReloadAssembly (182ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (48ms)
+ EndReloadAssembly (1249ms)
+ LoadAssemblies (142ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (312ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (732ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (64ms)
+ ProcessInitializeOnLoadAttributes (611ms)
+ ProcessInitializeOnLoadMethodAttributes (26ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (13ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7201.
+Memory consumption went from 225.5 MB to 225.4 MB.
+Total: 2.766100 ms (FindLiveObjects: 0.460200 ms CreateObjectMapping: 0.256200 ms MarkObjects: 2.003300 ms DeleteObjects: 0.045200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.096677 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 8.995 seconds
+Domain Reload Profiling:
+ ReloadAssembly (8998ms)
+ BeginReloadAssembly (1063ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (361ms)
+ EndReloadAssembly (7463ms)
+ LoadAssemblies (680ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (2462ms)
+ ReleaseScriptCaches (8ms)
+ RebuildScriptCaches (621ms)
+ SetupLoadedEditorAssemblies (3107ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (109ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (5ms)
+ BeforeProcessingInitializeOnLoad (645ms)
+ ProcessInitializeOnLoadAttributes (2224ms)
+ ProcessInitializeOnLoadMethodAttributes (95ms)
+ AfterProcessingInitializeOnLoad (28ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (18ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 4.03 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7216.
+Memory consumption went from 225.5 MB to 225.5 MB.
+Total: 4.782700 ms (FindLiveObjects: 0.863400 ms CreateObjectMapping: 0.469300 ms MarkObjects: 3.261900 ms DeleteObjects: 0.184800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031043 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.783 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1784ms)
+ BeginReloadAssembly (180ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (43ms)
+ EndReloadAssembly (1478ms)
+ LoadAssemblies (166ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (417ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (49ms)
+ SetupLoadedEditorAssemblies (816ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (26ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (77ms)
+ ProcessInitializeOnLoadAttributes (672ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (12ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.8 KB). Loaded Objects now: 7231.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 3.267300 ms (FindLiveObjects: 0.666700 ms CreateObjectMapping: 0.299100 ms MarkObjects: 2.207800 ms DeleteObjects: 0.092700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.033666 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.505 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1505ms)
+ BeginReloadAssembly (175ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (44ms)
+ EndReloadAssembly (1219ms)
+ LoadAssemblies (141ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (332ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (38ms)
+ SetupLoadedEditorAssemblies (700ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (63ms)
+ ProcessInitializeOnLoadAttributes (587ms)
+ ProcessInitializeOnLoadMethodAttributes (23ms)
+ AfterProcessingInitializeOnLoad (8ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (8ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7246.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 2.653800 ms (FindLiveObjects: 0.430500 ms CreateObjectMapping: 0.213100 ms MarkObjects: 1.965300 ms DeleteObjects: 0.044000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031633 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.654 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1655ms)
+ BeginReloadAssembly (181ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (44ms)
+ EndReloadAssembly (1357ms)
+ LoadAssemblies (160ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (345ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (785ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (75ms)
+ ProcessInitializeOnLoadAttributes (644ms)
+ ProcessInitializeOnLoadMethodAttributes (32ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7261.
+Memory consumption went from 225.6 MB to 225.5 MB.
+Total: 2.784000 ms (FindLiveObjects: 0.458700 ms CreateObjectMapping: 0.246200 ms MarkObjects: 2.002200 ms DeleteObjects: 0.076000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031370 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.676 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1676ms)
+ BeginReloadAssembly (162ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ EndReloadAssembly (1391ms)
+ LoadAssemblies (158ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (369ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (48ms)
+ SetupLoadedEditorAssemblies (784ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (22ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (71ms)
+ ProcessInitializeOnLoadAttributes (650ms)
+ ProcessInitializeOnLoadMethodAttributes (30ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (9ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 3.12 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7276.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 3.205800 ms (FindLiveObjects: 0.613700 ms CreateObjectMapping: 0.309400 ms MarkObjects: 2.216000 ms DeleteObjects: 0.065800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.038870 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.585 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1585ms)
+ BeginReloadAssembly (177ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (41ms)
+ EndReloadAssembly (1280ms)
+ LoadAssemblies (168ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (338ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (725ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (20ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (63ms)
+ ProcessInitializeOnLoadAttributes (609ms)
+ ProcessInitializeOnLoadMethodAttributes (22ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (10ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7291.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 3.009000 ms (FindLiveObjects: 0.563900 ms CreateObjectMapping: 0.267000 ms MarkObjects: 2.078300 ms DeleteObjects: 0.097900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.037651 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.739 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1740ms)
+ BeginReloadAssembly (160ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (42ms)
+ EndReloadAssembly (1455ms)
+ LoadAssemblies (144ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (383ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (820ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (29ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (68ms)
+ ProcessInitializeOnLoadAttributes (669ms)
+ ProcessInitializeOnLoadMethodAttributes (37ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 2.37 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7306.
+Memory consumption went from 225.7 MB to 225.6 MB.
+Total: 4.445300 ms (FindLiveObjects: 0.622400 ms CreateObjectMapping: 0.594900 ms MarkObjects: 3.156400 ms DeleteObjects: 0.070300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.042220 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.569 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1570ms)
+ BeginReloadAssembly (179ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (43ms)
+ EndReloadAssembly (1270ms)
+ LoadAssemblies (165ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (320ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (41ms)
+ SetupLoadedEditorAssemblies (730ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (18ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (63ms)
+ ProcessInitializeOnLoadAttributes (610ms)
+ ProcessInitializeOnLoadMethodAttributes (27ms)
+ AfterProcessingInitializeOnLoad (9ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7321.
+Memory consumption went from 225.7 MB to 225.7 MB.
+Total: 3.502600 ms (FindLiveObjects: 0.544000 ms CreateObjectMapping: 0.372800 ms MarkObjects: 2.543700 ms DeleteObjects: 0.040900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Registering precompiled user dll's ...
+Registered in 0.031764 seconds.
+Begin MonoManager ReloadAssembly
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.633 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1634ms)
+ BeginReloadAssembly (165ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (44ms)
+ EndReloadAssembly (1358ms)
+ LoadAssemblies (146ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (349ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (50ms)
+ SetupLoadedEditorAssemblies (780ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (21ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (69ms)
+ ProcessInitializeOnLoadAttributes (651ms)
+ ProcessInitializeOnLoadMethodAttributes (28ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (11ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 6330 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 83 unused Assets / (93.7 KB). Loaded Objects now: 7336.
+Memory consumption went from 225.8 MB to 225.7 MB.
+Total: 2.786700 ms (FindLiveObjects: 0.574800 ms CreateObjectMapping: 0.258600 ms MarkObjects: 1.907200 ms DeleteObjects: 0.044700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
diff --git a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log
new file mode 100644
index 00000000..68620190
--- /dev/null
+++ b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log
@@ -0,0 +1,6 @@
+Base path: 'D:/Unity/2021.3.35f1/Editor/Data', plugins path 'D:/Unity/2021.3.35f1/Editor/Data/PlaybackEngines'
+Cmd: initializeCompiler
+
+Unhandled exception: Protocol error - failed to read magic number. Error code 0x80000004 (Not connected). (transferred 0/4)
+
+Quitting shader compiler process
diff --git a/JNFrame2/UserSettings/Layouts/default-2021.dwlt b/JNFrame2/UserSettings/Layouts/default-2021.dwlt
index 6ba3d92d..5810698c 100644
--- a/JNFrame2/UserSettings/Layouts/default-2021.dwlt
+++ b/JNFrame2/UserSettings/Layouts/default-2021.dwlt
@@ -119,7 +119,7 @@ MonoBehaviour:
m_MinSize: {x: 400, y: 200}
m_MaxSize: {x: 32384, y: 16192}
vertical: 0
- controlID: 144
+ controlID: 39
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -144,7 +144,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 1
- controlID: 23
+ controlID: 67
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -170,7 +170,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 100}
m_MaxSize: {x: 24288, y: 8096}
vertical: 0
- controlID: 24
+ controlID: 104
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -394,9 +394,9 @@ MonoBehaviour:
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
- m_SelectedIDs:
+ m_SelectedIDs: c84a0000
m_LastClickedID: 0
- m_ExpandedIDs: e6caffff3ccbfffffacdfffffecdffff30d2ffff86d2ffff48d5ffff50d5ffff7ad8ffff16fbffff5c730000
+ m_ExpandedIDs: 16fbffff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -729,14 +729,14 @@ MonoBehaviour:
m_OverrideSceneCullingMask: 6917529027641081856
m_SceneIsLit: 1
m_SceneLighting: 1
- m_2DMode: 1
+ m_2DMode: 0
m_isRotationLocked: 0
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
- m_Target: {x: 364.1633, y: 146.86098, z: -12.584361}
+ m_Target: {x: 40.998676, y: 35.7221, z: -22.265503}
speed: 2
- m_Value: {x: 364.1633, y: 146.86098, z: -12.584361}
+ m_Value: {x: 40.998676, y: 35.7221, z: -22.265503}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -765,17 +765,17 @@ MonoBehaviour:
m_Size: {x: 0, y: 0}
yGrid:
m_Fade:
- m_Target: 0
+ m_Target: 1
speed: 2
- m_Value: 0
+ m_Value: 1
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
m_Pivot: {x: 0, y: 0, z: 0}
m_Size: {x: 1, y: 1}
zGrid:
m_Fade:
- m_Target: 1
+ m_Target: 0
speed: 2
- m_Value: 1
+ m_Value: 0
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
m_Pivot: {x: 0, y: 0, z: 0}
m_Size: {x: 1, y: 1}
@@ -783,17 +783,17 @@ MonoBehaviour:
m_GridAxis: 1
m_gridOpacity: 0.5
m_Rotation:
- m_Target: {x: 0, y: 0, z: 0, w: 1}
+ m_Target: {x: -0.30956468, y: -0.05644073, z: 0.018410673, w: -0.9490255}
speed: 2
- m_Value: {x: 0, y: 0, z: 0, w: 1}
+ m_Value: {x: -0.30956405, y: -0.056440614, z: 0.018410636, w: -0.9490236}
m_Size:
- m_Target: 238.86409
+ m_Target: 2.598076
speed: 2
- m_Value: 238.86409
+ m_Value: 2.598076
m_Ortho:
- m_Target: 1
+ m_Target: 0
speed: 2
- m_Value: 1
+ m_Value: 0
m_CameraSettings:
m_Speed: 1
m_SpeedNormalized: 0.5
@@ -883,23 +883,23 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- - Assets/Scenes
+ - Assets/JNGame
m_Globs: []
m_OriginalText:
m_FilterByTypeIntersection: 0
m_ViewMode: 1
m_StartGridSize: 96
m_LastFolders:
- - Assets/Scenes
+ - Assets/JNGame
m_LastFoldersGridSize: 96
m_LastProjectPath: D:\myproject\JisolGame\JNFrame2
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
- m_SelectedIDs: 4e750000
- m_LastClickedID: 30030
- m_ExpandedIDs: 00000000d0740000d2740000d4740000d6740000d8740000da740000dc740000de740000e0740000e2740000e4740000e6740000e8740000ea740000ec74000000ca9a3bffffff7f
+ m_SelectedIDs: 84740000
+ m_LastClickedID: 29828
+ m_ExpandedIDs: 000000000a7400000c7400000e74000010740000127400001474000016740000187400001a7400001c7400001e7400002074000022740000247400002674000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -927,7 +927,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
- m_ExpandedIDs: 00000000d0740000d2740000d4740000d6740000d8740000da740000dc740000de740000e0740000e2740000e4740000e6740000e8740000ea740000ec740000
+ m_ExpandedIDs: 000000000a7400000c7400000e74000010740000127400001474000016740000187400001a7400001c7400001e74000020740000227400002474000026740000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -952,8 +952,8 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
- m_SelectedInstanceIDs: 7a750000
- m_LastClickedInstanceID: 30074
+ m_SelectedInstanceIDs: c84a0000
+ m_LastClickedInstanceID: 19144
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c623000000000000
m_RenameOverlay: