diff --git a/JNFrame/Assembly-CSharp.csproj b/JNFrame/Assembly-CSharp.csproj index a76c7f2a..4edfe41c 100644 --- a/JNFrame/Assembly-CSharp.csproj +++ b/JNFrame/Assembly-CSharp.csproj @@ -52,6 +52,7 @@ + diff --git a/JNFrame/Assets/Game/Plugins/App/App.cs b/JNFrame/Assets/Game/Plugins/App/App.cs index 24694189..ec86d7bc 100644 --- a/JNFrame/Assets/Game/Plugins/App/App.cs +++ b/JNFrame/Assets/Game/Plugins/App/App.cs @@ -8,7 +8,7 @@ namespace Game.Plugins.App public static readonly JNGSocket Socket = new JNGSocket(); public static readonly JNGSyncFrame Sync = new JNGSyncFrame(); - public static readonly JAPI Api = new(new JAPIConfig(){BaseURL = "http://192.168.0.120:8080"}); + public static readonly JAPI Api = new(new JAPIConfig(){BaseURL = "http://127.0.0.1:8080"}); public static readonly EventDispatcher Event = EventDispatcher.Event; public static SystemBase[] System() diff --git a/JNFrame/Assets/Game/Plugins/App/JNGSocket.cs b/JNFrame/Assets/Game/Plugins/App/JNGSocket.cs index a0c9e81d..19edea12 100644 --- a/JNFrame/Assets/Game/Plugins/App/JNGSocket.cs +++ b/JNFrame/Assets/Game/Plugins/App/JNGSocket.cs @@ -8,7 +8,7 @@ namespace Game.Plugins.App protected override async UniTask GetUrl() { await UniTask.NextFrame(); - return "ws://192.168.0.120:8080/websocket"; + return "ws://127.0.0.1:8080/websocket"; } } } \ No newline at end of file diff --git a/JNFrame/Assets/Game/Plugins/App/JNGSyncFrame.cs b/JNFrame/Assets/Game/Plugins/App/JNGSyncFrame.cs index 7c40aaee..b81e42ad 100644 --- a/JNFrame/Assets/Game/Plugins/App/JNGSyncFrame.cs +++ b/JNFrame/Assets/Game/Plugins/App/JNGSyncFrame.cs @@ -1,4 +1,5 @@ -using Cysharp.Threading.Tasks; +using System; +using Cysharp.Threading.Tasks; using Plugins.JNGame.Network.Action; using Plugins.JNGame.Sync.Frame; using UnityEngine; @@ -16,17 +17,23 @@ namespace Game.Plugins.App protected override async UniTask OnServerData(int start, int end) { Debug.Log($"OnServerData - {start}"); - var data = (await App.Api.GetByte($"/sync/frame?start={start}")); - if (data is { Length: > 0 }) + try { - JNFrameInfos info = JNFrameInfos.Parser.ParseFrom(data); - Debug.Log($"OnServerData - {start} 结束"); - return info; + var data = (await App.Api.GetByte($"/sync/frame?start={start}")); + if (data is { Length: > 0 }) + { + JNFrameInfos info = JNFrameInfos.Parser.ParseFrom(data); + Debug.Log($"OnServerData - {start} 结束"); + return info; + } } - else + catch(Exception e) { - return new JNFrameInfos(); + // ignored + Debug.LogError(e.Message); } + + return new JNFrameInfos(); } } } \ No newline at end of file diff --git a/JNFrame/Assets/Game/Plugins/App/Sync/JNGSyncFrameEntrust.cs b/JNFrame/Assets/Game/Plugins/App/Sync/JNGSyncFrameEntrust.cs index ad9461ae..0347c101 100644 --- a/JNFrame/Assets/Game/Plugins/App/Sync/JNGSyncFrameEntrust.cs +++ b/JNFrame/Assets/Game/Plugins/App/Sync/JNGSyncFrameEntrust.cs @@ -23,7 +23,7 @@ namespace Game.Plugins.App.Sync .Where(item => !(item is IJNSyncFrameComponent)) .Where(item => !(item is Transform)) .Where(item => !(allow.Contains(item))); - + Debug.Log($"{this.NID} 有{Components.Count()}组件不是同步组件 尝试接管同步 请保证被接管的组件有enabled 同时被接管的组件 enabled 禁止修改"); foreach (var component in Components) diff --git a/JNFrame/Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/ExampleScripts/MineBotAnimation.cs b/JNFrame/Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/ExampleScripts/MineBotAnimation.cs index 7bd94f25..59c0c0a2 100644 --- a/JNFrame/Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/ExampleScripts/MineBotAnimation.cs +++ b/JNFrame/Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/ExampleScripts/MineBotAnimation.cs @@ -71,6 +71,7 @@ namespace Pathfinding.Examples { // Speed relative to the character size anim.SetFloat("NormalizedSpeed", relVelocity.magnitude / anim.transform.lossyScale.x); + anim.Update((float)dt / 1000); } } } diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Network/JNSocket.cs b/JNFrame/Assets/Game/Plugins/JNGame/Network/JNSocket.cs index 34861ea4..792ab80a 100644 --- a/JNFrame/Assets/Game/Plugins/JNGame/Network/JNSocket.cs +++ b/JNFrame/Assets/Game/Plugins/JNGame/Network/JNSocket.cs @@ -77,7 +77,7 @@ namespace Plugins.JNGame.Network private void Onbinary(WebSocket websocket, byte[] data) { - NSystem.Log($"[JNSocket] Onbinary"); + // NSystem.Log($"[JNSocket] Onbinary"); Dispatch(NDataUtil.Parse(data)); } diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time.meta b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time.meta new file mode 100644 index 00000000..d4a933ef --- /dev/null +++ b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 9606b3aa4a2d4390890ae975ea7567d3 +timeCreated: 1707030980 \ No newline at end of file diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs new file mode 100644 index 00000000..a4f2f423 --- /dev/null +++ b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Plugins.JNGame.Util; + +namespace Plugins.JNGame.Sync.Frame.game.Time +{ + + + public class JNFrameTimeHandler + { + public int ID; + public Action Handler; + public int Timeout; + } + + //帧同步定时器 + public class JNFrameTime : Singleton + { + + private int _id = 0; + private List _handlers = new(); + + //设置定时器 + public int SetTimeout(Action handler,int timeout = 0) + { + var funHandler = new JNFrameTimeHandler() + { + ID = this._id++, + Handler = handler, + Timeout = timeout + }; + this._handlers.Add(funHandler); + return funHandler.ID; + } + + public void Update(int dt) + { + + this._handlers.ToList().ForEach(action => + { + action.Timeout -= dt; + if (action.Timeout <= 0) + { + action.Handler(); + this._handlers.Remove(action); + } + }); + + } + + } +} \ No newline at end of file diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs.meta b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs.meta new file mode 100644 index 00000000..5832f25f --- /dev/null +++ b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: d96b5b6d30384c7482ce18479c06ebfb +timeCreated: 1707030984 \ No newline at end of file diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs index 52c46218..3af8f751 100644 --- a/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs +++ b/JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs @@ -7,6 +7,7 @@ using Cysharp.Threading.Tasks; using Google.Protobuf; using Plugins.JNGame.Sync.Frame.Entity; using Plugins.JNGame.Sync.Frame.game; +using Plugins.JNGame.Sync.Frame.game.Time; using Plugins.JNGame.System; using Plugins.JNGame.Util; using UnityEngine; @@ -33,7 +34,7 @@ namespace Plugins.JNGame.Sync.Frame //大于多少帧进行快速追帧 private int _nMaxFrameLoopBan = 18; //将服务器帧数进行平分 - private int _nDivideFrame = 3; + private int _nDivideFrame = 2; public int NSyncTime => _nSyncTime; public int NMaxFrameBan => _nMaxFrameBan; @@ -85,6 +86,10 @@ namespace Plugins.JNGame.Sync.Frame int dtTotal = 0; //输入更新 int dtInputTotal = 0; + + //是否在追帧 + private Boolean _isLoop = false; + public bool IsLoop => _isLoop; public JNTime Time => (new JNTime(this)); @@ -122,7 +127,10 @@ namespace Plugins.JNGame.Sync.Frame this.dtInputTotal = 0; this._isRequestServerData = false; - Physics.SyncTransforms(); + //清除定时器 + SingletonUtil.Clean(); + + // Physics.SyncTransforms(); EventDispatcher.Event.Dispatch(JNSyncFrameEvent.CREATE); } @@ -140,6 +148,7 @@ namespace Plugins.JNGame.Sync.Frame if(nSyncTime > 0){ while(nSyncTime != 0 && this.dtTotal > nSyncTime){ + this._isLoop = false; this.OnUpdate(); this.dtTotal -= nSyncTime; nSyncTime = this.DyTime(); @@ -147,7 +156,9 @@ namespace Plugins.JNGame.Sync.Frame }else{ //追帧运行 保持前端 15 帧 刷新 long endTime = (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) + 66; - while(this.DyTime() == 0 && (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) < endTime){ + while(this.DyTime() == 0 && (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) < endTime) + { + this._isLoop = true; this.OnUpdate(); } dtTotal = 0; @@ -211,7 +222,7 @@ namespace Plugins.JNGame.Sync.Frame inputs[message.NId] = message; } - Debug.Log(inputs.Count); + // Debug.Log(inputs.Count); //运行之前帧 this._nSyncActors.ToList().ForEach(child => @@ -243,9 +254,11 @@ namespace Plugins.JNGame.Sync.Frame } }); - //执行下一帧物理 - Physics.Simulate((float)dt / 1000); - Physics.SyncTransforms(); + //执行定时器 + SingletonUtil.Instance.Update(dt); + // //执行下一帧物理 + // Physics.Simulate((float)dt / 1000); + // Physics.SyncTransforms(); } diff --git a/JNFrame/Assets/Game/Plugins/JNGame/Util/Singleton.cs b/JNFrame/Assets/Game/Plugins/JNGame/Util/Singleton.cs index 5feb03d6..f6658e72 100644 --- a/JNFrame/Assets/Game/Plugins/JNGame/Util/Singleton.cs +++ b/JNFrame/Assets/Game/Plugins/JNGame/Util/Singleton.cs @@ -15,7 +15,8 @@ public static void Clean() { - Singleton.ins.Clean(); + if(Singleton.ins != null) + Singleton.ins.Clean(); Singleton.ins = null; } diff --git a/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab b/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab index 05c4812e..b08e8dde 100644 --- a/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab +++ b/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab @@ -11,12 +11,12 @@ GameObject: - component: {fileID: 4954587615955870202} - component: {fileID: 860618204808115368} - component: {fileID: 5015953210996162854} - - component: {fileID: 2351950405008071142} - component: {fileID: 547514512587057512} - component: {fileID: 6805233412966097210} - component: {fileID: 1147615059965528429} - component: {fileID: 4780769471509017217} - component: {fileID: 345950735762528131} + - component: {fileID: 8400891744945266613} m_Layer: 8 m_Name: Bot m_TagString: Untagged @@ -54,7 +54,8 @@ MonoBehaviour: m_EditorClassIdentifier: _nId: 0 isSyncInitSuccess: 0 - allow: [] + allow: + - {fileID: 6805233412966097210} --- !u!114 &5015953210996162854 MonoBehaviour: m_ObjectHideFlags: 0 @@ -85,50 +86,6 @@ MonoBehaviour: tagPenalties: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 graphMask: value: -1 ---- !u!114 &2351950405008071142 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 505715710780844734} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f6eb1402c17e84a9282a7f0f62eb584f, type: 3} - m_Name: - m_EditorClassIdentifier: - _nId: 0 - isSyncInitSuccess: 0 - version: 5 - radius: 0.35 - height: 0.87 - canMove: 1 - maxSpeed: 4 - gravity: {x: NaN, y: NaN, z: NaN} - groundMask: - serializedVersion: 2 - m_Bits: 4294967295 - centerOffsetCompatibility: NaN - repathRateCompatibility: 0.2 - canSearchCompability: 1 - orientation: 0 - enableRotation: 1 - autoRepath: - mode: 2 - period: 0.2 - sensitivity: 10 - maximumPeriod: 1 - visualizeSensitivity: 0 - targetCompatibility: {fileID: 0} - maxAcceleration: -2.5 - rotationSpeed: 540 - slowdownDistance: 0.6 - pickNextWaypointDist: 1.5 - endReachedDistance: 0.05 - alwaysDrawGizmos: 0 - slowWhenNotFacingTarget: 1 - whenCloseToDestination: 0 - constrainInsideGraph: 0 --- !u!114 &547514512587057512 MonoBehaviour: m_ObjectHideFlags: 0 @@ -221,6 +178,52 @@ MonoBehaviour: _nId: 0 isSyncInitSuccess: 0 key: 0 + isRobot: 0 + target: {x: 0, y: 0, z: 0} +--- !u!114 &8400891744945266613 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 505715710780844734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 459952d6a3efe0145b231a636579f95c, type: 3} + m_Name: + m_EditorClassIdentifier: + _nId: 0 + isSyncInitSuccess: 0 + version: 5 + radius: 0.35 + height: 0.87 + canMove: 1 + maxSpeed: 5 + gravity: {x: NaN, y: NaN, z: NaN} + groundMask: + serializedVersion: 2 + m_Bits: 4294967295 + centerOffsetCompatibility: NaN + repathRateCompatibility: NaN + canSearchCompability: 0 + orientation: 0 + enableRotation: 1 + autoRepath: + mode: 2 + period: 0.5 + sensitivity: 10 + maximumPeriod: 2 + visualizeSensitivity: 0 + targetCompatibility: {fileID: 0} + maxAcceleration: -2.5 + rotationSpeed: 360 + slowdownDistance: 0.6 + pickNextWaypointDist: 2 + endReachedDistance: 0.2 + alwaysDrawGizmos: 0 + slowWhenNotFacingTarget: 1 + whenCloseToDestination: 0 + constrainInsideGraph: 0 --- !u!1001 &3512763435436934207 PrefabInstance: m_ObjectHideFlags: 0 @@ -324,8 +327,31 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] - m_AddedComponents: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2402233671515968589, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3} + insertIndex: 1 + addedObject: {fileID: 8507333172764042117} m_SourcePrefab: {fileID: 100100000, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3} +--- !u!1 &1290744670267248754 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2402233671515968589, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3} + m_PrefabInstance: {fileID: 3512763435436934207} + m_PrefabAsset: {fileID: 0} +--- !u!114 &8507333172764042117 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1290744670267248754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 32f8b8b7207b1a24ea68368f6a1a91b9, type: 3} + m_Name: + m_EditorClassIdentifier: + _nId: 0 + isSyncInitSuccess: 0 + allow: [] --- !u!4 &1290744670267477074 stripped Transform: m_CorrespondingSourceObject: {fileID: 2402233671516325997, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3} diff --git a/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity b/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity index 3c6ac013..8ebb5624 100644 --- a/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity +++ b/JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity @@ -116,7 +116,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &12 GameObject: @@ -135,7 +135,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &13 GameObject: @@ -154,7 +154,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &14 GameObject: @@ -173,7 +173,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &15 GameObject: @@ -192,7 +192,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &16 GameObject: @@ -211,7 +211,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &17 GameObject: @@ -230,7 +230,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &18 GameObject: @@ -249,7 +249,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &19 GameObject: @@ -268,7 +268,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &20 GameObject: @@ -287,7 +287,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &21 GameObject: @@ -306,7 +306,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &22 GameObject: @@ -325,7 +325,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &23 GameObject: @@ -344,7 +344,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &24 GameObject: @@ -363,7 +363,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &25 GameObject: @@ -382,7 +382,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &26 GameObject: @@ -401,7 +401,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &27 GameObject: @@ -420,7 +420,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &28 GameObject: @@ -439,7 +439,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &29 GameObject: @@ -458,7 +458,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &30 GameObject: @@ -477,7 +477,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &31 GameObject: @@ -496,7 +496,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &32 GameObject: @@ -515,7 +515,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &33 GameObject: @@ -534,7 +534,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &34 GameObject: @@ -553,7 +553,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &35 GameObject: @@ -572,7 +572,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &36 GameObject: @@ -591,7 +591,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &37 GameObject: @@ -610,7 +610,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &38 GameObject: @@ -629,7 +629,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &39 GameObject: @@ -648,7 +648,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &40 GameObject: @@ -667,7 +667,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &41 GameObject: @@ -686,7 +686,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &42 GameObject: @@ -705,7 +705,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &43 GameObject: @@ -724,7 +724,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &44 GameObject: @@ -743,7 +743,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &45 GameObject: @@ -794,7 +794,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &48 GameObject: @@ -813,7 +813,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &49 GameObject: @@ -832,7 +832,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &50 GameObject: @@ -851,7 +851,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &51 GameObject: @@ -870,7 +870,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &52 GameObject: @@ -889,7 +889,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &53 GameObject: @@ -908,7 +908,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &54 GameObject: @@ -927,7 +927,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &55 GameObject: @@ -946,7 +946,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &56 GameObject: @@ -965,7 +965,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &57 GameObject: @@ -984,7 +984,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &58 GameObject: @@ -1003,7 +1003,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &59 GameObject: @@ -1022,7 +1022,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &60 GameObject: @@ -1041,7 +1041,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &61 GameObject: @@ -1060,7 +1060,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &62 GameObject: @@ -1079,7 +1079,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &63 GameObject: @@ -1098,7 +1098,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &64 GameObject: @@ -1117,7 +1117,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &65 GameObject: @@ -1136,7 +1136,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &66 GameObject: @@ -1155,7 +1155,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &67 GameObject: @@ -1174,7 +1174,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &68 GameObject: @@ -1193,7 +1193,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &69 GameObject: @@ -1212,7 +1212,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &70 GameObject: @@ -1231,7 +1231,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &71 GameObject: @@ -1250,7 +1250,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &72 GameObject: @@ -1269,7 +1269,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &73 GameObject: @@ -1288,7 +1288,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &74 GameObject: @@ -1307,7 +1307,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &75 GameObject: @@ -1326,7 +1326,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &76 GameObject: @@ -1345,7 +1345,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &77 GameObject: @@ -1364,7 +1364,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &78 GameObject: @@ -1383,7 +1383,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &79 GameObject: @@ -1402,7 +1402,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &80 GameObject: @@ -1421,7 +1421,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &81 GameObject: @@ -1440,7 +1440,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &82 GameObject: @@ -1459,7 +1459,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &83 GameObject: @@ -1478,7 +1478,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &84 GameObject: @@ -1497,7 +1497,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &85 GameObject: @@ -1516,7 +1516,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &86 GameObject: @@ -1535,7 +1535,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &87 GameObject: @@ -1554,7 +1554,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &88 GameObject: @@ -1573,7 +1573,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &89 GameObject: @@ -1592,7 +1592,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &109 GameObject: @@ -1611,7 +1611,7 @@ GameObject: m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 + m_StaticEditorFlags: 0 m_IsActive: 1 --- !u!1 &110 GameObject: @@ -1797,7 +1797,7 @@ Transform: m_GameObject: {fileID: 19} serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 7.79195, y: 30.101498, z: -27.93608} + m_LocalPosition: {x: 7.79195, y: 30.3, z: -27.93608} m_LocalScale: {x: 3, y: 2, z: 3} m_ConstrainProportionsScale: 0 m_Children: [] @@ -8686,7 +8686,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 78396926cbbfc4ac3b48fc5fc34a87d1, type: 3} m_Name: m_EditorClassIdentifier: - _nId: 5 + _nId: 0 isSyncInitSuccess: 0 version: 1 data: @@ -8865,55 +8865,6 @@ LightingSettings: m_PVRTiledBaking: 0 m_NumRaysToShootPerTexel: -1 m_RespectSceneVisibilityWhenBakingGI: 0 ---- !u!1 &467558785 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 467558787} - - component: {fileID: 467558786} - m_Layer: 0 - m_Name: UI - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &467558786 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 467558785} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e61b94b311b605b4195e022f5370e558, type: 3} - m_Name: - m_EditorClassIdentifier: - mode: {fileID: 855056720} - cam: {fileID: 502858440} - mask: - serializedVersion: 2 - m_Bits: 1 ---- !u!4 &467558787 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 467558785} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &502858437 GameObject: m_ObjectHideFlags: 0 @@ -9096,4 +9047,3 @@ SceneRoots: m_ObjectHideFlags: 0 m_Roots: - {fileID: 855056719} - - {fileID: 467558787} diff --git a/JNFrame/Assets/Game/Scenes/UIScene.unity b/JNFrame/Assets/Game/Scenes/UIScene.unity index c4f6dd36..b92ba18d 100644 --- a/JNFrame/Assets/Game/Scenes/UIScene.unity +++ b/JNFrame/Assets/Game/Scenes/UIScene.unity @@ -104,7 +104,7 @@ NavMeshSettings: serializedVersion: 2 m_ObjectHideFlags: 0 m_BuildSettings: - serializedVersion: 2 + serializedVersion: 3 agentTypeID: 0 agentRadius: 0.5 agentHeight: 2 @@ -117,12 +117,145 @@ NavMeshSettings: cellSize: 0.16666667 manualTileSize: 0 tileSize: 256 - accuratePlacement: 0 + buildHeightMesh: 0 maxJobWorkers: 0 preserveTilesOutsideBounds: 0 debug: m_Flags: 0 m_NavMeshData: {fileID: 0} +--- !u!1 &81288984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 81288985} + - component: {fileID: 81288988} + - component: {fileID: 81288987} + - component: {fileID: 81288986} + m_Layer: 5 + m_Name: Button (Legacy) (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &81288985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81288984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1291200674} + m_Father: {fileID: 878636056} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 225, y: 104} + m_SizeDelta: {x: 180, y: 80} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &81288986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81288984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 81288987} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1911778723} + m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp + m_MethodName: OnClickJoinGame + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &81288987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81288984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &81288988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81288984} + m_CullTransparentMesh: 1 --- !u!1 &121702108 GameObject: m_ObjectHideFlags: 0 @@ -154,7 +287,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 2008468464} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} @@ -234,7 +366,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 878636056} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} @@ -359,7 +490,9 @@ Canvas: m_OverrideSorting: 0 m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 m_SortingLayerID: 0 m_SortingOrder: 0 m_TargetDisplay: 0 @@ -375,10 +508,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 1039426510} - {fileID: 2008468464} + - {fileID: 81288985} + - {fileID: 1188520222} - {fileID: 178957020} m_Father: {fileID: 1911778722} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} @@ -416,9 +551,17 @@ Camera: m_projectionMatrixMode: 1 m_GateFitMode: 2 m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 m_SensorSize: {x: 36, y: 24} m_LensShift: {x: 0, y: 0} - m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -458,7 +601,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1911778722} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -525,14 +667,437 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1035522521} + serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1911778722} - m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1039426509 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1039426510} + - component: {fileID: 1039426513} + - component: {fileID: 1039426512} + - component: {fileID: 1039426511} + m_Layer: 5 + m_Name: Button (Legacy) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1039426510 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039426509} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 878636056} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1039426511 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039426509} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1039426512} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1911778723} + m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp + m_MethodName: OnClickScene + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1039426512 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039426509} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1039426513 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039426509} + m_CullTransparentMesh: 1 +--- !u!1 &1188520221 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1188520222} + - component: {fileID: 1188520225} + - component: {fileID: 1188520224} + - component: {fileID: 1188520223} + m_Layer: 5 + m_Name: Button (Legacy) (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1188520222 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1188520221} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1282136035} + m_Father: {fileID: 878636056} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: -234, y: 104} + m_SizeDelta: {x: 180, y: 80} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1188520223 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1188520221} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1188520224} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1911778723} + m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp + m_MethodName: OnClickJoinRobot + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1188520224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1188520221} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1188520225 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1188520221} + m_CullTransparentMesh: 1 +--- !u!1 &1282136034 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1282136035} + - component: {fileID: 1282136037} + - component: {fileID: 1282136036} + m_Layer: 5 + m_Name: Text (Legacy) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1282136035 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282136034} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1188520222} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1282136036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282136034} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 26 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6DFB\u52A0\u4EBA\u673A" +--- !u!222 &1282136037 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282136034} + m_CullTransparentMesh: 1 +--- !u!1 &1291200673 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1291200674} + - component: {fileID: 1291200676} + - component: {fileID: 1291200675} + m_Layer: 5 + m_Name: Text (Legacy) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1291200674 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291200673} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 81288985} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1291200675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291200673} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 26 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u52A0\u5165\u6E38\u620F" +--- !u!222 &1291200676 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291200673} + m_CullTransparentMesh: 1 --- !u!1 &1911778720 GameObject: m_ObjectHideFlags: 0 @@ -543,6 +1108,7 @@ GameObject: m_Component: - component: {fileID: 1911778722} - component: {fileID: 1911778721} + - component: {fileID: 1911778723} m_Layer: 0 m_Name: UIScene m_TagString: Untagged @@ -570,6 +1136,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1911778720} + serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} @@ -579,8 +1146,23 @@ Transform: - {fileID: 923265421} - {fileID: 1035522524} m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1911778723 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1911778720} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e61b94b311b605b4195e022f5370e558, type: 3} + m_Name: + m_EditorClassIdentifier: + mask: + serializedVersion: 2 + m_Bits: 1 + playerId: 0 --- !u!1 &2008468463 GameObject: m_ObjectHideFlags: 0 @@ -614,7 +1196,6 @@ RectTransform: m_Children: - {fileID: 121702109} m_Father: {fileID: 878636056} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0} m_AnchorMax: {x: 0.5, y: 0} @@ -715,3 +1296,8 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2008468463} m_CullTransparentMesh: 1 +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 1911778722} diff --git a/JNFrame/Assets/Game/Script/battle/GBaseMode.cs b/JNFrame/Assets/Game/Script/battle/GBaseMode.cs index 22feda4a..624a4584 100644 --- a/JNFrame/Assets/Game/Script/battle/GBaseMode.cs +++ b/JNFrame/Assets/Game/Script/battle/GBaseMode.cs @@ -4,7 +4,12 @@ namespace Script.battle { public abstract class GBaseMode : JNGSyncFrame { - + public override void OnSyncLoad() + { + base.OnSyncLoad(); + GBattleModeManager.Instance.root = this; + } + public override void OnSyncUpdate(int dt, JNFrameInfo frame, T input) { @@ -14,5 +19,6 @@ namespace Script.battle { } + } } \ No newline at end of file diff --git a/JNFrame/Assets/Game/Script/battle/GBattleModeManager.cs b/JNFrame/Assets/Game/Script/battle/GBattleModeManager.cs index f90943ce..abd9a0d8 100644 --- a/JNFrame/Assets/Game/Script/battle/GBattleModeManager.cs +++ b/JNFrame/Assets/Game/Script/battle/GBattleModeManager.cs @@ -31,13 +31,20 @@ namespace Script.battle //当前模式 private GBattleMode _current = GBattleMode.Not; + //当前模式实体 + public Object root; + + //获取当前模式 + public T GetMode() where T : class + { + return root as T; + } + //初始化管理器 public void Init(GBattleModeInfo info) { - // App.Event.AddListener(JNSyncFrameEvent.CREATE,LoadScene); // App.Event.AddListener(JNSyncFrameEvent.CLEAR,UnloadScene); - } //打开指定模式 diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSceneMode.cs b/JNFrame/Assets/Game/Script/battle/mode/GWorldSceneMode.cs index 95d96a49..40d91453 100644 --- a/JNFrame/Assets/Game/Script/battle/mode/GWorldSceneMode.cs +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSceneMode.cs @@ -16,7 +16,8 @@ namespace Script.battle.mode public override void OnSyncLoad() { - + + base.OnSyncLoad(); Physics = new(); // BufferPool pool = new BufferPool(); // Simulation.Create(pool, new DemoNarrowPhaseCallbacks(), new DemoPoseIntegratorCallbacks(new System.Numerics.Vector3(0, -10, 0)), new PositionFirstTimestepper()); diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01Mode.cs b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01Mode.cs index bb358c11..66dc3859 100644 --- a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01Mode.cs +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01Mode.cs @@ -10,7 +10,8 @@ namespace Game.Script.battle.mode //控制玩家的唯一标识 public long Key; public Boolean IsAdd; //是否加入游戏 - + public Boolean IsRobot; //是否是人机 + } public class GWorldSync01Mode : GBaseMode { @@ -27,6 +28,7 @@ namespace Game.Script.battle.mode //加入一个玩家 var player1 = Instantiate(this.player, this.transform); player1.GetComponent().key = input.Key; + player1.GetComponent().isRobot = input.IsRobot; } } diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs index 26f999fe..fc329c14 100644 --- a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs @@ -2,34 +2,57 @@ using System; using System.Collections; using System.Collections.Generic; using System.Linq; +using Game.Plugins.App; using Game.Script.battle.mode; using Game.Script.battle.mode.GWorldSync01ModeScript; +using Script.battle; using UnityEngine; public class GWorldSync01UI : MonoBehaviour { - public GWorldSync01Mode mode; - - //玩家所属的Id - private long playerId; - - public Camera cam; + // public Camera cam; public LayerMask mask; - - private void Start() + + //获取模式 + private GWorldSync01Mode Mode => GBattleModeManager.Instance.GetMode(); + + //获取相机 + private Camera Cam => (Mode != null ? Mode.GetComponentInChildren() : null); + + //当前控制的玩家 + public long playerId = 0; + + //添加玩家 + public void AddPlayer(Boolean isRobot = false) { - playerId = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); //添加玩家 - mode.NInput.Key = this.playerId; - mode.NInput.IsAdd = true; + Mode.NInput.Key = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); + Mode.NInput.IsAdd = true; + Mode.NInput.IsRobot = isRobot; + if (!isRobot) + { + playerId = Mode.NInput.Key; + } } - - //控制玩家 - public void Update() + //点击加入人机 + public void OnClickJoinRobot() { - var players = mode.GetComponentsInChildren(); + this.AddPlayer(true); + } + + //点击加入游戏 + public void OnClickJoinGame() + { + this.AddPlayer(); + } + + //点击场景 + public void OnClickScene() + { + + var players = Mode.GetComponentsInChildren(); foreach (var playerBot in players.Where(item => item.key == playerId)) { @@ -38,7 +61,7 @@ public class GWorldSync01UI : MonoBehaviour bool positionFound = false; RaycastHit hit; - if (cam.pixelRect.Contains(Input.mousePosition) && Physics.Raycast(cam.ScreenPointToRay(Input.mousePosition), out hit, Mathf.Infinity, mask)) { + if (Cam.pixelRect.Contains(Input.mousePosition) && Physics.Raycast(Cam.ScreenPointToRay(Input.mousePosition), out hit, Mathf.Infinity, mask)) { newPosition = hit.point; positionFound = true; } @@ -56,6 +79,11 @@ public class GWorldSync01UI : MonoBehaviour } } - + } + + private void Update() + { + if(this.Cam != null) + this.Cam.enabled = !App.Sync.IsLoop; } } diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs index 147f55ce..9ef32432 100644 --- a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs @@ -4,6 +4,8 @@ using Game.Plugins.App.Sync; using Pathfinding; using UnityEngine; using Game.Script.battle.mode; +using Plugins.JNGame.Sync.Frame.game.Time; +using Plugins.JNGame.Util; namespace Game.Script.battle.mode.GWorldSync01ModeScript { @@ -21,16 +23,25 @@ namespace Game.Script.battle.mode.GWorldSync01ModeScript //移动控制 private AIDestinationSetter move; public long key; + public Boolean isRobot = false; + public Vector3 target; public override void OnSyncLoad() { base.OnSyncLoad(); this.move = this.GetComponent(); + //一秒中自动寻路 + SingletonUtil.Instance.SetTimeout(() => + { + if(this.isRobot) + this.SetTarget(new Vector3(GetSync().nRandomInt(-30,50),1,GetSync().nRandomInt(-60,20))); + },1000); } //设置目标位置 public void SetTarget(Vector3 pos) { + this.target = pos; this.move.SetTarget(pos); } @@ -42,6 +53,7 @@ namespace Game.Script.battle.mode.GWorldSync01ModeScript //设置位置 this.SetTarget(new Vector3(input.x,input.y,input.z)); } + } diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs new file mode 100644 index 00000000..7114b377 --- /dev/null +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs @@ -0,0 +1,20 @@ +using System.Collections; +using System.Collections.Generic; +using Game.Script.battle.mode.GWorldSync01ModeScript; +using Pathfinding; +using UnityEngine; + +public class PlayerBotAIPath : AIPath +{ + public override void OnTargetReached() + { + + base.OnTargetReached(); + //如果寻路结束 自己是AI 则 随机寻路 + if (this.GetComponent().isRobot) + { + this.GetComponent().SetTarget(new Vector3(GetSync().nRandomInt(-30,50),1,GetSync().nRandomInt(-60,20))); + } + + } +} diff --git a/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs.meta b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs.meta new file mode 100644 index 00000000..e95c34c0 --- /dev/null +++ b/JNFrame/Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 459952d6a3efe0145b231a636579f95c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame/Assets/StreamingAssets/build_info b/JNFrame/Assets/StreamingAssets/build_info index 665338b8..71d047db 100644 --- a/JNFrame/Assets/StreamingAssets/build_info +++ b/JNFrame/Assets/StreamingAssets/build_info @@ -1 +1 @@ -Build from PC-20230316NUNE at 2024/2/2 18:06:59 \ No newline at end of file +Build from PC-20230316NUNE at 2024/2/4 16:16:41 \ No newline at end of file diff --git a/JNFrame/CaseSensitiveTest b/JNFrame/CaseSensitiveTest new file mode 100644 index 00000000..e69de29b diff --git a/JNFrame/JNGame.csproj b/JNFrame/JNGame.csproj index a5d6eaa1..5f285a95 100644 --- a/JNFrame/JNGame.csproj +++ b/JNFrame/JNGame.csproj @@ -418,6 +418,7 @@ + diff --git a/JNFrame/Logs/AssetImportWorker0-prev.log b/JNFrame/Logs/AssetImportWorker0-prev.log index 0c1c3e82..45b0d4af 100644 --- a/JNFrame/Logs/AssetImportWorker0-prev.log +++ b/JNFrame/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker0.log -srvPort -54515 +58814 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [35360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 120727545 [EditorId] 120727545 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [35360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 120727545 [EditorId] 120727545 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [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 11 workers. -Refreshing native plugins compatible for Editor in 37.91 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.49 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,649 +70,4 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56072 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.015599 seconds. -- Loaded All Assemblies, in 0.365 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 353 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.663 seconds -Domain Reload Profiling: 1025ms - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (68ms) - LoadAllAssembliesAndSetupDomain (141ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (139ms) - TypeCache.Refresh (137ms) - TypeCache.ScanAssembly (125ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (663ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (612ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (460ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (102ms) - ProcessInitializeOnLoadMethodAttributes (45ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.102 seconds -Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -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] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.763 seconds -Domain Reload Profiling: 1849ms - BeginReloadAssembly (190ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (73ms) - LoadAllAssembliesAndSetupDomain (781ms) - LoadAssemblies (578ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (310ms) - TypeCache.Refresh (272ms) - TypeCache.ScanAssembly (245ms) - ScanForSourceGeneratedMonoScriptInfo (28ms) - ResolveRequiredComponents (7ms) - FinalizeReload (763ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (563ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (30ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (101ms) - ProcessInitializeOnLoadAttributes (377ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds -Refreshing native plugins compatible for Editor in 17.47 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5948 Unused Serialized files (Serialized files now loaded: 0) -Unloading 61 unused Assets / (370.9 KB). Loaded Objects now: 6411. -Memory consumption went from 203.6 MB to 203.2 MB. -Total: 4.533800 ms (FindLiveObjects: 0.433700 ms CreateObjectMapping: 0.246400 ms MarkObjects: 3.547700 ms DeleteObjects: 0.304400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Import Request. - Time since last request: 169159.215771 seconds. - path: Assets/Game/Scenes/Main.unity - artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Scenes/Main.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e630f4c774be57077f932819c8a1c67f') in 0.002677 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.692 seconds -Refreshing native plugins compatible for Editor in 12.56 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.132 seconds -Domain Reload Profiling: 1814ms - BeginReloadAssembly (193ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (477ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (17ms) - TypeCache.Refresh (7ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1132ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (476ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (298ms) - ProcessInitializeOnLoadMethodAttributes (40ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 13.70 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.0 KB). Loaded Objects now: 6414. -Memory consumption went from 203.1 MB to 202.7 MB. -Total: 3.346800 ms (FindLiveObjects: 0.470400 ms CreateObjectMapping: 0.246600 ms MarkObjects: 2.339000 ms DeleteObjects: 0.289800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.732 seconds -Refreshing native plugins compatible for Editor in 14.95 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.292 seconds -Domain Reload Profiling: 2011ms - BeginReloadAssembly (188ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (448ms) - LoadAssemblies (518ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (28ms) - TypeCache.Refresh (16ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1292ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (432ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (278ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 15.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.1 KB). Loaded Objects now: 6417. -Memory consumption went from 205.3 MB to 204.9 MB. -Total: 3.747100 ms (FindLiveObjects: 0.529800 ms CreateObjectMapping: 0.247700 ms MarkObjects: 2.615300 ms DeleteObjects: 0.353100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Import Request. - Time since last request: 1700.973210 seconds. - path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab - artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fbbbc895eeb1d49340e023733d1366b4') in 0.100522 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 174 -======================================================================== -Received Import Request. - Time since last request: 0.648576 seconds. - path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity - artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0ea6df7f39c2e39e5a63343b0e98f15') in 0.000710 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.426 seconds -Refreshing native plugins compatible for Editor in 27.06 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.545 seconds -Domain Reload Profiling: 2959ms - BeginReloadAssembly (584ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (163ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (97ms) - RebuildCommonClasses (48ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (56ms) - LoadAllAssembliesAndSetupDomain (708ms) - LoadAssemblies (767ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (209ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (153ms) - ScanForSourceGeneratedMonoScriptInfo (28ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1546ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (576ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (38ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (102ms) - ProcessInitializeOnLoadAttributes (387ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (16ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 19.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6427. -Memory consumption went from 207.1 MB to 206.8 MB. -Total: 3.922600 ms (FindLiveObjects: 0.533300 ms CreateObjectMapping: 0.266100 ms MarkObjects: 2.793100 ms DeleteObjects: 0.328500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Import Request. - Time since last request: 614.251239 seconds. - path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain - artifactKey: Guid(2d3232507ad564e8c891011e5d6413bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain using Guid(2d3232507ad564e8c891011e5d6413bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10e356ba4b7f1a2ed7576262ac66f92') in 0.035949 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.946386 seconds. - path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab - artifactKey: Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab using Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffdbd63b10a3fdd23442c76c7aa9119d') in 0.102360 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Import Request. - Time since last request: 0.869566 seconds. - path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/RecastExample.unity - artifactKey: Guid(d90ceba0148a049e3b56fcde2b55cec1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/RecastExample.unity using Guid(d90ceba0148a049e3b56fcde2b55cec1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '950eb5cdaee5cfda19e0624cbce42735') in 0.000665 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.704 seconds -Refreshing native plugins compatible for Editor in 12.30 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.932 seconds -Domain Reload Profiling: 1627ms - BeginReloadAssembly (201ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (61ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (402ms) - LoadAssemblies (449ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (48ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (8ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (10ms) - FinalizeReload (933ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (366ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (23ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (342.9 KB). Loaded Objects now: 6431. -Memory consumption went from 209.1 MB to 208.8 MB. -Total: 4.321700 ms (FindLiveObjects: 0.466200 ms CreateObjectMapping: 0.202200 ms MarkObjects: 3.307900 ms DeleteObjects: 0.344000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Import Request. - Time since last request: 366.622434 seconds. - path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/checkerGround.psd - artifactKey: Guid(ee2523340e7944c4297a80937a51484c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/checkerGround.psd using Guid(ee2523340e7944c4297a80937a51484c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac197c060fb96bfcd2a8da4be5645e43') in 0.056184 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.988294 seconds. - path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/Example2.unity - artifactKey: Guid(b04e6b995408741cf8dc427c6173f5f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/Example2.unity using Guid(b04e6b995408741cf8dc427c6173f5f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42cbd719f8b15f916402f6e3919f0205') in 0.000791 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.940 seconds -Refreshing native plugins compatible for Editor in 12.04 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.949 seconds -Domain Reload Profiling: 1873ms - BeginReloadAssembly (199ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (59ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (56ms) - LoadAllAssembliesAndSetupDomain (620ms) - LoadAssemblies (660ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (53ms) - TypeCache.Refresh (29ms) - TypeCache.ScanAssembly (8ms) - ScanForSourceGeneratedMonoScriptInfo (13ms) - ResolveRequiredComponents (8ms) - FinalizeReload (949ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (357ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (220ms) - ProcessInitializeOnLoadMethodAttributes (23ms) - AfterProcessingInitializeOnLoad (15ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 10.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6436. -Memory consumption went from 211.0 MB to 210.7 MB. -Total: 3.039200 ms (FindLiveObjects: 0.451800 ms CreateObjectMapping: 0.239500 ms MarkObjects: 2.132100 ms DeleteObjects: 0.214800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.790 seconds -Refreshing native plugins compatible for Editor in 15.42 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.007 seconds -Domain Reload Profiling: 1787ms - BeginReloadAssembly (251ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (441ms) - LoadAssemblies (513ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (49ms) - TypeCache.Refresh (27ms) - TypeCache.ScanAssembly (8ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1007ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (248ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 11.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6439. -Memory consumption went from 213.2 MB to 212.9 MB. -Total: 4.761800 ms (FindLiveObjects: 0.608100 ms CreateObjectMapping: 0.772400 ms MarkObjects: 3.062500 ms DeleteObjects: 0.316300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Import Request. - Time since last request: 100.837218 seconds. - path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity - artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a8bdae2ee89798a10908a07ecc1b4a2') in 0.001994 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.728 seconds -Refreshing native plugins compatible for Editor in 14.48 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.978 seconds -Domain Reload Profiling: 1698ms - BeginReloadAssembly (208ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (66ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (423ms) - LoadAssemblies (481ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (17ms) - TypeCache.ScanAssembly (5ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (8ms) - FinalizeReload (979ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (382ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (15ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.2 KB). Loaded Objects now: 6442. -Memory consumption went from 214.9 MB to 214.5 MB. -Total: 5.930300 ms (FindLiveObjects: 0.869200 ms CreateObjectMapping: 0.643600 ms MarkObjects: 4.063700 ms DeleteObjects: 0.350200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y diff --git a/JNFrame/Logs/AssetImportWorker0.log b/JNFrame/Logs/AssetImportWorker0.log index 45b0d4af..b5b99a24 100644 --- a/JNFrame/Logs/AssetImportWorker0.log +++ b/JNFrame/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker0.log -srvPort -58814 +49487 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [12772] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 3732872203 [EditorId] 3732872203 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [12772] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 3732872203 [EditorId] 3732872203 [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 11 workers. -Refreshing native plugins compatible for Editor in 30.49 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 48.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,4 +70,1684 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56264 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.010108 seconds. +- Loaded All Assemblies, in 0.436 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 653 ms +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.057 seconds +Domain Reload Profiling: 2497ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (67ms) + LoadAllAssembliesAndSetupDomain (178ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (156ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (1ms) + FinalizeReload (2066ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1940ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (959ms) + SetLoadedEditorAssemblies (50ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (6ms) + ProcessInitializeOnLoadAttributes (786ms) + ProcessInitializeOnLoadMethodAttributes (139ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.909 seconds +Refreshing native plugins compatible for Editor in 17.93 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +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] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.033 seconds +Domain Reload Profiling: 2929ms + BeginReloadAssembly (389ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (20ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (89ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (115ms) + LoadAllAssembliesAndSetupDomain (1283ms) + LoadAssemblies (955ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (543ms) + TypeCache.Refresh (492ms) + TypeCache.ScanAssembly (448ms) + ScanForSourceGeneratedMonoScriptInfo (38ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1034ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (791ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (62ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds +Refreshing native plugins compatible for Editor in 27.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5948 Unused Serialized files (Serialized files now loaded: 0) +Unloading 61 unused Assets / (371.6 KB). Loaded Objects now: 6411. +Memory consumption went from 203.8 MB to 203.5 MB. +Total: 12.698000 ms (FindLiveObjects: 1.778800 ms CreateObjectMapping: 1.106000 ms MarkObjects: 9.216800 ms DeleteObjects: 0.593500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 2808.090082 seconds. + path: Assets/Game/Script/Main.cs + artifactKey: Guid(00b2d35a0698b224fa03e09bed92aac7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/Main.cs using Guid(00b2d35a0698b224fa03e09bed92aac7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '092da28c2b1c453edbff87fbf9e0349a') in 0.012484 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 6.120 seconds +Refreshing native plugins compatible for Editor in 17.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 14.401 seconds +Domain Reload Profiling: 20510ms + BeginReloadAssembly (245ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (5742ms) + LoadAssemblies (5846ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (14402ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (807ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (58ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Refreshing native plugins compatible for Editor in 17.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.2 KB). Loaded Objects now: 6414. +Memory consumption went from 203.3 MB to 202.9 MB. +Total: 4.012800 ms (FindLiveObjects: 0.493400 ms CreateObjectMapping: 0.303100 ms MarkObjects: 2.957600 ms DeleteObjects: 0.257100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.166 seconds +Refreshing native plugins compatible for Editor in 12.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.221 seconds +Domain Reload Profiling: 2372ms + BeginReloadAssembly (266ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (68ms) + RebuildNativeTypeToScriptingClass (23ms) + initialDomainReloadingComplete (272ms) + LoadAllAssembliesAndSetupDomain (522ms) + LoadAssemblies (605ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (67ms) + TypeCache.Refresh (35ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1221ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (437ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 15.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6417. +Memory consumption went from 205.5 MB to 205.1 MB. +Total: 3.504700 ms (FindLiveObjects: 0.520900 ms CreateObjectMapping: 0.301800 ms MarkObjects: 2.461100 ms DeleteObjects: 0.219100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.251 seconds +Refreshing native plugins compatible for Editor in 22.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.100 seconds +Domain Reload Profiling: 3344ms + BeginReloadAssembly (274ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (862ms) + LoadAssemblies (975ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2101ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (522ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (50ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (299ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 17.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6420. +Memory consumption went from 207.4 MB to 207.1 MB. +Total: 7.091000 ms (FindLiveObjects: 0.924700 ms CreateObjectMapping: 0.720700 ms MarkObjects: 5.087000 ms DeleteObjects: 0.355300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.263 seconds +Refreshing native plugins compatible for Editor in 21.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.853 seconds +Domain Reload Profiling: 3104ms + BeginReloadAssembly (224ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (902ms) + LoadAssemblies (989ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1854ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (910ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (267ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (156ms) + ProcessInitializeOnLoadAttributes (424ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Refreshing native plugins compatible for Editor in 16.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.1 KB). Loaded Objects now: 6423. +Memory consumption went from 209.3 MB to 209.0 MB. +Total: 4.637000 ms (FindLiveObjects: 0.569400 ms CreateObjectMapping: 0.362500 ms MarkObjects: 3.167100 ms DeleteObjects: 0.536000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.708 seconds +Refreshing native plugins compatible for Editor in 11.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.119 seconds +Domain Reload Profiling: 1818ms + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (474ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1119ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(6018b3436d0447f18eb907f86db6504e) path("Assets/Game/Plugins/App/JNGSocket.cs") state(2) +Refreshing native plugins compatible for Editor in 14.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6425. +Memory consumption went from 211.3 MB to 210.9 MB. +Total: 3.297600 ms (FindLiveObjects: 0.512100 ms CreateObjectMapping: 0.261500 ms MarkObjects: 2.284100 ms DeleteObjects: 0.238700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.872 seconds +Refreshing native plugins compatible for Editor in 12.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.122 seconds +Domain Reload Profiling: 1982ms + BeginReloadAssembly (267ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (91ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (476ms) + LoadAssemblies (564ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1122ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (433ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6429. +Memory consumption went from 213.2 MB to 212.9 MB. +Total: 6.532500 ms (FindLiveObjects: 0.870800 ms CreateObjectMapping: 0.403300 ms MarkObjects: 4.649500 ms DeleteObjects: 0.605000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.721 seconds +Refreshing native plugins compatible for Editor in 14.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.105 seconds +Domain Reload Profiling: 1817ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (425ms) + LoadAssemblies (502ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1105ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (430ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 14.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.1 KB). Loaded Objects now: 6432. +Memory consumption went from 215.1 MB to 214.8 MB. +Total: 3.664600 ms (FindLiveObjects: 0.470500 ms CreateObjectMapping: 0.248600 ms MarkObjects: 2.665700 ms DeleteObjects: 0.278200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.725 seconds +Refreshing native plugins compatible for Editor in 10.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.924 seconds +Domain Reload Profiling: 1641ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (441ms) + LoadAssemblies (489ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (924ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6435. +Memory consumption went from 217.0 MB to 216.7 MB. +Total: 3.181400 ms (FindLiveObjects: 0.490200 ms CreateObjectMapping: 0.253300 ms MarkObjects: 2.223100 ms DeleteObjects: 0.214000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.647 seconds +Refreshing native plugins compatible for Editor in 12.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.080 seconds +Domain Reload Profiling: 1718ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1080ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (417ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 17.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.4 KB). Loaded Objects now: 6438. +Memory consumption went from 219.0 MB to 218.6 MB. +Total: 3.337900 ms (FindLiveObjects: 0.499500 ms CreateObjectMapping: 0.265300 ms MarkObjects: 2.283600 ms DeleteObjects: 0.287900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (314.9 KB). Loaded Objects now: 6438. +Memory consumption went from 127.3 MB to 127.0 MB. +Total: 3.039300 ms (FindLiveObjects: 0.438500 ms CreateObjectMapping: 0.243900 ms MarkObjects: 2.015300 ms DeleteObjects: 0.340600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.737 seconds +Refreshing native plugins compatible for Editor in 11.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.984 seconds +Domain Reload Profiling: 1711ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (495ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (984ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (375ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6441. +Memory consumption went from 220.9 MB to 220.6 MB. +Total: 3.640500 ms (FindLiveObjects: 0.687900 ms CreateObjectMapping: 0.299700 ms MarkObjects: 2.364900 ms DeleteObjects: 0.279700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 14.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (314.6 KB). Loaded Objects now: 6441. +Memory consumption went from 129.2 MB to 128.9 MB. +Total: 2.676200 ms (FindLiveObjects: 0.382200 ms CreateObjectMapping: 0.222400 ms MarkObjects: 1.903100 ms DeleteObjects: 0.167800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 16.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (314.6 KB). Loaded Objects now: 6441. +Memory consumption went from 128.4 MB to 128.1 MB. +Total: 3.172900 ms (FindLiveObjects: 0.376300 ms CreateObjectMapping: 0.214800 ms MarkObjects: 2.400200 ms DeleteObjects: 0.180900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.777 seconds +Refreshing native plugins compatible for Editor in 12.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.944 seconds +Domain Reload Profiling: 1713ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (531ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (8ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (8ms) + FinalizeReload (945ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6444. +Memory consumption went from 222.8 MB to 222.5 MB. +Total: 4.412400 ms (FindLiveObjects: 0.564500 ms CreateObjectMapping: 0.285400 ms MarkObjects: 2.525900 ms DeleteObjects: 1.034800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (347.0 KB). Loaded Objects now: 6444. +Memory consumption went from 131.1 MB to 130.8 MB. +Total: 2.919600 ms (FindLiveObjects: 0.374400 ms CreateObjectMapping: 0.202200 ms MarkObjects: 2.162900 ms DeleteObjects: 0.179400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.955 seconds +Refreshing native plugins compatible for Editor in 14.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.119 seconds +Domain Reload Profiling: 2064ms + BeginReloadAssembly (207ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (653ms) + LoadAssemblies (709ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1120ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (426ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Script is not up to date after domain reload: guid(44e6e0cb968b4bc0a21ed772b81d1c39) path("Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs") state(2) +Refreshing native plugins compatible for Editor in 15.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.3 KB). Loaded Objects now: 6446. +Memory consumption went from 224.7 MB to 224.4 MB. +Total: 3.666200 ms (FindLiveObjects: 0.450500 ms CreateObjectMapping: 0.231800 ms MarkObjects: 2.721800 ms DeleteObjects: 0.260800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.042 seconds +Refreshing native plugins compatible for Editor in 14.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.682 seconds +Domain Reload Profiling: 2713ms + BeginReloadAssembly (270ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (98ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (648ms) + LoadAssemblies (703ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (70ms) + TypeCache.Refresh (47ms) + TypeCache.ScanAssembly (23ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1682ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (557ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (60ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (138ms) + ProcessInitializeOnLoadAttributes (308ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(44e6e0cb968b4bc0a21ed772b81d1c39) path("Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs") state(2) +Refreshing native plugins compatible for Editor in 16.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.2 KB). Loaded Objects now: 6449. +Memory consumption went from 226.6 MB to 226.3 MB. +Total: 6.904000 ms (FindLiveObjects: 1.119800 ms CreateObjectMapping: 0.756800 ms MarkObjects: 4.768600 ms DeleteObjects: 0.255400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.748 seconds +Refreshing native plugins compatible for Editor in 20.00 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.086 seconds +Domain Reload Profiling: 1824ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (466ms) + LoadAssemblies (529ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1086ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (452ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (298ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 9.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6453. +Memory consumption went from 228.6 MB to 228.2 MB. +Total: 3.496200 ms (FindLiveObjects: 0.466400 ms CreateObjectMapping: 0.239200 ms MarkObjects: 2.578600 ms DeleteObjects: 0.210800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.739 seconds +Refreshing native plugins compatible for Editor in 12.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.949 seconds +Domain Reload Profiling: 1680ms + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (417ms) + LoadAssemblies (506ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (950ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (375ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.7 KB). Loaded Objects now: 6456. +Memory consumption went from 230.5 MB to 230.2 MB. +Total: 3.102900 ms (FindLiveObjects: 0.389200 ms CreateObjectMapping: 0.207000 ms MarkObjects: 2.289300 ms DeleteObjects: 0.216500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 1833.644914 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad636e3b493cdf1ef5b52f7548ce0416') in 0.002314 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 37.869829 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87549e5713b35957c54eaab7c47efadc') in 0.112505 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 174 +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 16.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (312.6 KB). Loaded Objects now: 6464. +Memory consumption went from 138.3 MB to 138.0 MB. +Total: 2.940000 ms (FindLiveObjects: 0.367800 ms CreateObjectMapping: 0.190700 ms MarkObjects: 2.209800 ms DeleteObjects: 0.170900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.630 seconds +Refreshing native plugins compatible for Editor in 12.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.064 seconds +Domain Reload Profiling: 1685ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1064ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (427ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 13.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6466. +Memory consumption went from 232.6 MB to 232.3 MB. +Total: 4.113600 ms (FindLiveObjects: 0.632500 ms CreateObjectMapping: 0.285100 ms MarkObjects: 2.866300 ms DeleteObjects: 0.327300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.679 seconds +Refreshing native plugins compatible for Editor in 10.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.892 seconds +Domain Reload Profiling: 1559ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (893ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (358ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6469. +Memory consumption went from 234.6 MB to 234.2 MB. +Total: 3.050900 ms (FindLiveObjects: 0.428200 ms CreateObjectMapping: 0.215100 ms MarkObjects: 2.199300 ms DeleteObjects: 0.207500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 12.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.3 KB). Loaded Objects now: 6469. +Memory consumption went from 142.9 MB to 142.6 MB. +Total: 4.153400 ms (FindLiveObjects: 0.736800 ms CreateObjectMapping: 0.468600 ms MarkObjects: 2.713000 ms DeleteObjects: 0.233000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 245.497618 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea26d02b22244dcc97d7f3260981207a') in 0.085733 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 174 +======================================================================== +Received Import Request. + Time since last request: 559.528282 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '536144b8da6c4bcb974862c0d637e045') in 0.024382 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 174 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.733 seconds +Refreshing native plugins compatible for Editor in 17.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.965 seconds +Domain Reload Profiling: 1689ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (493ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (12ms) + FinalizeReload (965ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6472. +Memory consumption went from 236.3 MB to 235.9 MB. +Total: 3.207400 ms (FindLiveObjects: 0.497000 ms CreateObjectMapping: 0.327000 ms MarkObjects: 2.173500 ms DeleteObjects: 0.208600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 17.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.4 KB). Loaded Objects now: 6472. +Memory consumption went from 144.8 MB to 144.5 MB. +Total: 3.312700 ms (FindLiveObjects: 0.509000 ms CreateObjectMapping: 0.248900 ms MarkObjects: 2.329900 ms DeleteObjects: 0.224000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 121.960446 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '992320c182afd713c34ca4bee7eb9028') in 0.087770 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 5.539891 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7911b6b40660213fde9b8976a61c6cb9') in 0.021109 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.638 seconds +Refreshing native plugins compatible for Editor in 16.79 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.034 seconds +Domain Reload Profiling: 1664ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (435ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1034ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (413ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6475. +Memory consumption went from 238.2 MB to 237.9 MB. +Total: 3.210100 ms (FindLiveObjects: 0.564200 ms CreateObjectMapping: 0.254600 ms MarkObjects: 2.181500 ms DeleteObjects: 0.208700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 11.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.074 seconds +Domain Reload Profiling: 1707ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (451ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1075ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (427ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6478. +Memory consumption went from 240.4 MB to 240.0 MB. +Total: 3.816600 ms (FindLiveObjects: 0.474500 ms CreateObjectMapping: 0.518900 ms MarkObjects: 2.501400 ms DeleteObjects: 0.319800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 35.157481 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot.FBX + artifactKey: Guid(caeffedc34d9f4161b7694ad0d84bbd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot.FBX using Guid(caeffedc34d9f4161b7694ad0d84bbd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e49b5eb84bf713806719ed5200639bf1') in 0.193349 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 58 +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@back.FBX + artifactKey: Guid(a13fed205b1fa3942abfab7ba21463ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@back.FBX using Guid(a13fed205b1fa3942abfab7ba21463ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd92e0fd80a058618931111ca82295e8a') in 0.110964 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 58 +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@right.FBX + artifactKey: Guid(f8136785e54fd1d459d2a3a0849fe770) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@right.FBX using Guid(f8136785e54fd1d459d2a3a0849fe770) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9c02e420233f4d62b6d7db5fc190b60') in 0.105587 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 58 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: ߳˳Ӧóֹ I/O +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/JNFrame/Logs/AssetImportWorker1-prev.log b/JNFrame/Logs/AssetImportWorker1-prev.log index 3bfc775a..2bcb2f90 100644 --- a/JNFrame/Logs/AssetImportWorker1-prev.log +++ b/JNFrame/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker1.log -srvPort -54515 +58814 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [36972] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 4282446386 [EditorId] 4282446386 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [36972] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 4282446386 [EditorId] 4282446386 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [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 11 workers. -Refreshing native plugins compatible for Editor in 40.61 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.74 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,577 +70,4 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56816 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.010198 seconds. -- Loaded All Assemblies, in 0.387 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 349 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.664 seconds -Domain Reload Profiling: 1047ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (69ms) - LoadAllAssembliesAndSetupDomain (149ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (147ms) - TypeCache.Refresh (146ms) - TypeCache.ScanAssembly (134ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (664ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (609ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (457ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (103ms) - ProcessInitializeOnLoadMethodAttributes (44ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.100 seconds -Refreshing native plugins compatible for Editor in 14.26 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -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] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.777 seconds -Domain Reload Profiling: 1866ms - BeginReloadAssembly (184ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (70ms) - LoadAllAssembliesAndSetupDomain (790ms) - LoadAssemblies (587ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (308ms) - TypeCache.Refresh (267ms) - TypeCache.ScanAssembly (241ms) - ScanForSourceGeneratedMonoScriptInfo (31ms) - ResolveRequiredComponents (7ms) - FinalizeReload (778ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (570ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (32ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (101ms) - ProcessInitializeOnLoadAttributes (379ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (16ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 17.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5948 Unused Serialized files (Serialized files now loaded: 0) -Unloading 61 unused Assets / (371.3 KB). Loaded Objects now: 6411. -Memory consumption went from 203.8 MB to 203.4 MB. -Total: 5.490000 ms (FindLiveObjects: 0.628800 ms CreateObjectMapping: 0.403900 ms MarkObjects: 4.149300 ms DeleteObjects: 0.305800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.696 seconds -Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.099 seconds -Domain Reload Profiling: 1782ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (53ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (479ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (16ms) - TypeCache.Refresh (6ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1099ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (461ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (296ms) - ProcessInitializeOnLoadMethodAttributes (35ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Refreshing native plugins compatible for Editor in 14.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6414. -Memory consumption went from 203.5 MB to 203.2 MB. -Total: 3.685700 ms (FindLiveObjects: 0.578500 ms CreateObjectMapping: 0.290600 ms MarkObjects: 2.540800 ms DeleteObjects: 0.273700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.749 seconds -Refreshing native plugins compatible for Editor in 13.88 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.292 seconds -Domain Reload Profiling: 2029ms - BeginReloadAssembly (196ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (455ms) - LoadAssemblies (528ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (23ms) - TypeCache.Refresh (10ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1293ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (428ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (15ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 18.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6417. -Memory consumption went from 205.4 MB to 205.1 MB. -Total: 4.869300 ms (FindLiveObjects: 0.626100 ms CreateObjectMapping: 0.500500 ms MarkObjects: 3.509300 ms DeleteObjects: 0.231100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.446 seconds -Refreshing native plugins compatible for Editor in 17.70 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.506 seconds -Domain Reload Profiling: 2944ms - BeginReloadAssembly (587ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (31ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (103ms) - RebuildCommonClasses (48ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (60ms) - LoadAllAssembliesAndSetupDomain (730ms) - LoadAssemblies (844ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (200ms) - TypeCache.Refresh (148ms) - TypeCache.ScanAssembly (131ms) - ScanForSourceGeneratedMonoScriptInfo (39ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1507ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (564ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (35ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (99ms) - ProcessInitializeOnLoadAttributes (383ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 13.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6420. -Memory consumption went from 207.4 MB to 207.1 MB. -Total: 3.837500 ms (FindLiveObjects: 0.506400 ms CreateObjectMapping: 0.286400 ms MarkObjects: 2.662900 ms DeleteObjects: 0.379700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.720 seconds -Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.931 seconds -Domain Reload Profiling: 1641ms - BeginReloadAssembly (203ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (63ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (414ms) - LoadAssemblies (470ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (17ms) - TypeCache.ScanAssembly (7ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (11ms) - FinalizeReload (932ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (370ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (28ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 15.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6423. -Memory consumption went from 209.4 MB to 209.0 MB. -Total: 3.956200 ms (FindLiveObjects: 0.394100 ms CreateObjectMapping: 0.297400 ms MarkObjects: 2.870000 ms DeleteObjects: 0.393500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.921 seconds -Refreshing native plugins compatible for Editor in 13.43 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.950 seconds -Domain Reload Profiling: 1798ms - BeginReloadAssembly (204ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (63ms) - RebuildCommonClasses (38ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (58ms) - LoadAllAssembliesAndSetupDomain (539ms) - LoadAssemblies (583ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (47ms) - TypeCache.Refresh (26ms) - TypeCache.ScanAssembly (7ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (10ms) - FinalizeReload (951ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (358ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (221ms) - ProcessInitializeOnLoadMethodAttributes (23ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 13.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6426. -Memory consumption went from 211.3 MB to 210.9 MB. -Total: 3.626500 ms (FindLiveObjects: 0.539800 ms CreateObjectMapping: 0.284900 ms MarkObjects: 2.558700 ms DeleteObjects: 0.241500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.787 seconds -Refreshing native plugins compatible for Editor in 15.11 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.001 seconds -Domain Reload Profiling: 1776ms - BeginReloadAssembly (232ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (65ms) - RebuildCommonClasses (45ms) - RebuildNativeTypeToScriptingClass (16ms) - initialDomainReloadingComplete (57ms) - LoadAllAssembliesAndSetupDomain (425ms) - LoadAssemblies (497ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (42ms) - TypeCache.Refresh (21ms) - TypeCache.ScanAssembly (7ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1001ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (389ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 13.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6429. -Memory consumption went from 213.2 MB to 212.9 MB. -Total: 4.589200 ms (FindLiveObjects: 0.546200 ms CreateObjectMapping: 0.358100 ms MarkObjects: 3.336800 ms DeleteObjects: 0.345300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.729 seconds -Refreshing native plugins compatible for Editor in 14.51 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.978 seconds -Domain Reload Profiling: 1697ms - BeginReloadAssembly (201ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (47ms) - LoadAllAssembliesAndSetupDomain (430ms) - LoadAssemblies (494ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (17ms) - TypeCache.ScanAssembly (4ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (8ms) - FinalizeReload (979ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (15ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 14.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) -Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6432. -Memory consumption went from 215.1 MB to 214.8 MB. -Total: 4.622500 ms (FindLiveObjects: 0.487100 ms CreateObjectMapping: 0.243300 ms MarkObjects: 3.515100 ms DeleteObjects: 0.375300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y diff --git a/JNFrame/Logs/AssetImportWorker1.log b/JNFrame/Logs/AssetImportWorker1.log index 2bcb2f90..3415a231 100644 --- a/JNFrame/Logs/AssetImportWorker1.log +++ b/JNFrame/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker1.log -srvPort -58814 +49487 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [21776] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 340918219 [EditorId] 340918219 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [21776] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 340918219 [EditorId] 340918219 [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 11 workers. -Refreshing native plugins compatible for Editor in 29.74 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 38.91 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,4 +70,8676 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56328 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.010283 seconds. +- Loaded All Assemblies, in 0.497 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 1202 ms +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.203 seconds +Domain Reload Profiling: 2695ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (236ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (233ms) + TypeCache.Refresh (231ms) + TypeCache.ScanAssembly (208ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (1ms) + FinalizeReload (2204ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2100ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (1485ms) + SetLoadedEditorAssemblies (22ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (12ms) + ProcessInitializeOnLoadAttributes (447ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.835 seconds +Refreshing native plugins compatible for Editor in 16.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +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] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.045 seconds +Domain Reload Profiling: 2868ms + BeginReloadAssembly (354ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (94ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (91ms) + LoadAllAssembliesAndSetupDomain (1263ms) + LoadAssemblies (975ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (496ms) + TypeCache.Refresh (445ms) + TypeCache.ScanAssembly (405ms) + ScanForSourceGeneratedMonoScriptInfo (38ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1046ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (791ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (581ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds +Refreshing native plugins compatible for Editor in 26.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5948 Unused Serialized files (Serialized files now loaded: 0) +Unloading 61 unused Assets / (370.9 KB). Loaded Objects now: 6411. +Memory consumption went from 203.7 MB to 203.4 MB. +Total: 5.549600 ms (FindLiveObjects: 0.831100 ms CreateObjectMapping: 0.407600 ms MarkObjects: 3.867900 ms DeleteObjects: 0.440000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 6.085 seconds +Refreshing native plugins compatible for Editor in 18.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 14.413 seconds +Domain Reload Profiling: 20489ms + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (5726ms) + LoadAssemblies (5819ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (14413ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (815ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (58ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (137ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Refreshing native plugins compatible for Editor in 17.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.1 KB). Loaded Objects now: 6414. +Memory consumption went from 203.4 MB to 203.1 MB. +Total: 5.140800 ms (FindLiveObjects: 1.567500 ms CreateObjectMapping: 0.835600 ms MarkObjects: 2.495800 ms DeleteObjects: 0.239700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.221 seconds +Refreshing native plugins compatible for Editor in 12.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.227 seconds +Domain Reload Profiling: 2435ms + BeginReloadAssembly (527ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + RebuildCommonClasses (68ms) + RebuildNativeTypeToScriptingClass (44ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (505ms) + LoadAssemblies (870ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (8ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1228ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 14.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6417. +Memory consumption went from 205.4 MB to 205.1 MB. +Total: 4.119700 ms (FindLiveObjects: 0.375500 ms CreateObjectMapping: 1.439600 ms MarkObjects: 2.079000 ms DeleteObjects: 0.224500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.267 seconds +Refreshing native plugins compatible for Editor in 29.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.049 seconds +Domain Reload Profiling: 3305ms + BeginReloadAssembly (273ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (106ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (879ms) + LoadAssemblies (962ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2049ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (460ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (296ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 23.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6420. +Memory consumption went from 207.3 MB to 207.0 MB. +Total: 3.984200 ms (FindLiveObjects: 0.520600 ms CreateObjectMapping: 0.280500 ms MarkObjects: 2.804400 ms DeleteObjects: 0.376900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.193 seconds +Refreshing native plugins compatible for Editor in 29.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.864 seconds +Domain Reload Profiling: 3047ms + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (845ms) + LoadAssemblies (923ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (25ms) + FinalizeReload (1864ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (863ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (54ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (325ms) + ProcessInitializeOnLoadAttributes (419ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 18.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6423. +Memory consumption went from 209.2 MB to 208.9 MB. +Total: 4.669500 ms (FindLiveObjects: 0.621800 ms CreateObjectMapping: 0.241300 ms MarkObjects: 2.475400 ms DeleteObjects: 1.328100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.698 seconds +Refreshing native plugins compatible for Editor in 11.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.131 seconds +Domain Reload Profiling: 1820ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (404ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1131ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(6018b3436d0447f18eb907f86db6504e) path("Assets/Game/Plugins/App/JNGSocket.cs") state(2) +Refreshing native plugins compatible for Editor in 15.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.2 KB). Loaded Objects now: 6425. +Memory consumption went from 211.2 MB to 210.8 MB. +Total: 3.630300 ms (FindLiveObjects: 0.603700 ms CreateObjectMapping: 0.266700 ms MarkObjects: 2.548000 ms DeleteObjects: 0.210700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.879 seconds +Refreshing native plugins compatible for Editor in 14.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.105 seconds +Domain Reload Profiling: 1973ms + BeginReloadAssembly (271ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (82ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (56ms) + LoadAllAssembliesAndSetupDomain (483ms) + LoadAssemblies (564ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (8ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1106ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 16.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6429. +Memory consumption went from 213.1 MB to 212.8 MB. +Total: 5.826300 ms (FindLiveObjects: 0.590100 ms CreateObjectMapping: 0.418400 ms MarkObjects: 4.232200 ms DeleteObjects: 0.582900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.723 seconds +Refreshing native plugins compatible for Editor in 16.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1816ms + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (510ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1101ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (423ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6432. +Memory consumption went from 215.1 MB to 214.7 MB. +Total: 4.599700 ms (FindLiveObjects: 0.512300 ms CreateObjectMapping: 0.312300 ms MarkObjects: 3.324200 ms DeleteObjects: 0.449600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.724 seconds +Refreshing native plugins compatible for Editor in 11.11 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.932 seconds +Domain Reload Profiling: 1648ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (492ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (17ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (933ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (224ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6435. +Memory consumption went from 217.0 MB to 216.6 MB. +Total: 3.070100 ms (FindLiveObjects: 0.392700 ms CreateObjectMapping: 0.211500 ms MarkObjects: 2.264500 ms DeleteObjects: 0.200200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.650 seconds +Refreshing native plugins compatible for Editor in 14.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.087 seconds +Domain Reload Profiling: 1728ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1087ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (431ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 15.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6438. +Memory consumption went from 218.9 MB to 218.6 MB. +Total: 5.099100 ms (FindLiveObjects: 0.588100 ms CreateObjectMapping: 0.338200 ms MarkObjects: 3.800200 ms DeleteObjects: 0.371100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.5 KB). Loaded Objects now: 6438. +Memory consumption went from 127.2 MB to 126.9 MB. +Total: 4.353100 ms (FindLiveObjects: 0.650800 ms CreateObjectMapping: 0.316800 ms MarkObjects: 3.070500 ms DeleteObjects: 0.312800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.714 seconds +Refreshing native plugins compatible for Editor in 11.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.986 seconds +Domain Reload Profiling: 1688ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (437ms) + LoadAssemblies (480ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (987ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6441. +Memory consumption went from 220.8 MB to 220.5 MB. +Total: 3.176400 ms (FindLiveObjects: 0.509000 ms CreateObjectMapping: 0.266700 ms MarkObjects: 2.191300 ms DeleteObjects: 0.207700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 12.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.6 KB). Loaded Objects now: 6441. +Memory consumption went from 129.1 MB to 128.8 MB. +Total: 3.564300 ms (FindLiveObjects: 0.530900 ms CreateObjectMapping: 0.297700 ms MarkObjects: 2.474300 ms DeleteObjects: 0.260300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.8 KB). Loaded Objects now: 6441. +Memory consumption went from 128.4 MB to 128.1 MB. +Total: 5.165800 ms (FindLiveObjects: 0.778400 ms CreateObjectMapping: 0.453400 ms MarkObjects: 3.485200 ms DeleteObjects: 0.445600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.779 seconds +Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.943 seconds +Domain Reload Profiling: 1712ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (484ms) + LoadAssemblies (543ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (51ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (8ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (9ms) + FinalizeReload (944ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6444. +Memory consumption went from 222.8 MB to 222.4 MB. +Total: 4.244700 ms (FindLiveObjects: 1.015300 ms CreateObjectMapping: 0.507000 ms MarkObjects: 2.406800 ms DeleteObjects: 0.314100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.7 KB). Loaded Objects now: 6444. +Memory consumption went from 131.0 MB to 130.7 MB. +Total: 3.666100 ms (FindLiveObjects: 0.486900 ms CreateObjectMapping: 0.253200 ms MarkObjects: 2.705200 ms DeleteObjects: 0.219200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.949 seconds +Refreshing native plugins compatible for Editor in 15.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.142 seconds +Domain Reload Profiling: 2081ms + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (652ms) + LoadAssemblies (708ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1142ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Script is not up to date after domain reload: guid(44e6e0cb968b4bc0a21ed772b81d1c39) path("Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs") state(2) +Refreshing native plugins compatible for Editor in 11.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6446. +Memory consumption went from 224.7 MB to 224.3 MB. +Total: 4.827700 ms (FindLiveObjects: 0.910900 ms CreateObjectMapping: 0.384800 ms MarkObjects: 3.100200 ms DeleteObjects: 0.429700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.031 seconds +Refreshing native plugins compatible for Editor in 17.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.704 seconds +Domain Reload Profiling: 2725ms + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (669ms) + LoadAssemblies (679ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (121ms) + TypeCache.Refresh (87ms) + TypeCache.ScanAssembly (39ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1705ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (565ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (61ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (309ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(44e6e0cb968b4bc0a21ed772b81d1c39) path("Assets/Game/Plugins/JNGame/Sync/Frame/JNSyncFrame.cs") state(2) +Refreshing native plugins compatible for Editor in 11.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6449. +Memory consumption went from 226.6 MB to 226.3 MB. +Total: 4.648600 ms (FindLiveObjects: 0.637700 ms CreateObjectMapping: 0.402400 ms MarkObjects: 3.078700 ms DeleteObjects: 0.527500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.766 seconds +Refreshing native plugins compatible for Editor in 20.99 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.089 seconds +Domain Reload Profiling: 1847ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (468ms) + LoadAssemblies (533ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1090ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (456ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (299ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 16.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.4 KB). Loaded Objects now: 6453. +Memory consumption went from 228.5 MB to 228.2 MB. +Total: 4.428100 ms (FindLiveObjects: 0.537500 ms CreateObjectMapping: 0.235200 ms MarkObjects: 3.429500 ms DeleteObjects: 0.225000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.734 seconds +Refreshing native plugins compatible for Editor in 12.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.949 seconds +Domain Reload Profiling: 1675ms + BeginReloadAssembly (219ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (412ms) + LoadAssemblies (497ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (949ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6456. +Memory consumption went from 230.5 MB to 230.1 MB. +Total: 3.087400 ms (FindLiveObjects: 0.373600 ms CreateObjectMapping: 0.194300 ms MarkObjects: 2.334500 ms DeleteObjects: 0.184100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.8 KB). Loaded Objects now: 6456. +Memory consumption went from 138.7 MB to 138.4 MB. +Total: 3.180800 ms (FindLiveObjects: 0.493700 ms CreateObjectMapping: 0.206500 ms MarkObjects: 2.312300 ms DeleteObjects: 0.167400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.623 seconds +Refreshing native plugins compatible for Editor in 12.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.050 seconds +Domain Reload Profiling: 1665ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (433ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1050ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (418ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.4 KB). Loaded Objects now: 6459. +Memory consumption went from 232.4 MB to 232.0 MB. +Total: 3.120800 ms (FindLiveObjects: 0.461000 ms CreateObjectMapping: 0.236100 ms MarkObjects: 2.173100 ms DeleteObjects: 0.249600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.694 seconds +Refreshing native plugins compatible for Editor in 13.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.921 seconds +Domain Reload Profiling: 1607ms + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (10ms) + FinalizeReload (921ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (368ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6462. +Memory consumption went from 234.3 MB to 234.0 MB. +Total: 4.086600 ms (FindLiveObjects: 0.500400 ms CreateObjectMapping: 0.257000 ms MarkObjects: 2.930100 ms DeleteObjects: 0.397600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.9 KB). Loaded Objects now: 6462. +Memory consumption went from 142.6 MB to 142.3 MB. +Total: 3.761500 ms (FindLiveObjects: 0.392000 ms CreateObjectMapping: 0.239500 ms MarkObjects: 2.795200 ms DeleteObjects: 0.334100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.707 seconds +Refreshing native plugins compatible for Editor in 12.96 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.967 seconds +Domain Reload Profiling: 1665ms + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (418ms) + LoadAssemblies (470ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (967ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6465. +Memory consumption went from 236.2 MB to 235.9 MB. +Total: 3.602200 ms (FindLiveObjects: 0.790500 ms CreateObjectMapping: 0.294500 ms MarkObjects: 2.252300 ms DeleteObjects: 0.263700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 14.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +Unloading 4 unused Assets / (313.6 KB). Loaded Objects now: 6465. +Memory consumption went from 144.5 MB to 144.2 MB. +Total: 3.759200 ms (FindLiveObjects: 0.505700 ms CreateObjectMapping: 0.265300 ms MarkObjects: 2.576900 ms DeleteObjects: 0.409800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.644 seconds +Refreshing native plugins compatible for Editor in 14.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.024 seconds +Domain Reload Profiling: 1659ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1024ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.2 KB). Loaded Objects now: 6468. +Memory consumption went from 238.2 MB to 237.8 MB. +Total: 3.621000 ms (FindLiveObjects: 0.451200 ms CreateObjectMapping: 0.268000 ms MarkObjects: 2.619000 ms DeleteObjects: 0.281400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 13.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.071 seconds +Domain Reload Profiling: 1698ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (446ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1071ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (419ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6471. +Memory consumption went from 240.1 MB to 239.7 MB. +Total: 3.752200 ms (FindLiveObjects: 0.473200 ms CreateObjectMapping: 0.347800 ms MarkObjects: 2.636500 ms DeleteObjects: 0.291500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 5647.654686 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@awake.FBX + artifactKey: Guid(7e212db0aa2c00b448aa511ece336f20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@awake.FBX using Guid(7e212db0aa2c00b448aa511ece336f20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f3f243cef42dc7622e7e09e8b236586') in 0.259538 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 56 +======================================================================== +Received Import Request. + Time since last request: 0.000064 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot_render.prefab + artifactKey: Guid(0b9c68ddd67ee5b9e8aeca86ac0fbc03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot_render.prefab using Guid(0b9c68ddd67ee5b9e8aeca86ac0fbc03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '838a62a46d87f68f1caf0b4577c90f43') in 0.049272 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 117 +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@forward.FBX + artifactKey: Guid(1da85f72a7a82bc4eabdbd8f0683bde2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@forward.FBX using Guid(1da85f72a7a82bc4eabdbd8f0683bde2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ca12a8e185a8299cabd736bc8d591cd') in 0.084527 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 57 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@left.FBX + artifactKey: Guid(b667956babf1f0446a76fa8b99404ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@left.FBX using Guid(b667956babf1f0446a76fa8b99404ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc6d56406109094a57035de0e5823dd6') in 0.080514 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 58 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.698 seconds +Refreshing native plugins compatible for Editor in 10.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.918 seconds +Domain Reload Profiling: 1607ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (918ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6484. +Memory consumption went from 242.2 MB to 241.8 MB. +Total: 3.170900 ms (FindLiveObjects: 0.370200 ms CreateObjectMapping: 0.292500 ms MarkObjects: 2.321000 ms DeleteObjects: 0.186200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.599 seconds +Refreshing native plugins compatible for Editor in 17.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.021 seconds +Domain Reload Profiling: 1612ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (341ms) + LoadAssemblies (399ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (15ms) + FinalizeReload (1021ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (452ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6487. +Memory consumption went from 244.3 MB to 244.0 MB. +Total: 3.103200 ms (FindLiveObjects: 0.557300 ms CreateObjectMapping: 0.244500 ms MarkObjects: 2.076700 ms DeleteObjects: 0.223300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.702 seconds +Refreshing native plugins compatible for Editor in 11.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.956 seconds +Domain Reload Profiling: 1648ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (426ms) + LoadAssemblies (491ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (957ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6490. +Memory consumption went from 246.2 MB to 245.9 MB. +Total: 3.228400 ms (FindLiveObjects: 0.457800 ms CreateObjectMapping: 0.272400 ms MarkObjects: 2.262000 ms DeleteObjects: 0.235000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.722 seconds +Refreshing native plugins compatible for Editor in 13.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.183 seconds +Domain Reload Profiling: 1897ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (434ms) + LoadAssemblies (500ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1184ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (535ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (345ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6493. +Memory consumption went from 248.2 MB to 247.8 MB. +Total: 3.093900 ms (FindLiveObjects: 0.385100 ms CreateObjectMapping: 0.183400 ms MarkObjects: 2.337300 ms DeleteObjects: 0.186800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.685 seconds +Refreshing native plugins compatible for Editor in 16.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.947 seconds +Domain Reload Profiling: 1622ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (397ms) + LoadAssemblies (464ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (8ms) + FinalizeReload (947ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6496. +Memory consumption went from 250.1 MB to 249.7 MB. +Total: 3.392300 ms (FindLiveObjects: 0.384800 ms CreateObjectMapping: 0.209700 ms MarkObjects: 2.572500 ms DeleteObjects: 0.224500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.677 seconds +Refreshing native plugins compatible for Editor in 17.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.952 seconds +Domain Reload Profiling: 1621ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (470ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (952ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (389ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6499. +Memory consumption went from 252.0 MB to 251.7 MB. +Total: 4.677000 ms (FindLiveObjects: 0.834100 ms CreateObjectMapping: 0.550100 ms MarkObjects: 3.037600 ms DeleteObjects: 0.253200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds +Refreshing native plugins compatible for Editor in 12.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.041 seconds +Domain Reload Profiling: 1687ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (447ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1042ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (464ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (315ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 11.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6502. +Memory consumption went from 253.9 MB to 253.6 MB. +Total: 3.602600 ms (FindLiveObjects: 0.678100 ms CreateObjectMapping: 0.345700 ms MarkObjects: 2.301000 ms DeleteObjects: 0.275100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.670 seconds +Refreshing native plugins compatible for Editor in 12.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.918 seconds +Domain Reload Profiling: 1578ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (447ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (919ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6505. +Memory consumption went from 255.9 MB to 255.5 MB. +Total: 3.051800 ms (FindLiveObjects: 0.390200 ms CreateObjectMapping: 0.207300 ms MarkObjects: 2.249600 ms DeleteObjects: 0.203800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.722 seconds +Refreshing native plugins compatible for Editor in 11.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.052 seconds +Domain Reload Profiling: 1764ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (445ms) + LoadAssemblies (490ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1053ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (417ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6508. +Memory consumption went from 257.8 MB to 257.5 MB. +Total: 4.673300 ms (FindLiveObjects: 0.946000 ms CreateObjectMapping: 0.534400 ms MarkObjects: 2.919700 ms DeleteObjects: 0.271200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.672 seconds +Refreshing native plugins compatible for Editor in 13.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.911 seconds +Domain Reload Profiling: 1575ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (400ms) + LoadAssemblies (462ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (911ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6511. +Memory consumption went from 259.7 MB to 259.4 MB. +Total: 3.223200 ms (FindLiveObjects: 0.489700 ms CreateObjectMapping: 0.221500 ms MarkObjects: 2.325800 ms DeleteObjects: 0.185000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.684 seconds +Refreshing native plugins compatible for Editor in 12.99 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.926 seconds +Domain Reload Profiling: 1602ms + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (926ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (373ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6514. +Memory consumption went from 261.6 MB to 261.3 MB. +Total: 3.069200 ms (FindLiveObjects: 0.358600 ms CreateObjectMapping: 0.191400 ms MarkObjects: 2.304300 ms DeleteObjects: 0.214000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.717 seconds +Refreshing native plugins compatible for Editor in 13.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.033 seconds +Domain Reload Profiling: 1740ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (446ms) + LoadAssemblies (493ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1033ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (384ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Refreshing native plugins compatible for Editor in 11.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6517. +Memory consumption went from 263.5 MB to 263.2 MB. +Total: 3.542000 ms (FindLiveObjects: 0.497900 ms CreateObjectMapping: 0.274700 ms MarkObjects: 2.548300 ms DeleteObjects: 0.219700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.648 seconds +Refreshing native plugins compatible for Editor in 12.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.919 seconds +Domain Reload Profiling: 1559ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (436ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (920ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6520. +Memory consumption went from 265.5 MB to 265.1 MB. +Total: 3.611300 ms (FindLiveObjects: 0.659700 ms CreateObjectMapping: 0.380500 ms MarkObjects: 2.316300 ms DeleteObjects: 0.253000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.711 seconds +Refreshing native plugins compatible for Editor in 13.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.000 seconds +Domain Reload Profiling: 1702ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (436ms) + LoadAssemblies (495ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1001ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (399ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 14.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6523. +Memory consumption went from 267.4 MB to 267.0 MB. +Total: 2.988300 ms (FindLiveObjects: 0.399700 ms CreateObjectMapping: 0.226000 ms MarkObjects: 2.129300 ms DeleteObjects: 0.232400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.014 seconds +Refreshing native plugins compatible for Editor in 21.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.981 seconds +Domain Reload Profiling: 1990ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (719ms) + LoadAssemblies (711ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (105ms) + TypeCache.Refresh (49ms) + TypeCache.ScanAssembly (8ms) + ScanForSourceGeneratedMonoScriptInfo (33ms) + ResolveRequiredComponents (18ms) + FinalizeReload (982ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6526. +Memory consumption went from 269.3 MB to 269.0 MB. +Total: 3.565300 ms (FindLiveObjects: 0.802200 ms CreateObjectMapping: 0.419100 ms MarkObjects: 2.107800 ms DeleteObjects: 0.235400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.655 seconds +Refreshing native plugins compatible for Editor in 13.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.934 seconds +Domain Reload Profiling: 1580ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (435ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (934ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6529. +Memory consumption went from 271.2 MB to 270.9 MB. +Total: 4.186500 ms (FindLiveObjects: 0.717700 ms CreateObjectMapping: 0.358500 ms MarkObjects: 2.886100 ms DeleteObjects: 0.222800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.798 seconds +Refreshing native plugins compatible for Editor in 14.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.072 seconds +Domain Reload Profiling: 1862ms + BeginReloadAssembly (216ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (488ms) + LoadAssemblies (522ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (61ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1073ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6532. +Memory consumption went from 273.2 MB to 272.8 MB. +Total: 5.650700 ms (FindLiveObjects: 0.894600 ms CreateObjectMapping: 0.672000 ms MarkObjects: 3.674600 ms DeleteObjects: 0.407300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.842 seconds +Refreshing native plugins compatible for Editor in 16.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.008 seconds +Domain Reload Profiling: 1841ms + BeginReloadAssembly (219ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (573ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1008ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6535. +Memory consumption went from 275.1 MB to 274.8 MB. +Total: 6.725500 ms (FindLiveObjects: 0.989100 ms CreateObjectMapping: 0.975300 ms MarkObjects: 4.163800 ms DeleteObjects: 0.592100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.675 seconds +Refreshing native plugins compatible for Editor in 15.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.926 seconds +Domain Reload Profiling: 1592ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (10ms) + FinalizeReload (927ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6538. +Memory consumption went from 277.0 MB to 276.7 MB. +Total: 4.106900 ms (FindLiveObjects: 0.869500 ms CreateObjectMapping: 0.330600 ms MarkObjects: 2.645300 ms DeleteObjects: 0.259900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.840 seconds +Refreshing native plugins compatible for Editor in 10.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.937 seconds +Domain Reload Profiling: 1763ms + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (531ms) + LoadAssemblies (577ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (7ms) + FinalizeReload (938ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (381ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 13.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6541. +Memory consumption went from 278.9 MB to 278.6 MB. +Total: 4.099600 ms (FindLiveObjects: 0.563800 ms CreateObjectMapping: 0.486100 ms MarkObjects: 2.783500 ms DeleteObjects: 0.264500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 16.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.952 seconds +Domain Reload Profiling: 1637ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (419ms) + LoadAssemblies (479ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (953ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 16.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6544. +Memory consumption went from 280.8 MB to 280.5 MB. +Total: 3.164700 ms (FindLiveObjects: 0.440500 ms CreateObjectMapping: 0.242600 ms MarkObjects: 2.231900 ms DeleteObjects: 0.248600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.818 seconds +Refreshing native plugins compatible for Editor in 12.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.121 seconds +Domain Reload Profiling: 1929ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (477ms) + LoadAssemblies (555ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1122ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (499ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (32ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (303ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(e61b94b311b605b4195e022f5370e558) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs") state(2) +Refreshing native plugins compatible for Editor in 10.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6546. +Memory consumption went from 282.7 MB to 282.4 MB. +Total: 7.145600 ms (FindLiveObjects: 0.968100 ms CreateObjectMapping: 0.536200 ms MarkObjects: 5.220300 ms DeleteObjects: 0.417000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 18.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.025 seconds +Domain Reload Profiling: 1667ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1026ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (375ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6550. +Memory consumption went from 284.7 MB to 284.4 MB. +Total: 3.186200 ms (FindLiveObjects: 0.420400 ms CreateObjectMapping: 0.219500 ms MarkObjects: 2.344800 ms DeleteObjects: 0.200700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.859 seconds +Refreshing native plugins compatible for Editor in 17.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.371 seconds +Domain Reload Profiling: 2222ms + BeginReloadAssembly (258ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (61ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (454ms) + LoadAssemblies (553ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1372ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (491ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (50ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Script is not up to date after domain reload: guid(e61b94b311b605b4195e022f5370e558) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs") state(2) +Refreshing native plugins compatible for Editor in 11.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6552. +Memory consumption went from 286.6 MB to 286.3 MB. +Total: 4.081200 ms (FindLiveObjects: 0.429800 ms CreateObjectMapping: 0.238900 ms MarkObjects: 3.101900 ms DeleteObjects: 0.309100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.736 seconds +Refreshing native plugins compatible for Editor in 18.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.890 seconds +Domain Reload Profiling: 1617ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (445ms) + LoadAssemblies (493ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (7ms) + FinalizeReload (890ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6556. +Memory consumption went from 288.5 MB to 288.2 MB. +Total: 2.944800 ms (FindLiveObjects: 0.398300 ms CreateObjectMapping: 0.212100 ms MarkObjects: 2.118300 ms DeleteObjects: 0.214800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.804 seconds +Refreshing native plugins compatible for Editor in 14.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.003 seconds +Domain Reload Profiling: 1798ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (513ms) + LoadAssemblies (579ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1004ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6559. +Memory consumption went from 290.5 MB to 290.1 MB. +Total: 4.199200 ms (FindLiveObjects: 0.521400 ms CreateObjectMapping: 0.260200 ms MarkObjects: 3.037100 ms DeleteObjects: 0.378800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.668 seconds +Refreshing native plugins compatible for Editor in 14.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.939 seconds +Domain Reload Profiling: 1599ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (939ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (209ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6562. +Memory consumption went from 292.4 MB to 292.0 MB. +Total: 3.879700 ms (FindLiveObjects: 0.532100 ms CreateObjectMapping: 0.397200 ms MarkObjects: 2.697200 ms DeleteObjects: 0.251700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.692 seconds +Refreshing native plugins compatible for Editor in 14.99 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.988 seconds +Domain Reload Profiling: 1672ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (482ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (989ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (415ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6565. +Memory consumption went from 294.3 MB to 294.0 MB. +Total: 2.870700 ms (FindLiveObjects: 0.363300 ms CreateObjectMapping: 0.190400 ms MarkObjects: 2.131900 ms DeleteObjects: 0.184400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.810 seconds +Refreshing native plugins compatible for Editor in 16.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.976 seconds +Domain Reload Profiling: 1776ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (558ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (65ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (26ms) + FinalizeReload (976ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (226ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6568. +Memory consumption went from 296.2 MB to 295.9 MB. +Total: 4.190600 ms (FindLiveObjects: 0.590700 ms CreateObjectMapping: 0.252400 ms MarkObjects: 3.101600 ms DeleteObjects: 0.244500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 15.81 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.895 seconds +Domain Reload Profiling: 1579ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (468ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (896ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (358ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6571. +Memory consumption went from 298.2 MB to 297.8 MB. +Total: 4.155800 ms (FindLiveObjects: 0.895200 ms CreateObjectMapping: 0.404800 ms MarkObjects: 2.611600 ms DeleteObjects: 0.242700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.622 seconds +Refreshing native plugins compatible for Editor in 11.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.986 seconds +Domain Reload Profiling: 1600ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (367ms) + LoadAssemblies (410ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (8ms) + FinalizeReload (987ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (385ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 9.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6574. +Memory consumption went from 300.1 MB to 299.7 MB. +Total: 3.397300 ms (FindLiveObjects: 0.498300 ms CreateObjectMapping: 0.229300 ms MarkObjects: 2.474100 ms DeleteObjects: 0.194000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.784 seconds +Refreshing native plugins compatible for Editor in 17.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.005 seconds +Domain Reload Profiling: 1778ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (490ms) + LoadAssemblies (553ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1005ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (399ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6577. +Memory consumption went from 302.0 MB to 301.7 MB. +Total: 5.990600 ms (FindLiveObjects: 0.689800 ms CreateObjectMapping: 0.822000 ms MarkObjects: 4.114700 ms DeleteObjects: 0.361600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.701 seconds +Refreshing native plugins compatible for Editor in 14.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.001 seconds +Domain Reload Profiling: 1688ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (420ms) + LoadAssemblies (474ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1002ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (396ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6580. +Memory consumption went from 303.9 MB to 303.6 MB. +Total: 2.973400 ms (FindLiveObjects: 0.400300 ms CreateObjectMapping: 0.222800 ms MarkObjects: 2.148000 ms DeleteObjects: 0.201400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.626 seconds +Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.137 seconds +Domain Reload Profiling: 1754ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1137ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (450ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (281ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 15.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6583. +Memory consumption went from 305.9 MB to 305.5 MB. +Total: 3.977300 ms (FindLiveObjects: 0.626000 ms CreateObjectMapping: 0.361000 ms MarkObjects: 2.624300 ms DeleteObjects: 0.364000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.039 seconds +Refreshing native plugins compatible for Editor in 20.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.669 seconds +Domain Reload Profiling: 2699ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (716ms) + LoadAssemblies (612ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (151ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1670ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (424ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 17.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6586. +Memory consumption went from 307.8 MB to 307.5 MB. +Total: 5.623200 ms (FindLiveObjects: 0.556900 ms CreateObjectMapping: 0.377800 ms MarkObjects: 4.388700 ms DeleteObjects: 0.297500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.865 seconds +Refreshing native plugins compatible for Editor in 21.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.035 seconds +Domain Reload Profiling: 2889ms + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (532ms) + LoadAssemblies (627ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (2036ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (703ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (171ms) + ProcessInitializeOnLoadAttributes (419ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 15.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6589. +Memory consumption went from 309.7 MB to 309.4 MB. +Total: 5.959100 ms (FindLiveObjects: 1.026500 ms CreateObjectMapping: 0.644900 ms MarkObjects: 3.781600 ms DeleteObjects: 0.502200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.962 seconds +Refreshing native plugins compatible for Editor in 15.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.239 seconds +Domain Reload Profiling: 2175ms + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (569ms) + LoadAssemblies (643ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (59ms) + TypeCache.Refresh (36ms) + TypeCache.ScanAssembly (20ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1240ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (289ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 16.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6592. +Memory consumption went from 311.7 MB to 311.3 MB. +Total: 8.987900 ms (FindLiveObjects: 0.898900 ms CreateObjectMapping: 0.392300 ms MarkObjects: 7.354800 ms DeleteObjects: 0.339700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.097 seconds +Refreshing native plugins compatible for Editor in 13.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.449 seconds +Domain Reload Profiling: 2537ms + BeginReloadAssembly (221ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (50ms) + RebuildNativeTypeToScriptingClass (22ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (739ms) + LoadAssemblies (723ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (136ms) + TypeCache.Refresh (57ms) + TypeCache.ScanAssembly (26ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (51ms) + FinalizeReload (1449ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (587ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (164ms) + ProcessInitializeOnLoadAttributes (340ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6595. +Memory consumption went from 313.6 MB to 313.3 MB. +Total: 4.107700 ms (FindLiveObjects: 0.663200 ms CreateObjectMapping: 0.310800 ms MarkObjects: 2.693200 ms DeleteObjects: 0.437800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.745 seconds +Refreshing native plugins compatible for Editor in 17.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.252 seconds +Domain Reload Profiling: 1989ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (471ms) + LoadAssemblies (553ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1253ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (510ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (321ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 12.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6598. +Memory consumption went from 315.5 MB to 315.2 MB. +Total: 4.586300 ms (FindLiveObjects: 0.840100 ms CreateObjectMapping: 0.802000 ms MarkObjects: 2.661200 ms DeleteObjects: 0.281600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.640 seconds +Refreshing native plugins compatible for Editor in 13.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.033 seconds +Domain Reload Profiling: 1665ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1033ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (408ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6601. +Memory consumption went from 317.5 MB to 317.1 MB. +Total: 3.811200 ms (FindLiveObjects: 0.676400 ms CreateObjectMapping: 0.260200 ms MarkObjects: 2.569100 ms DeleteObjects: 0.304100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.676 seconds +Refreshing native plugins compatible for Editor in 11.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.053 seconds +Domain Reload Profiling: 1721ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (413ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1054ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (416ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6604. +Memory consumption went from 319.4 MB to 319.0 MB. +Total: 4.672400 ms (FindLiveObjects: 0.958700 ms CreateObjectMapping: 1.019400 ms MarkObjects: 2.423000 ms DeleteObjects: 0.269100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.677 seconds +Refreshing native plugins compatible for Editor in 11.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.098 seconds +Domain Reload Profiling: 1763ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (55ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1099ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 15.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6607. +Memory consumption went from 321.3 MB to 321.0 MB. +Total: 3.062500 ms (FindLiveObjects: 0.451000 ms CreateObjectMapping: 0.233700 ms MarkObjects: 2.163600 ms DeleteObjects: 0.212900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.973 seconds +Refreshing native plugins compatible for Editor in 15.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.964 seconds +Domain Reload Profiling: 1924ms + BeginReloadAssembly (269ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (83ms) + RebuildCommonClasses (54ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (569ms) + LoadAssemblies (636ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (9ms) + FinalizeReload (964ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6610. +Memory consumption went from 323.2 MB to 322.9 MB. +Total: 2.933300 ms (FindLiveObjects: 0.404200 ms CreateObjectMapping: 0.208300 ms MarkObjects: 2.125500 ms DeleteObjects: 0.194300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.912 seconds +Refreshing native plugins compatible for Editor in 11.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.938 seconds +Domain Reload Profiling: 1839ms + BeginReloadAssembly (356ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (110ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (444ms) + LoadAssemblies (580ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (938ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6613. +Memory consumption went from 325.1 MB to 324.8 MB. +Total: 4.005200 ms (FindLiveObjects: 0.401300 ms CreateObjectMapping: 0.216700 ms MarkObjects: 3.082300 ms DeleteObjects: 0.303600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.823 seconds +Refreshing native plugins compatible for Editor in 15.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.034 seconds +Domain Reload Profiling: 1848ms + BeginReloadAssembly (215ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (510ms) + LoadAssemblies (567ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1034ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6616. +Memory consumption went from 327.1 MB to 326.7 MB. +Total: 3.669800 ms (FindLiveObjects: 0.515200 ms CreateObjectMapping: 0.255700 ms MarkObjects: 2.674400 ms DeleteObjects: 0.223400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.072 seconds +Refreshing native plugins compatible for Editor in 17.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.169 seconds +Domain Reload Profiling: 2232ms + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (99ms) + RebuildCommonClasses (56ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (637ms) + LoadAssemblies (725ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (61ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1170ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (446ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (281ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6619. +Memory consumption went from 329.0 MB to 328.6 MB. +Total: 4.477400 ms (FindLiveObjects: 0.914900 ms CreateObjectMapping: 0.438900 ms MarkObjects: 2.841400 ms DeleteObjects: 0.280700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.751 seconds +Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.973 seconds +Domain Reload Profiling: 1713ms + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (20ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (56ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (486ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (10ms) + FinalizeReload (973ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6622. +Memory consumption went from 330.9 MB to 330.6 MB. +Total: 3.973200 ms (FindLiveObjects: 0.685000 ms CreateObjectMapping: 0.361000 ms MarkObjects: 2.599300 ms DeleteObjects: 0.326300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.723 seconds +Refreshing native plugins compatible for Editor in 14.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.213 seconds +Domain Reload Profiling: 4925ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (437ms) + LoadAssemblies (483ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (11ms) + FinalizeReload (4214ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (831ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (56ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (111ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Refreshing native plugins compatible for Editor in 11.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6626. +Memory consumption went from 332.9 MB to 332.5 MB. +Total: 5.767700 ms (FindLiveObjects: 0.862800 ms CreateObjectMapping: 0.545300 ms MarkObjects: 3.632500 ms DeleteObjects: 0.723600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.827 seconds +Refreshing native plugins compatible for Editor in 14.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.132 seconds +Domain Reload Profiling: 1948ms + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (91ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (70ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (512ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1132ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Script is not up to date after domain reload: guid(459952d6a3efe0145b231a636579f95c) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs") state(2) +Refreshing native plugins compatible for Editor in 10.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6628. +Memory consumption went from 334.8 MB to 334.4 MB. +Total: 4.472000 ms (FindLiveObjects: 0.655600 ms CreateObjectMapping: 0.546000 ms MarkObjects: 3.059000 ms DeleteObjects: 0.210000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.634 seconds +Refreshing native plugins compatible for Editor in 11.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.036 seconds +Domain Reload Profiling: 1663ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (386ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1037ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6632. +Memory consumption went from 336.7 MB to 336.4 MB. +Total: 3.411900 ms (FindLiveObjects: 0.545600 ms CreateObjectMapping: 0.276700 ms MarkObjects: 2.217900 ms DeleteObjects: 0.369800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 11660.424322 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77b134c69b661cae3eab7c4fba503593') in 0.007746 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.877 seconds +Refreshing native plugins compatible for Editor in 15.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.959 seconds +Domain Reload Profiling: 1825ms + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (536ms) + LoadAssemblies (608ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (959ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (371ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6635. +Memory consumption went from 338.4 MB to 338.0 MB. +Total: 3.361100 ms (FindLiveObjects: 0.545800 ms CreateObjectMapping: 0.272600 ms MarkObjects: 2.307800 ms DeleteObjects: 0.233900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.885 seconds +Refreshing native plugins compatible for Editor in 11.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.939 seconds +Domain Reload Profiling: 1809ms + BeginReloadAssembly (260ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (88ms) + LoadAllAssembliesAndSetupDomain (464ms) + LoadAssemblies (563ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (939ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (372ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6638. +Memory consumption went from 340.5 MB to 340.2 MB. +Total: 3.404000 ms (FindLiveObjects: 0.417000 ms CreateObjectMapping: 0.217100 ms MarkObjects: 2.494300 ms DeleteObjects: 0.274300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.790 seconds +Refreshing native plugins compatible for Editor in 12.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.943 seconds +Domain Reload Profiling: 1721ms + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (23ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (428ms) + LoadAssemblies (502ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (9ms) + FinalizeReload (944ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (358ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6641. +Memory consumption went from 342.5 MB to 342.1 MB. +Total: 3.012400 ms (FindLiveObjects: 0.404000 ms CreateObjectMapping: 0.225300 ms MarkObjects: 2.184200 ms DeleteObjects: 0.198000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.658 seconds +Refreshing native plugins compatible for Editor in 18.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.015 seconds +Domain Reload Profiling: 1665ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (408ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1016ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6644. +Memory consumption went from 344.4 MB to 344.1 MB. +Total: 3.591200 ms (FindLiveObjects: 0.527100 ms CreateObjectMapping: 0.211300 ms MarkObjects: 2.633900 ms DeleteObjects: 0.217700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.912 seconds +Refreshing native plugins compatible for Editor in 17.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.979 seconds +Domain Reload Profiling: 1882ms + BeginReloadAssembly (286ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (111ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (510ms) + LoadAssemblies (571ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (10ms) + FinalizeReload (980ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (406ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 14.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6647. +Memory consumption went from 346.3 MB to 346.0 MB. +Total: 3.836800 ms (FindLiveObjects: 0.562700 ms CreateObjectMapping: 0.247300 ms MarkObjects: 2.761700 ms DeleteObjects: 0.263300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.809 seconds +Refreshing native plugins compatible for Editor in 11.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.027 seconds +Domain Reload Profiling: 1828ms + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (50ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (466ms) + LoadAssemblies (549ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1028ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6650. +Memory consumption went from 348.2 MB to 347.9 MB. +Total: 3.588300 ms (FindLiveObjects: 0.407900 ms CreateObjectMapping: 0.205000 ms MarkObjects: 2.559200 ms DeleteObjects: 0.414900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.986 seconds +Refreshing native plugins compatible for Editor in 26.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.073 seconds +Domain Reload Profiling: 2051ms + BeginReloadAssembly (250ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (607ms) + LoadAssemblies (672ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (64ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (29ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1074ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (380ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(5536f3a48beb4a27b08820e600cf6982) path("Assets/Game/Script/battle/mode/GWorldSync01Mode.cs") state(2) +Refreshing native plugins compatible for Editor in 13.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6652. +Memory consumption went from 350.1 MB to 349.8 MB. +Total: 6.144600 ms (FindLiveObjects: 0.620400 ms CreateObjectMapping: 0.274200 ms MarkObjects: 4.755300 ms DeleteObjects: 0.492600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.777 seconds +Refreshing native plugins compatible for Editor in 12.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.973 seconds +Domain Reload Profiling: 1741ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (54ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (463ms) + LoadAssemblies (534ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (973ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (380ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6656. +Memory consumption went from 352.1 MB to 351.7 MB. +Total: 2.831800 ms (FindLiveObjects: 0.457800 ms CreateObjectMapping: 0.215900 ms MarkObjects: 1.959100 ms DeleteObjects: 0.198000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.628 seconds +Refreshing native plugins compatible for Editor in 12.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.079 seconds +Domain Reload Profiling: 1699ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (445ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1079ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (471ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 12.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6659. +Memory consumption went from 354.0 MB to 353.6 MB. +Total: 3.836500 ms (FindLiveObjects: 0.877300 ms CreateObjectMapping: 0.237400 ms MarkObjects: 2.489600 ms DeleteObjects: 0.230300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.661 seconds +Refreshing native plugins compatible for Editor in 14.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.117 seconds +Domain Reload Profiling: 1768ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1118ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (453ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6662. +Memory consumption went from 355.9 MB to 355.6 MB. +Total: 4.760600 ms (FindLiveObjects: 0.852100 ms CreateObjectMapping: 0.616000 ms MarkObjects: 2.759100 ms DeleteObjects: 0.531400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.862 seconds +Refreshing native plugins compatible for Editor in 34.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.924 seconds +Domain Reload Profiling: 1777ms + BeginReloadAssembly (223ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (508ms) + LoadAssemblies (574ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (9ms) + FinalizeReload (925ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6665. +Memory consumption went from 357.8 MB to 357.5 MB. +Total: 3.347000 ms (FindLiveObjects: 0.424500 ms CreateObjectMapping: 0.212400 ms MarkObjects: 2.498500 ms DeleteObjects: 0.210600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.821 seconds +Refreshing native plugins compatible for Editor in 12.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.959 seconds +Domain Reload Profiling: 1772ms + BeginReloadAssembly (215ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (504ms) + LoadAssemblies (577ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (959ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (227ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6668. +Memory consumption went from 359.8 MB to 359.4 MB. +Total: 4.135200 ms (FindLiveObjects: 0.602700 ms CreateObjectMapping: 0.235000 ms MarkObjects: 2.946800 ms DeleteObjects: 0.348800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.739 seconds +Refreshing native plugins compatible for Editor in 12.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.117 seconds +Domain Reload Profiling: 1849ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (540ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1118ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (418ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6671. +Memory consumption went from 361.7 MB to 361.3 MB. +Total: 3.880700 ms (FindLiveObjects: 0.454100 ms CreateObjectMapping: 0.201700 ms MarkObjects: 2.879400 ms DeleteObjects: 0.343700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.709 seconds +Refreshing native plugins compatible for Editor in 12.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.941 seconds +Domain Reload Profiling: 1641ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (423ms) + LoadAssemblies (482ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (942ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (366ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6675. +Memory consumption went from 363.6 MB to 363.3 MB. +Total: 3.006100 ms (FindLiveObjects: 0.409300 ms CreateObjectMapping: 0.208700 ms MarkObjects: 2.183600 ms DeleteObjects: 0.203300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.823 seconds +Refreshing native plugins compatible for Editor in 18.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.028 seconds +Domain Reload Profiling: 1839ms + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (516ms) + LoadAssemblies (549ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (66ms) + TypeCache.Refresh (36ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1029ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (390ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6678. +Memory consumption went from 365.6 MB to 365.2 MB. +Total: 2.799100 ms (FindLiveObjects: 0.470300 ms CreateObjectMapping: 0.212000 ms MarkObjects: 1.921800 ms DeleteObjects: 0.193400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.840 seconds +Refreshing native plugins compatible for Editor in 23.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.095 seconds +Domain Reload Profiling: 1928ms + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (536ms) + LoadAssemblies (561ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (72ms) + TypeCache.Refresh (46ms) + TypeCache.ScanAssembly (24ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1096ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (397ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6681. +Memory consumption went from 367.5 MB to 367.1 MB. +Total: 4.423300 ms (FindLiveObjects: 0.814900 ms CreateObjectMapping: 0.359900 ms MarkObjects: 2.901900 ms DeleteObjects: 0.345400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.901 seconds +Refreshing native plugins compatible for Editor in 19.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.076 seconds +Domain Reload Profiling: 1967ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (558ms) + LoadAssemblies (626ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1076ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 14.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6684. +Memory consumption went from 369.4 MB to 369.0 MB. +Total: 4.367200 ms (FindLiveObjects: 0.773900 ms CreateObjectMapping: 0.458700 ms MarkObjects: 2.894500 ms DeleteObjects: 0.238000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.037 seconds +Refreshing native plugins compatible for Editor in 11.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.114 seconds +Domain Reload Profiling: 2117ms + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (60ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (120ms) + LoadAllAssembliesAndSetupDomain (566ms) + LoadAssemblies (630ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (89ms) + TypeCache.Refresh (57ms) + TypeCache.ScanAssembly (33ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (15ms) + FinalizeReload (1114ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (460ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6687. +Memory consumption went from 371.3 MB to 371.0 MB. +Total: 4.264700 ms (FindLiveObjects: 0.674100 ms CreateObjectMapping: 0.379300 ms MarkObjects: 2.911500 ms DeleteObjects: 0.297300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.765 seconds +Refreshing native plugins compatible for Editor in 17.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.972 seconds +Domain Reload Profiling: 1729ms + BeginReloadAssembly (224ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (75ms) + TypeCache.Refresh (42ms) + TypeCache.ScanAssembly (19ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (14ms) + FinalizeReload (973ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 10.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6690. +Memory consumption went from 373.2 MB to 372.9 MB. +Total: 3.575300 ms (FindLiveObjects: 0.535500 ms CreateObjectMapping: 0.251100 ms MarkObjects: 2.490700 ms DeleteObjects: 0.296900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.752 seconds +Refreshing native plugins compatible for Editor in 12.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.171 seconds +Domain Reload Profiling: 1915ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (482ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (60ms) + TypeCache.Refresh (36ms) + TypeCache.ScanAssembly (22ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1172ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (494ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (338ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 17.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.4 KB). Loaded Objects now: 6693. +Memory consumption went from 375.2 MB to 374.8 MB. +Total: 5.587000 ms (FindLiveObjects: 0.642100 ms CreateObjectMapping: 0.622300 ms MarkObjects: 3.951300 ms DeleteObjects: 0.370000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.888 seconds +Refreshing native plugins compatible for Editor in 15.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.625 seconds +Domain Reload Profiling: 2503ms + BeginReloadAssembly (226ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (55ms) + LoadAllAssembliesAndSetupDomain (550ms) + LoadAssemblies (603ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (61ms) + TypeCache.Refresh (36ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1626ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (748ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (46ms) + SetLoadedEditorAssemblies (27ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (363ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Script is not up to date after domain reload: guid(d96b5b6d30384c7482ce18479c06ebfb) path("Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs") state(2) +Refreshing native plugins compatible for Editor in 17.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6695. +Memory consumption went from 377.1 MB to 376.7 MB. +Total: 3.413100 ms (FindLiveObjects: 0.607900 ms CreateObjectMapping: 0.293900 ms MarkObjects: 2.244300 ms DeleteObjects: 0.265600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.796 seconds +Refreshing native plugins compatible for Editor in 11.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.934 seconds +Domain Reload Profiling: 1713ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (483ms) + LoadAssemblies (540ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (28ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (13ms) + FinalizeReload (935ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6699. +Memory consumption went from 379.0 MB to 378.7 MB. +Total: 3.488100 ms (FindLiveObjects: 0.636300 ms CreateObjectMapping: 0.256400 ms MarkObjects: 2.369200 ms DeleteObjects: 0.224600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.849 seconds +Refreshing native plugins compatible for Editor in 11.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.156 seconds +Domain Reload Profiling: 1996ms + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (523ms) + LoadAssemblies (566ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (28ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1156ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (497ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (333ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 18.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6702. +Memory consumption went from 380.9 MB to 380.6 MB. +Total: 3.468600 ms (FindLiveObjects: 0.603100 ms CreateObjectMapping: 0.332500 ms MarkObjects: 2.215700 ms DeleteObjects: 0.316300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.936 seconds +Refreshing native plugins compatible for Editor in 12.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.007 seconds +Domain Reload Profiling: 1932ms + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (588ms) + LoadAssemblies (645ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (39ms) + TypeCache.ScanAssembly (20ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1008ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (408ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 14.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6705. +Memory consumption went from 382.9 MB to 382.5 MB. +Total: 3.514400 ms (FindLiveObjects: 0.592100 ms CreateObjectMapping: 0.270700 ms MarkObjects: 2.350000 ms DeleteObjects: 0.299600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.708 seconds +Refreshing native plugins compatible for Editor in 11.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.361 seconds +Domain Reload Profiling: 2059ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (59ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1361ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (72ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (233ms) + ProcessInitializeOnLoadAttributes (284ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Script is not up to date after domain reload: guid(d96b5b6d30384c7482ce18479c06ebfb) path("Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs") state(2) +Refreshing native plugins compatible for Editor in 11.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6707. +Memory consumption went from 384.8 MB to 384.4 MB. +Total: 3.646400 ms (FindLiveObjects: 0.435500 ms CreateObjectMapping: 0.214500 ms MarkObjects: 2.725500 ms DeleteObjects: 0.269500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.814 seconds +Refreshing native plugins compatible for Editor in 14.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.961 seconds +Domain Reload Profiling: 1765ms + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (532ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (961ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6711. +Memory consumption went from 386.7 MB to 386.3 MB. +Total: 3.667900 ms (FindLiveObjects: 0.450600 ms CreateObjectMapping: 0.269000 ms MarkObjects: 2.634400 ms DeleteObjects: 0.312500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.711 seconds +Refreshing native plugins compatible for Editor in 13.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.981 seconds +Domain Reload Profiling: 1681ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (421ms) + LoadAssemblies (458ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (981ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (372ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6714. +Memory consumption went from 388.6 MB to 388.3 MB. +Total: 3.124300 ms (FindLiveObjects: 0.456400 ms CreateObjectMapping: 0.227800 ms MarkObjects: 2.240000 ms DeleteObjects: 0.199100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.920 seconds +Refreshing native plugins compatible for Editor in 15.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.042 seconds +Domain Reload Profiling: 1951ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (591ms) + LoadAssemblies (616ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (82ms) + TypeCache.Refresh (57ms) + TypeCache.ScanAssembly (37ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1043ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (419ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 16.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6717. +Memory consumption went from 390.5 MB to 390.2 MB. +Total: 3.313800 ms (FindLiveObjects: 0.665800 ms CreateObjectMapping: 0.255700 ms MarkObjects: 2.152300 ms DeleteObjects: 0.238700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.859 seconds +Refreshing native plugins compatible for Editor in 12.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.964 seconds +Domain Reload Profiling: 1813ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (548ms) + LoadAssemblies (606ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (965ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (226ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.4 KB). Loaded Objects now: 6720. +Memory consumption went from 392.5 MB to 392.1 MB. +Total: 3.704500 ms (FindLiveObjects: 0.550800 ms CreateObjectMapping: 0.264100 ms MarkObjects: 2.611500 ms DeleteObjects: 0.277000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.864 seconds +Refreshing native plugins compatible for Editor in 12.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.966 seconds +Domain Reload Profiling: 1821ms + BeginReloadAssembly (251ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (506ms) + LoadAssemblies (600ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (10ms) + FinalizeReload (967ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (383ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 33.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6723. +Memory consumption went from 394.4 MB to 394.1 MB. +Total: 3.827500 ms (FindLiveObjects: 0.592500 ms CreateObjectMapping: 0.327900 ms MarkObjects: 2.589200 ms DeleteObjects: 0.316800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.851 seconds +Refreshing native plugins compatible for Editor in 18.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.181 seconds +Domain Reload Profiling: 2024ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (568ms) + LoadAssemblies (596ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (60ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1182ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (450ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(92bb9edc6770cfd47830748c4ca30c59) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs") state(2) +Refreshing native plugins compatible for Editor in 11.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6725. +Memory consumption went from 396.3 MB to 396.0 MB. +Total: 5.148400 ms (FindLiveObjects: 1.061700 ms CreateObjectMapping: 0.849800 ms MarkObjects: 2.924300 ms DeleteObjects: 0.310400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.708 seconds +Refreshing native plugins compatible for Editor in 17.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.051 seconds +Domain Reload Profiling: 1750ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (470ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (63ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1052ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (405ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 15.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6729. +Memory consumption went from 398.2 MB to 397.9 MB. +Total: 4.142400 ms (FindLiveObjects: 0.441600 ms CreateObjectMapping: 0.221500 ms MarkObjects: 3.023900 ms DeleteObjects: 0.453900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.805 seconds +Refreshing native plugins compatible for Editor in 13.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.972 seconds +Domain Reload Profiling: 1767ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (460ms) + LoadAssemblies (564ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (972ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6732. +Memory consumption went from 400.1 MB to 399.8 MB. +Total: 3.513100 ms (FindLiveObjects: 0.379300 ms CreateObjectMapping: 0.188800 ms MarkObjects: 2.745700 ms DeleteObjects: 0.198100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.647 seconds +Refreshing native plugins compatible for Editor in 10.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.111 seconds +Domain Reload Profiling: 1751ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (354ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1112ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (517ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (351ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6735. +Memory consumption went from 402.1 MB to 401.7 MB. +Total: 6.571000 ms (FindLiveObjects: 1.044300 ms CreateObjectMapping: 0.575600 ms MarkObjects: 4.475100 ms DeleteObjects: 0.474100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.898 seconds +Refreshing native plugins compatible for Editor in 11.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.931 seconds +Domain Reload Profiling: 1819ms + BeginReloadAssembly (219ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (556ms) + LoadAssemblies (642ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (12ms) + FinalizeReload (931ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6738. +Memory consumption went from 404.0 MB to 403.7 MB. +Total: 3.537600 ms (FindLiveObjects: 0.559800 ms CreateObjectMapping: 0.289000 ms MarkObjects: 2.461000 ms DeleteObjects: 0.226700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.640 seconds +Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.067 seconds +Domain Reload Profiling: 1698ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1067ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (422ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6741. +Memory consumption went from 405.9 MB to 405.6 MB. +Total: 5.425900 ms (FindLiveObjects: 1.149400 ms CreateObjectMapping: 0.438100 ms MarkObjects: 3.505900 ms DeleteObjects: 0.330600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.620 seconds +Refreshing native plugins compatible for Editor in 16.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.174 seconds +Domain Reload Profiling: 1785ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (427ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1174ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (475ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6744. +Memory consumption went from 407.9 MB to 407.5 MB. +Total: 5.157400 ms (FindLiveObjects: 1.071600 ms CreateObjectMapping: 0.527900 ms MarkObjects: 3.214400 ms DeleteObjects: 0.340300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.644 seconds +Refreshing native plugins compatible for Editor in 13.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.183 seconds +Domain Reload Profiling: 1818ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1183ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (489ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (326ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 12.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6747. +Memory consumption went from 409.8 MB to 409.4 MB. +Total: 3.674300 ms (FindLiveObjects: 0.613600 ms CreateObjectMapping: 0.234200 ms MarkObjects: 2.528200 ms DeleteObjects: 0.295900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.669 seconds +Refreshing native plugins compatible for Editor in 14.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.173 seconds +Domain Reload Profiling: 2797ms + BeginReloadAssembly (790ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (169ms) + RebuildCommonClasses (119ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (627ms) + LoadAssemblies (992ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (82ms) + TypeCache.Refresh (28ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (27ms) + ResolveRequiredComponents (19ms) + FinalizeReload (1173ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (497ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (343ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6750. +Memory consumption went from 411.7 MB to 411.4 MB. +Total: 2.892700 ms (FindLiveObjects: 0.390300 ms CreateObjectMapping: 0.198500 ms MarkObjects: 2.112900 ms DeleteObjects: 0.190300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.704 seconds +Refreshing native plugins compatible for Editor in 12.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.071 seconds +Domain Reload Profiling: 1766ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (436ms) + LoadAssemblies (502ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1072ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (415ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 14.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6753. +Memory consumption went from 413.6 MB to 413.3 MB. +Total: 4.276100 ms (FindLiveObjects: 0.905800 ms CreateObjectMapping: 0.406100 ms MarkObjects: 2.659200 ms DeleteObjects: 0.303000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.882 seconds +Refreshing native plugins compatible for Editor in 18.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.767 seconds +Domain Reload Profiling: 3608ms + BeginReloadAssembly (565ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (138ms) + RebuildCommonClasses (142ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (312ms) + LoadAllAssembliesAndSetupDomain (802ms) + LoadAssemblies (1123ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1768ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (456ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6756. +Memory consumption went from 415.5 MB to 415.2 MB. +Total: 3.590300 ms (FindLiveObjects: 0.510800 ms CreateObjectMapping: 0.418100 ms MarkObjects: 2.439200 ms DeleteObjects: 0.221200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.841 seconds +Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.982 seconds +Domain Reload Profiling: 1815ms + BeginReloadAssembly (258ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (580ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (983ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (392ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6759. +Memory consumption went from 417.5 MB to 417.1 MB. +Total: 3.841400 ms (FindLiveObjects: 0.708500 ms CreateObjectMapping: 0.339800 ms MarkObjects: 2.478400 ms DeleteObjects: 0.313300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.639 seconds +Refreshing native plugins compatible for Editor in 13.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.113 seconds +Domain Reload Profiling: 1744ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1114ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (425ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6762. +Memory consumption went from 419.4 MB to 419.0 MB. +Total: 3.957300 ms (FindLiveObjects: 0.570900 ms CreateObjectMapping: 0.225100 ms MarkObjects: 2.854900 ms DeleteObjects: 0.304600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 11.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.111 seconds +Domain Reload Profiling: 1775ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (408ms) + LoadAssemblies (472ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1112ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (456ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (284ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6765. +Memory consumption went from 421.3 MB to 421.0 MB. +Total: 6.794900 ms (FindLiveObjects: 1.236000 ms CreateObjectMapping: 0.733300 ms MarkObjects: 4.133800 ms DeleteObjects: 0.688100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.835 seconds +Refreshing native plugins compatible for Editor in 12.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.348 seconds +Domain Reload Profiling: 2169ms + BeginReloadAssembly (208ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (21ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (500ms) + LoadAssemblies (599ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1348ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (575ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (374ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Refreshing native plugins compatible for Editor in 13.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6768. +Memory consumption went from 423.2 MB to 422.9 MB. +Total: 3.392400 ms (FindLiveObjects: 0.731000 ms CreateObjectMapping: 0.248200 ms MarkObjects: 2.147900 ms DeleteObjects: 0.263600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.873 seconds +Refreshing native plugins compatible for Editor in 17.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.201 seconds +Domain Reload Profiling: 2062ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (91ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (91ms) + LoadAllAssembliesAndSetupDomain (438ms) + LoadAssemblies (522ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (461ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (102ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 17.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6771. +Memory consumption went from 425.2 MB to 424.8 MB. +Total: 3.492300 ms (FindLiveObjects: 0.529700 ms CreateObjectMapping: 0.238000 ms MarkObjects: 2.474400 ms DeleteObjects: 0.248900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.699 seconds +Refreshing native plugins compatible for Editor in 15.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.112 seconds +Domain Reload Profiling: 1803ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (434ms) + LoadAssemblies (496ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1112ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (430ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6774. +Memory consumption went from 427.1 MB to 426.8 MB. +Total: 4.010000 ms (FindLiveObjects: 0.760600 ms CreateObjectMapping: 0.366700 ms MarkObjects: 2.586900 ms DeleteObjects: 0.294000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.573 seconds +Refreshing native plugins compatible for Editor in 25.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.910 seconds +Domain Reload Profiling: 4471ms + BeginReloadAssembly (968ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (444ms) + RebuildCommonClasses (75ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (1428ms) + LoadAssemblies (1685ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (129ms) + TypeCache.Refresh (51ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (31ms) + ResolveRequiredComponents (32ms) + FinalizeReload (1910ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (552ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (369ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 13.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6777. +Memory consumption went from 429.0 MB to 428.7 MB. +Total: 7.652400 ms (FindLiveObjects: 1.080700 ms CreateObjectMapping: 0.751900 ms MarkObjects: 5.375500 ms DeleteObjects: 0.441200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 14.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.164 seconds +Domain Reload Profiling: 1805ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (387ms) + LoadAssemblies (450ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (492ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 16.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6780. +Memory consumption went from 430.9 MB to 430.6 MB. +Total: 3.622500 ms (FindLiveObjects: 0.620300 ms CreateObjectMapping: 0.333800 ms MarkObjects: 2.360300 ms DeleteObjects: 0.305500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.685 seconds +Refreshing native plugins compatible for Editor in 13.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.136 seconds +Domain Reload Profiling: 1813ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (408ms) + LoadAssemblies (483ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1137ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (471ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (293ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 12.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6783. +Memory consumption went from 432.8 MB to 432.5 MB. +Total: 4.033200 ms (FindLiveObjects: 0.810700 ms CreateObjectMapping: 0.525700 ms MarkObjects: 2.462500 ms DeleteObjects: 0.232700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.349 seconds +Refreshing native plugins compatible for Editor in 28.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.897 seconds +Domain Reload Profiling: 4229ms + BeginReloadAssembly (1283ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (378ms) + RebuildCommonClasses (75ms) + RebuildNativeTypeToScriptingClass (23ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (877ms) + LoadAssemblies (1524ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (99ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (49ms) + FinalizeReload (1898ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (455ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Refreshing native plugins compatible for Editor in 10.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6786. +Memory consumption went from 434.8 MB to 434.4 MB. +Total: 3.285700 ms (FindLiveObjects: 0.432900 ms CreateObjectMapping: 0.208000 ms MarkObjects: 2.317300 ms DeleteObjects: 0.326000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Refreshing native plugins compatible for Editor in 11.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.070 seconds +Domain Reload Profiling: 1718ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (446ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1071ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (424ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (1ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 14.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6789. +Memory consumption went from 436.7 MB to 436.4 MB. +Total: 4.083300 ms (FindLiveObjects: 0.557400 ms CreateObjectMapping: 0.398700 ms MarkObjects: 2.850700 ms DeleteObjects: 0.274800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.684 seconds +Refreshing native plugins compatible for Editor in 14.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.115 seconds +Domain Reload Profiling: 1791ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (408ms) + LoadAssemblies (484ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1116ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (446ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (291ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6792. +Memory consumption went from 438.6 MB to 438.3 MB. +Total: 4.443900 ms (FindLiveObjects: 0.739400 ms CreateObjectMapping: 0.331400 ms MarkObjects: 2.872700 ms DeleteObjects: 0.497800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.715 seconds +Refreshing native plugins compatible for Editor in 16.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.104 seconds +Domain Reload Profiling: 1810ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (422ms) + LoadAssemblies (497ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1104ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (448ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 16.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6795. +Memory consumption went from 440.5 MB to 440.2 MB. +Total: 7.583400 ms (FindLiveObjects: 0.878300 ms CreateObjectMapping: 0.817500 ms MarkObjects: 5.106300 ms DeleteObjects: 0.778100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.754 seconds +Callback registration failed. Increase kMaxCallback. +Fatal Error! Callback registration failed. Increase kMaxCallback. +Crash!!! +SymInit: Symbol-SearchPath: 'D:/Unity/2022.3.16f1c1/Editor/Data/Mono;.;D:\myproject\JisolGame\JNFrame;D:\myproject\JisolGame\JNFrame\Library\BurstCache\JIT;D:\Unity\2022.3.16f1c1\Editor;C:\WINDOWS;C:\WINDOWS\system32;', symOptions: 534, UserName: 'Administrator' +OS-Version: 10.0.0 +D:\Unity\2022.3.16f1c1\Editor\Unity.exe:Unity.exe (00007FF722BA0000), size: 89034752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2022.3.16.16155 +C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (00007FFE5F330000), size: 2191360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFE5E4C0000), size: 802816 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFE5C670000), size: 3825664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\user32.dll:user32.dll (00007FFE5F130000), size: 1761280 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\win32u.dll:win32u.dll (00007FFE5CF60000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\System32\GDI32.dll:GDI32.dll (00007FFE5EAF0000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\gdi32full.dll:gdi32full.dll (00007FFE5CC60000), size: 1146880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2861 +C:\WINDOWS\System32\msvcp_win.dll:msvcp_win.dll (00007FFE5CA20000), size: 630784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\ucrtbase.dll:ucrtbase.dll (00007FFE5CB40000), size: 1118208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\advapi32.dll:advapi32.dll (00007FFE5D9C0000), size: 733184 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\System32\msvcrt.dll:msvcrt.dll (00007FFE5E820000), size: 684032 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22621.2506 +C:\WINDOWS\System32\sechost.dll:sechost.dll (00007FFE5EB20000), size: 688128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\System32\bcrypt.dll:bcrypt.dll (00007FFE5D050000), size: 163840 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\RPCRT4.dll:RPCRT4.dll (00007FFE5DE30000), size: 1142784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\shell32.dll:shell32.dll (00007FFE5D080000), size: 8757248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\System32\setupapi.dll:setupapi.dll (00007FFE5EBD0000), size: 4669440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\psapi.dll:psapi.dll (00007FFE5F2E0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\iphlpapi.dll:iphlpapi.dll (00007FFE5B190000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\WS2_32.dll:WS2_32.dll (00007FFE5E960000), size: 462848 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\hid.dll:hid.dll (00007FFE5AEC0000), size: 57344 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\WINTRUST.dll:WINTRUST.dll (00007FFE5CEF0000), size: 438272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFE5D8E0000), size: 880640 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\combase.dll:combase.dll (00007FFE5DF50000), size: 3706880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\SYSTEM32\dhcpcsvc.dll:dhcpcsvc.dll (00007FFE56E50000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\dhcpcsvc6.dll:dhcpcsvc6.dll (00007FFE56E70000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\wsock32.dll:wsock32.dll (00007FFE3C150000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\IMM32.dll:IMM32.dll (00007FFE5DC20000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\ole32.dll:ole32.dll (00007FFE5DA80000), size: 1703936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +D:\Unity\2022.3.16f1c1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFDC4B50000), size: 10067968 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.3.3.0 +D:\Unity\2022.3.16f1c1\Editor\s3tcompress.dll:s3tcompress.dll (00007FFE57CB0000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFE5F0D0000), size: 385024 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +D:\Unity\2022.3.16f1c1\Editor\etccompress.dll:etccompress.dll (00007FFE2F130000), size: 5066752 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\CRYPT32.dll:CRYPT32.dll (00007FFE5CD80000), size: 1466368 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +D:\Unity\2022.3.16f1c1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFE2F610000), size: 1826816 (result: 0), SymType: '-deferred-', PDB: '' +D:\Unity\2022.3.16f1c1\Editor\compress_bc7e.dll:compress_bc7e.dll (00007FFE3C440000), size: 1433600 (result: 0), SymType: '-deferred-', PDB: '' +D:\Unity\2022.3.16f1c1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6582272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 +D:\Unity\2022.3.16f1c1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFE57CA0000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 +D:\Unity\2022.3.16f1c1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFE31DE0000), size: 1187840 (result: 0), SymType: '-deferred-', PDB: '' +D:\Unity\2022.3.16f1c1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFDC54F0000), size: 8990720 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 23.0.0.0 +C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (00007FFE56350000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (00007FFE52CC0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\dwmapi.dll:dwmapi.dll (00007FFE5A010000), size: 176128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFE57070000), size: 1273856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (00007FFE3B220000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFE16FA0000), size: 1048576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFE31140000), size: 581632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.34.31931.0 +C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFE4E5D0000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.34.31931.0 +D:\Unity\2022.3.16f1c1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFE4F0C0000), size: 499712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 23.0.0.0 +C:\WINDOWS\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFE33730000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.34.31931.0 +C:\WINDOWS\SYSTEM32\Secur32.dll:Secur32.dll (00007FFE5B560000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\dxcore.dll:dxcore.dll (00007FFE59CE0000), size: 221184 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFE5B9F0000), size: 274432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +D:\Unity\2022.3.16f1c1\Editor\OpenRL.dll:OpenRL.dll (000002A949680000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 +D:\Unity\2022.3.16f1c1\Editor\embree.dll:embree.dll (00007FFDC3B60000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 +C:\WINDOWS\SYSTEM32\MSVCP100.dll:MSVCP100.dll (000000005C890000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +C:\WINDOWS\SYSTEM32\MSVCR100.dll:MSVCR100.dll (000000005C7B0000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +D:\Unity\2022.3.16f1c1\Editor\tbb.dll:tbb.dll (00007FFE3C740000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 +C:\WINDOWS\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFE3C2B0000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +C:\WINDOWS\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFE3C060000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +D:\Unity\2022.3.16f1c1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (000002A94A2D0000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 +C:\WINDOWS\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFE5BEC0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFE5BE60000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\system32\rsaenh.dll:rsaenh.dll (00007FFE5B6F0000), size: 217088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\CRYPTBASE.dll:CRYPTBASE.dll (00007FFE5BE80000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFE5CAC0000), size: 499712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\MSWSOCK.DLL:MSWSOCK.DLL (00007FFE5BC10000), size: 430080 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\cfgmgr32.DLL:cfgmgr32.DLL (00007FFE5C360000), size: 319488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFE5B790000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2715 +C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (00007FFE59BE0000), size: 700416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.3007 +C:\WINDOWS\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFE5A5C0000), size: 9396224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\SYSTEM32\wintypes.dll:wintypes.dll (00007FFE5A480000), size: 1302528 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\SHCORE.dll:SHCORE.dll (00007FFE5DD30000), size: 995328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2715 +C:\WINDOWS\SYSTEM32\profapi.dll:profapi.dll (00007FFE5C5A0000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\system32\IconCodecService.dll:IconCodecService.dll (00007FFE4D970000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFE57F40000), size: 1769472 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\clbcatq.dll:clbcatq.dll (00007FFE5E5B0000), size: 720896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 +C:\WINDOWS\System32\netprofm.dll:netprofm.dll (00007FFE57BD0000), size: 491520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\npmproxy.dll:npmproxy.dll (00007FFE56360000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\NSI.dll:NSI.dll (00007FFE5E950000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFE5B210000), size: 1019904 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\system32\napinsp.dll:napinsp.dll (00007FFE3DAA0000), size: 94208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\system32\pnrpnsp.dll:pnrpnsp.dll (00007FFE3DA40000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\winrnr.dll:winrnr.dll (00007FFE3DA20000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\system32\wshbth.dll:wshbth.dll (00007FFE3DA00000), size: 86016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\system32\nlansp_c.dll:nlansp_c.dll (00007FFE3D9D0000), size: 135168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFE569D0000), size: 536576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFE54060000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +D:\Unity\2022.3.16f1c1\Editor\NVUnityPlugin.DLL:NVUnityPlugin.DLL (00007FFDC0C70000), size: 1519616 (result: 0), SymType: '-deferred-', PDB: '' +D:\Unity\2022.3.16f1c1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFDDAD80000), size: 540672 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\MMDevApi.dll:MMDevApi.dll (00007FFE53FB0000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\DEVOBJ.dll:DEVOBJ.dll (00007FFE5C330000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\d3d11.dll:d3d11.dll (00007FFE58D50000), size: 2453504 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\dxgi.dll:dxgi.dll (00007FFE59D30000), size: 1015808 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll:directxdatabasehelper.dll (00007FFE56AF0000), size: 303104 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_7e5fd280efaa5445\nvldumdx.dll:nvldumdx.dll (00007FFE534C0000), size: 770048 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 31.0.15.3623 +C:\WINDOWS\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFE55610000), size: 204800 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\drvstore.dll:drvstore.dll (00007FFE554B0000), size: 1409024 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\wldp.dll:wldp.dll (00007FFE5BF30000), size: 307200 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\System32\imagehlp.dll:imagehlp.dll (00007FFE5E8D0000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_7e5fd280efaa5445\nvwgf2umx.dll:nvwgf2umx.dll (00007FFE45CE0000), size: 99463168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 31.0.15.3623 +C:\WINDOWS\system32\nvspcap64.dll:nvspcap64.dll (00007FFE248F0000), size: 2953216 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.27.0.112 +C:\WINDOWS\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFE5B7B0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_7e5fd280efaa5445\Display.NvContainer\MessageBus.dll:MessageBus.dll (00007FFE50350000), size: 7565312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.22.2758.1620 +C:\WINDOWS\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFE553D0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFE4C6F0000), size: 524288 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFE4BC00000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\system32\wbem\fastprox.dll:fastprox.dll (00007FFE4BE50000), size: 1015808 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\amsi.dll:amsi.dll (00007FFE53020000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (00007FFE5BD00000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.23110.3-0\MpOav.dll:MpOav.dll (00007FFE52D00000), size: 507904 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.23110.3 +D:\Unity\2022.3.16f1c1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFDC0620000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 +C:\WINDOWS\SYSTEM32\opencl.dll:opencl.dll (00007FFDC04B0000), size: 1490944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.3.0 +D:\Unity\2022.3.16f1c1\Editor\radeonrays.dll:radeonrays.dll (00007FFDC0420000), size: 557056 (result: 0), SymType: '-deferred-', PDB: '' +D:\Unity\2022.3.16f1c1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFDBF9C0000), size: 10825728 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFE57820000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22621.2506 +C:\Windows\System32\Windows.FileExplorer.Common.dll:Windows.FileExplorer.Common.dll (00007FFE3E7C0000), size: 675840 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\edputil.dll:edputil.dll (00007FFE3E3F0000), size: 163840 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.1 +C:\Windows\System32\Windows.StateRepositoryPS.dll:Windows.StateRepositoryPS.dll (00007FFE3ED10000), size: 962560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\SYSTEM32\urlmon.dll:urlmon.dll (00007FFE4C250000), size: 2031616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.22621.2792 +C:\WINDOWS\SYSTEM32\srvcli.dll:srvcli.dll (00007FFE4F5E0000), size: 163840 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\netutils.dll:netutils.dll (00007FFE5B180000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\iertutil.dll:iertutil.dll (00007FFE41450000), size: 2867200 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.22621.3007 +C:\Windows\System32\cldapi.dll:cldapi.dll (00007FFE3E460000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\WINDOWS\SYSTEM32\virtdisk.dll:virtdisk.dll (00007FFE336C0000), size: 86016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\Windows\System32\appresolver.dll:appresolver.dll (00007FFE36110000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\Windows\System32\Bcp47Langs.dll:Bcp47Langs.dll (00007FFE4E690000), size: 393216 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 +C:\Windows\System32\OneCoreUAPCommonProxyStub.dll:OneCoreUAPCommonProxyStub.dll (00007FFE53890000), size: 6443008 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2792 +C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFE512F0000), size: 2306048 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22621.2506 + +========== OUTPUTTING STACK TRACE ================== + +0x00007FFE5C6D567C (KERNELBASE) RaiseException +0x00007FF724757790 (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF72475820D (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF725409CBF (Unity) DebugStringToFilePostprocessedStacktrace +0x00007FF72540941A (Unity) DebugStringToFile +0x00007FF724BF84FF (Unity) LoadDomainAndUserAssemblies +0x00007FF724BF8A04 (Unity) LoadUserAssemblies +0x00007FF7250F5E45 (Unity) ::operator() +0x00007FF725131392 (Unity) asio::detail::completion_handler,asio::io_context::basic_executor_type,0> >::do_complete +0x00007FF72511D33E (Unity) asio::detail::win_iocp_io_context::do_one +0x00007FF72511EFA4 (Unity) asio::detail::win_iocp_io_context::run +0x00007FF72512F73C (Unity) IOService::Run +0x00007FF72510329F (Unity) AssetImportWorkerClient::Run +0x00007FF7250CE1D7 (Unity) RunAssetImportWorkerClientV2 +0x00007FF7250CE25B (Unity) RunAssetImporterV2 +0x00007FF7248D2E1D (Unity) Application::InitializeProject +0x00007FF724D5AA35 (Unity) WinMain +0x00007FF72613ABDE (Unity) __scrt_common_main_seh +0x00007FFE5E4D257D (KERNEL32) BaseThreadInitThunk +0x00007FFE5F38AA58 (ntdll) RtlUserThreadStart + +========== END OF STACKTRACE =========== + +A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: + * C:/Users/ADMINI~1/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/JNFrame/Logs/AssetImportWorker2.log b/JNFrame/Logs/AssetImportWorker2.log new file mode 100644 index 00000000..6077f13c --- /dev/null +++ b/JNFrame/Logs/AssetImportWorker2.log @@ -0,0 +1,8512 @@ +Using pre-set license +Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'zh' Physical Memory: 32651 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Unity\2022.3.16f1c1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker2 +-projectPath +D:/myproject/JisolGame/JNFrame +-logFile +Logs/AssetImportWorker2.log +-srvPort +49487 +Successfully changed project path to: D:/myproject/JisolGame/JNFrame +D:/myproject/JisolGame/JNFrame +[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-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=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 [27464] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 3820453222 [EditorId] 3820453222 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [27464] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 3820453222 [EditorId] 3820453222 [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 11 workers. +Refreshing native plugins compatible for Editor in 26.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) +[Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/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/2022.3.16f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56816 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.012106 seconds. +- Loaded All Assemblies, in 0.334 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Multiple ADB server instances found, the following ADB server instance have been terminated due to being run from another SDK. Process paths: +D:\AndroidSDK\platform-tools\adb.exe +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +UnityEditor.Android.AndroidDeploymentTargetsExtension:GetKnownTargets (UnityEditor.DeploymentTargets.IDeploymentTargetsMainThreadContext,UnityEditor.ProgressHandler) +UnityEditor.Android.TargetScanWorker:ScanSync () +UnityEditor.Android.TargetExtension:OnUsbDevicesChanged (UnityEditor.Hardware.UsbDevice[]) +UnityEditor.Android.TargetExtension:OnLoad () +UnityEditor.Modules.ModuleManager:InitializePlatformSupportModules () + +Android Extension - Scanning For ADB Devices 2464 ms +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.755 seconds +Domain Reload Profiling: 3085ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (126ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (124ms) + TypeCache.Refresh (122ms) + TypeCache.ScanAssembly (110ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (2755ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (2563ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (99ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 10.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +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] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.597 seconds +Domain Reload Profiling: 1319ms + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (17ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (512ms) + LoadAssemblies (363ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (225ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (6ms) + FinalizeReload (598ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (463ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (334ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 12.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5948 Unused Serialized files (Serialized files now loaded: 0) +Unloading 61 unused Assets / (371.6 KB). Loaded Objects now: 6411. +Memory consumption went from 203.8 MB to 203.5 MB. +Total: 3.044500 ms (FindLiveObjects: 0.347800 ms CreateObjectMapping: 0.242700 ms MarkObjects: 2.243800 ms DeleteObjects: 0.209600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.670 seconds +Refreshing native plugins compatible for Editor in 12.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.927 seconds +Domain Reload Profiling: 1588ms + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (423ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (927ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6414. +Memory consumption went from 203.6 MB to 203.2 MB. +Total: 3.142600 ms (FindLiveObjects: 0.394300 ms CreateObjectMapping: 0.255700 ms MarkObjects: 2.300500 ms DeleteObjects: 0.191300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.620 seconds +Refreshing native plugins compatible for Editor in 12.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.011 seconds +Domain Reload Profiling: 1621ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (419ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1012ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (453ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 15.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.1 KB). Loaded Objects now: 6417. +Memory consumption went from 205.5 MB to 205.2 MB. +Total: 3.595900 ms (FindLiveObjects: 0.570800 ms CreateObjectMapping: 0.298200 ms MarkObjects: 2.382800 ms DeleteObjects: 0.335100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 5846.620347 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d155afdefc61a64ca5e0563215b491a') in 0.104543 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 0.780465 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24d9be671b92fda35e3b6b60c0b6541c') in 0.000776 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 71.507083 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs + artifactKey: Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs using Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f56af6d2e0e9f177d396754662fb1b5') in 0.000610 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 8.314821 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs + artifactKey: Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs using Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f872695977ca33beeff41945d06d2f08') in 0.000847 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.705 seconds +Refreshing native plugins compatible for Editor in 11.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.935 seconds +Domain Reload Profiling: 1631ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (420ms) + LoadAssemblies (489ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (935ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.4 KB). Loaded Objects now: 6427. +Memory consumption went from 207.3 MB to 207.0 MB. +Total: 2.761100 ms (FindLiveObjects: 0.388000 ms CreateObjectMapping: 0.212900 ms MarkObjects: 1.948300 ms DeleteObjects: 0.210500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.732 seconds +Refreshing native plugins compatible for Editor in 14.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.183 seconds +Domain Reload Profiling: 1907ms + BeginReloadAssembly (210ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (429ms) + LoadAssemblies (505ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1184ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (332ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6430. +Memory consumption went from 209.5 MB to 209.2 MB. +Total: 3.332900 ms (FindLiveObjects: 0.492300 ms CreateObjectMapping: 0.206700 ms MarkObjects: 2.425300 ms DeleteObjects: 0.207400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.683 seconds +Refreshing native plugins compatible for Editor in 14.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.934 seconds +Domain Reload Profiling: 1606ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (390ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (9ms) + FinalizeReload (934ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 10.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6433. +Memory consumption went from 211.5 MB to 211.1 MB. +Total: 3.206600 ms (FindLiveObjects: 0.586900 ms CreateObjectMapping: 0.242000 ms MarkObjects: 2.131500 ms DeleteObjects: 0.244300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.696 seconds +Refreshing native plugins compatible for Editor in 14.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.936 seconds +Domain Reload Profiling: 1624ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (462ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (13ms) + FinalizeReload (937ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (375ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 10.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.4 KB). Loaded Objects now: 6436. +Memory consumption went from 213.4 MB to 213.0 MB. +Total: 4.653800 ms (FindLiveObjects: 0.728000 ms CreateObjectMapping: 0.285800 ms MarkObjects: 3.194200 ms DeleteObjects: 0.442500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds +Refreshing native plugins compatible for Editor in 12.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.993 seconds +Domain Reload Profiling: 1643ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (434ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (994ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (300ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 10.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.2 KB). Loaded Objects now: 6439. +Memory consumption went from 215.3 MB to 215.0 MB. +Total: 3.907900 ms (FindLiveObjects: 0.478600 ms CreateObjectMapping: 0.215900 ms MarkObjects: 2.986800 ms DeleteObjects: 0.225400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.663 seconds +Refreshing native plugins compatible for Editor in 12.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.908 seconds +Domain Reload Profiling: 1561ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (433ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (8ms) + FinalizeReload (908ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (209ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.4 KB). Loaded Objects now: 6442. +Memory consumption went from 217.2 MB to 216.9 MB. +Total: 3.609000 ms (FindLiveObjects: 0.490700 ms CreateObjectMapping: 0.313400 ms MarkObjects: 2.567300 ms DeleteObjects: 0.236200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.726 seconds +Refreshing native plugins compatible for Editor in 10.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.044 seconds +Domain Reload Profiling: 1762ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (446ms) + LoadAssemblies (489ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1044ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (410ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.5 KB). Loaded Objects now: 6445. +Memory consumption went from 219.2 MB to 218.8 MB. +Total: 3.070700 ms (FindLiveObjects: 0.392400 ms CreateObjectMapping: 0.219400 ms MarkObjects: 2.239500 ms DeleteObjects: 0.218300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 12.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.903 seconds +Domain Reload Profiling: 1568ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (454ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (903ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.1 KB). Loaded Objects now: 6448. +Memory consumption went from 221.1 MB to 220.7 MB. +Total: 3.348700 ms (FindLiveObjects: 0.415300 ms CreateObjectMapping: 0.214500 ms MarkObjects: 2.497800 ms DeleteObjects: 0.220200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Refreshing native plugins compatible for Editor in 14.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.932 seconds +Domain Reload Profiling: 1581ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (435ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (7ms) + FinalizeReload (933ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 10.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6451. +Memory consumption went from 223.0 MB to 222.7 MB. +Total: 3.004000 ms (FindLiveObjects: 0.408400 ms CreateObjectMapping: 0.216000 ms MarkObjects: 2.171400 ms DeleteObjects: 0.207000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.705 seconds +Refreshing native plugins compatible for Editor in 13.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.970 seconds +Domain Reload Profiling: 1665ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (434ms) + LoadAssemblies (488ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (970ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6454. +Memory consumption went from 224.9 MB to 224.6 MB. +Total: 4.239700 ms (FindLiveObjects: 0.435900 ms CreateObjectMapping: 0.248800 ms MarkObjects: 3.012900 ms DeleteObjects: 0.540700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 8872.353083 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b0a60e5bea0f5a9f146186fe63684cf0') in 0.002236 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.646 seconds +Refreshing native plugins compatible for Editor in 12.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.915 seconds +Domain Reload Profiling: 1552ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (423ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (915ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (226ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (377.5 KB). Loaded Objects now: 6457. +Memory consumption went from 226.6 MB to 226.3 MB. +Total: 3.256600 ms (FindLiveObjects: 0.633900 ms CreateObjectMapping: 0.253700 ms MarkObjects: 2.119500 ms DeleteObjects: 0.248100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.727 seconds +Refreshing native plugins compatible for Editor in 13.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.982 seconds +Domain Reload Profiling: 1698ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (499ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (983ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (395ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 13.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6460. +Memory consumption went from 228.8 MB to 228.4 MB. +Total: 3.886700 ms (FindLiveObjects: 0.557500 ms CreateObjectMapping: 0.319800 ms MarkObjects: 2.750500 ms DeleteObjects: 0.257500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.050 seconds +Refreshing native plugins compatible for Editor in 26.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.921 seconds +Domain Reload Profiling: 1959ms + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (730ms) + LoadAssemblies (781ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (10ms) + FinalizeReload (922ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6463. +Memory consumption went from 230.7 MB to 230.3 MB. +Total: 3.578300 ms (FindLiveObjects: 0.414000 ms CreateObjectMapping: 0.236100 ms MarkObjects: 2.681000 ms DeleteObjects: 0.245400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.648 seconds +Refreshing native plugins compatible for Editor in 12.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.912 seconds +Domain Reload Profiling: 1551ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (8ms) + FinalizeReload (912ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6466. +Memory consumption went from 232.6 MB to 232.3 MB. +Total: 3.799800 ms (FindLiveObjects: 0.474500 ms CreateObjectMapping: 0.232700 ms MarkObjects: 2.865400 ms DeleteObjects: 0.226000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.798 seconds +Refreshing native plugins compatible for Editor in 14.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.073 seconds +Domain Reload Profiling: 1860ms + BeginReloadAssembly (217ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (484ms) + LoadAssemblies (538ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (28ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1073ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (377.4 KB). Loaded Objects now: 6469. +Memory consumption went from 234.6 MB to 234.2 MB. +Total: 3.047200 ms (FindLiveObjects: 0.466000 ms CreateObjectMapping: 0.205500 ms MarkObjects: 2.148100 ms DeleteObjects: 0.226600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.868 seconds +Refreshing native plugins compatible for Editor in 15.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.005 seconds +Domain Reload Profiling: 1863ms + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (597ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1005ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (403ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6472. +Memory consumption went from 236.4 MB to 236.1 MB. +Total: 4.828300 ms (FindLiveObjects: 0.479700 ms CreateObjectMapping: 0.230300 ms MarkObjects: 3.788000 ms DeleteObjects: 0.328300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.679 seconds +Refreshing native plugins compatible for Editor in 13.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.895 seconds +Domain Reload Profiling: 1565ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (8ms) + FinalizeReload (896ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.3 KB). Loaded Objects now: 6475. +Memory consumption went from 238.4 MB to 238.0 MB. +Total: 2.863200 ms (FindLiveObjects: 0.382800 ms CreateObjectMapping: 0.195800 ms MarkObjects: 2.091800 ms DeleteObjects: 0.192100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.853 seconds +Refreshing native plugins compatible for Editor in 10.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.925 seconds +Domain Reload Profiling: 1768ms + BeginReloadAssembly (215ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (533ms) + LoadAssemblies (606ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (925ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 14.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.4 KB). Loaded Objects now: 6478. +Memory consumption went from 240.3 MB to 240.0 MB. +Total: 3.357800 ms (FindLiveObjects: 0.446000 ms CreateObjectMapping: 0.257100 ms MarkObjects: 2.383400 ms DeleteObjects: 0.269800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 12.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.952 seconds +Domain Reload Profiling: 1632ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (953ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6481. +Memory consumption went from 242.2 MB to 241.9 MB. +Total: 3.183400 ms (FindLiveObjects: 0.441100 ms CreateObjectMapping: 0.241700 ms MarkObjects: 2.214500 ms DeleteObjects: 0.285100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.804 seconds +Refreshing native plugins compatible for Editor in 12.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.106 seconds +Domain Reload Profiling: 1899ms + BeginReloadAssembly (227ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (472ms) + LoadAssemblies (548ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1107ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (503ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (294ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(e61b94b311b605b4195e022f5370e558) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs") state(2) +Refreshing native plugins compatible for Editor in 18.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6483. +Memory consumption went from 244.1 MB to 243.8 MB. +Total: 3.794300 ms (FindLiveObjects: 0.600800 ms CreateObjectMapping: 0.262700 ms MarkObjects: 2.622800 ms DeleteObjects: 0.306100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.666 seconds +Refreshing native plugins compatible for Editor in 17.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.008 seconds +Domain Reload Profiling: 1664ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1008ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 13.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.7 KB). Loaded Objects now: 6487. +Memory consumption went from 246.1 MB to 245.7 MB. +Total: 4.789300 ms (FindLiveObjects: 0.671600 ms CreateObjectMapping: 0.814000 ms MarkObjects: 2.954900 ms DeleteObjects: 0.346000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.860 seconds +Refreshing native plugins compatible for Editor in 19.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.359 seconds +Domain Reload Profiling: 2207ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (65ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (468ms) + LoadAssemblies (551ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1359ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (478ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (51ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(e61b94b311b605b4195e022f5370e558) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs") state(2) +Refreshing native plugins compatible for Editor in 10.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6489. +Memory consumption went from 248.0 MB to 247.6 MB. +Total: 4.007700 ms (FindLiveObjects: 0.406400 ms CreateObjectMapping: 0.219100 ms MarkObjects: 3.141700 ms DeleteObjects: 0.239300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 19.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.872 seconds +Domain Reload Profiling: 1592ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (497ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (873ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 13.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6493. +Memory consumption went from 249.9 MB to 249.6 MB. +Total: 3.030200 ms (FindLiveObjects: 0.431100 ms CreateObjectMapping: 0.219200 ms MarkObjects: 2.151300 ms DeleteObjects: 0.227600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.801 seconds +Refreshing native plugins compatible for Editor in 14.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.003 seconds +Domain Reload Profiling: 1794ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (511ms) + LoadAssemblies (577ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1004ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6496. +Memory consumption went from 251.8 MB to 251.5 MB. +Total: 5.613700 ms (FindLiveObjects: 0.949200 ms CreateObjectMapping: 0.805000 ms MarkObjects: 3.546200 ms DeleteObjects: 0.310600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.681 seconds +Refreshing native plugins compatible for Editor in 17.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.926 seconds +Domain Reload Profiling: 1598ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (404ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (926ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6499. +Memory consumption went from 253.8 MB to 253.4 MB. +Total: 3.778100 ms (FindLiveObjects: 0.570700 ms CreateObjectMapping: 0.222400 ms MarkObjects: 2.762500 ms DeleteObjects: 0.221400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.694 seconds +Refreshing native plugins compatible for Editor in 16.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.984 seconds +Domain Reload Profiling: 1668ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (428ms) + LoadAssemblies (477ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (7ms) + FinalizeReload (984ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (409ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6502. +Memory consumption went from 255.7 MB to 255.4 MB. +Total: 3.389200 ms (FindLiveObjects: 0.542800 ms CreateObjectMapping: 0.384100 ms MarkObjects: 2.235900 ms DeleteObjects: 0.225400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.815 seconds +Refreshing native plugins compatible for Editor in 16.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.976 seconds +Domain Reload Profiling: 1782ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (525ms) + LoadAssemblies (563ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (18ms) + FinalizeReload (976ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (373ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.5 KB). Loaded Objects now: 6505. +Memory consumption went from 257.6 MB to 257.3 MB. +Total: 3.716800 ms (FindLiveObjects: 0.590200 ms CreateObjectMapping: 0.227900 ms MarkObjects: 2.603200 ms DeleteObjects: 0.294600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.694 seconds +Refreshing native plugins compatible for Editor in 14.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.888 seconds +Domain Reload Profiling: 1572ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (888ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (359ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (224ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6508. +Memory consumption went from 259.5 MB to 259.2 MB. +Total: 3.969100 ms (FindLiveObjects: 0.647300 ms CreateObjectMapping: 0.265900 ms MarkObjects: 2.719400 ms DeleteObjects: 0.334600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.626 seconds +Refreshing native plugins compatible for Editor in 15.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.976 seconds +Domain Reload Profiling: 1594ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (369ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (976ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6511. +Memory consumption went from 261.5 MB to 261.1 MB. +Total: 3.645200 ms (FindLiveObjects: 0.418200 ms CreateObjectMapping: 0.209100 ms MarkObjects: 2.746800 ms DeleteObjects: 0.270100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.770 seconds +Refreshing native plugins compatible for Editor in 16.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.000 seconds +Domain Reload Profiling: 1759ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (539ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1000ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (395ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 18.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6514. +Memory consumption went from 263.4 MB to 263.0 MB. +Total: 4.866000 ms (FindLiveObjects: 1.057200 ms CreateObjectMapping: 0.668700 ms MarkObjects: 2.834900 ms DeleteObjects: 0.303100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.688 seconds +Refreshing native plugins compatible for Editor in 11.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.005 seconds +Domain Reload Profiling: 1682ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (480ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1005ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (397ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 11.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6517. +Memory consumption went from 265.3 MB to 265.0 MB. +Total: 3.721500 ms (FindLiveObjects: 0.607200 ms CreateObjectMapping: 0.275400 ms MarkObjects: 2.587300 ms DeleteObjects: 0.250200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.626 seconds +Refreshing native plugins compatible for Editor in 11.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.133 seconds +Domain Reload Profiling: 1750ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (379ms) + LoadAssemblies (445ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1133ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (447ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6520. +Memory consumption went from 267.2 MB to 266.9 MB. +Total: 4.812800 ms (FindLiveObjects: 0.861200 ms CreateObjectMapping: 0.424700 ms MarkObjects: 2.969000 ms DeleteObjects: 0.556800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.045 seconds +Refreshing native plugins compatible for Editor in 20.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.642 seconds +Domain Reload Profiling: 2677ms + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (717ms) + LoadAssemblies (631ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (199ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (143ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1643ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (410ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6523. +Memory consumption went from 269.2 MB to 268.9 MB. +Total: 3.908400 ms (FindLiveObjects: 0.404700 ms CreateObjectMapping: 0.276200 ms MarkObjects: 2.976400 ms DeleteObjects: 0.249100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.857 seconds +Refreshing native plugins compatible for Editor in 18.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.020 seconds +Domain Reload Profiling: 2867ms + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (50ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (528ms) + LoadAssemblies (617ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2021ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (164ms) + ProcessInitializeOnLoadAttributes (411ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Refreshing native plugins compatible for Editor in 15.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6526. +Memory consumption went from 271.1 MB to 270.8 MB. +Total: 6.975500 ms (FindLiveObjects: 0.596700 ms CreateObjectMapping: 0.710200 ms MarkObjects: 5.216900 ms DeleteObjects: 0.449200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.971 seconds +Refreshing native plugins compatible for Editor in 14.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.226 seconds +Domain Reload Profiling: 2169ms + BeginReloadAssembly (243ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (580ms) + LoadAssemblies (659ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (436ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (284ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 18.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6529. +Memory consumption went from 273.1 MB to 272.7 MB. +Total: 8.054600 ms (FindLiveObjects: 1.003800 ms CreateObjectMapping: 0.780000 ms MarkObjects: 5.880900 ms DeleteObjects: 0.387500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.059 seconds +Refreshing native plugins compatible for Editor in 32.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.431 seconds +Domain Reload Profiling: 2481ms + BeginReloadAssembly (235ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (24ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (687ms) + LoadAssemblies (726ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (88ms) + TypeCache.Refresh (45ms) + TypeCache.ScanAssembly (20ms) + ScanForSourceGeneratedMonoScriptInfo (19ms) + ResolveRequiredComponents (20ms) + FinalizeReload (1432ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (581ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (336ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6532. +Memory consumption went from 275.0 MB to 274.7 MB. +Total: 4.407700 ms (FindLiveObjects: 0.730900 ms CreateObjectMapping: 0.452800 ms MarkObjects: 2.758500 ms DeleteObjects: 0.462900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 1444.706827 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs + artifactKey: Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs using Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c442808557b097db5bb18ce809144919') in 0.004024 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 6.228010 seconds. + path: Assets/Game/Script/demo + artifactKey: Guid(34db681fcdc63ef4888cf7b3a07e2eb7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/demo using Guid(34db681fcdc63ef4888cf7b3a07e2eb7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03e673ef271726b5ed017766638298cb') in 0.001547 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 7.400281 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cf11bb69916c4848eeac9d799381107') in 0.000729 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.754 seconds +Refreshing native plugins compatible for Editor in 22.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.234 seconds +Domain Reload Profiling: 1980ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (474ms) + LoadAssemblies (550ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1234ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (513ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6535. +Memory consumption went from 276.7 MB to 276.3 MB. +Total: 5.731400 ms (FindLiveObjects: 0.819100 ms CreateObjectMapping: 0.487700 ms MarkObjects: 3.799000 ms DeleteObjects: 0.622000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 128.937277 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81255dfc83a9e9093757a36180189275') in 0.002178 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.655 seconds +Refreshing native plugins compatible for Editor in 12.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.024 seconds +Domain Reload Profiling: 1670ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1024ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (408ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 12.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (375.8 KB). Loaded Objects now: 6538. +Memory consumption went from 278.6 MB to 278.2 MB. +Total: 3.484600 ms (FindLiveObjects: 0.505000 ms CreateObjectMapping: 0.280400 ms MarkObjects: 2.399500 ms DeleteObjects: 0.298600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.666 seconds +Refreshing native plugins compatible for Editor in 14.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.082 seconds +Domain Reload Profiling: 1740ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (402ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1082ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 14.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6541. +Memory consumption went from 280.7 MB to 280.4 MB. +Total: 4.155800 ms (FindLiveObjects: 0.622700 ms CreateObjectMapping: 0.271800 ms MarkObjects: 2.706700 ms DeleteObjects: 0.551200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.684 seconds +Refreshing native plugins compatible for Editor in 13.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.122 seconds +Domain Reload Profiling: 1795ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (469ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1122ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (433ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6544. +Memory consumption went from 282.7 MB to 282.3 MB. +Total: 3.991600 ms (FindLiveObjects: 0.425000 ms CreateObjectMapping: 0.955800 ms MarkObjects: 2.386800 ms DeleteObjects: 0.222600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.973 seconds +Refreshing native plugins compatible for Editor in 13.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.951 seconds +Domain Reload Profiling: 1915ms + BeginReloadAssembly (278ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (570ms) + LoadAssemblies (643ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (9ms) + FinalizeReload (951ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6547. +Memory consumption went from 284.6 MB to 284.3 MB. +Total: 3.041900 ms (FindLiveObjects: 0.422200 ms CreateObjectMapping: 0.200000 ms MarkObjects: 2.229600 ms DeleteObjects: 0.188900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.885 seconds +Refreshing native plugins compatible for Editor in 11.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.930 seconds +Domain Reload Profiling: 1805ms + BeginReloadAssembly (339ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (107ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (581ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (7ms) + FinalizeReload (931ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6550. +Memory consumption went from 286.5 MB to 286.2 MB. +Total: 3.305500 ms (FindLiveObjects: 0.421900 ms CreateObjectMapping: 0.196100 ms MarkObjects: 2.467200 ms DeleteObjects: 0.219300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.819 seconds +Refreshing native plugins compatible for Editor in 16.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.027 seconds +Domain Reload Profiling: 1835ms + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (506ms) + LoadAssemblies (560ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (51ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1027ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (436ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (286ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6553. +Memory consumption went from 288.5 MB to 288.1 MB. +Total: 3.823400 ms (FindLiveObjects: 0.516900 ms CreateObjectMapping: 0.261300 ms MarkObjects: 2.749700 ms DeleteObjects: 0.294300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.072 seconds +Refreshing native plugins compatible for Editor in 17.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.181 seconds +Domain Reload Profiling: 2244ms + BeginReloadAssembly (291ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (94ms) + RebuildCommonClasses (66ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (638ms) + LoadAssemblies (728ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (59ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1181ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (455ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.2 KB). Loaded Objects now: 6556. +Memory consumption went from 290.4 MB to 290.0 MB. +Total: 3.881600 ms (FindLiveObjects: 0.538200 ms CreateObjectMapping: 0.249300 ms MarkObjects: 2.790800 ms DeleteObjects: 0.302000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.729 seconds +Refreshing native plugins compatible for Editor in 10.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.955 seconds +Domain Reload Profiling: 1675ms + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (489ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (955ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6559. +Memory consumption went from 292.3 MB to 292.0 MB. +Total: 6.318900 ms (FindLiveObjects: 0.440700 ms CreateObjectMapping: 0.260200 ms MarkObjects: 5.137800 ms DeleteObjects: 0.476900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 660.764174 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '843929701fc5dcdf4627f394c70d9ec9') in 0.116435 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 231.886466 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f2923b82ff806ff14dbd501aee0fae4f') in 0.001105 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.718 seconds +Refreshing native plugins compatible for Editor in 12.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.141 seconds +Domain Reload Profiling: 4852ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (494ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (11ms) + FinalizeReload (4143ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (825ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (57ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (490ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (30ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 12.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6563. +Memory consumption went from 294.0 MB to 293.6 MB. +Total: 4.082500 ms (FindLiveObjects: 0.471700 ms CreateObjectMapping: 0.216800 ms MarkObjects: 3.007100 ms DeleteObjects: 0.385000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 11.321898 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4df57ce9d255c6afcd8ea23f42b46fe3') in 0.003043 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 4.101646 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fcd6e46941dad8a6bd17c8bbd32fede1') in 0.001282 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.841 seconds +Refreshing native plugins compatible for Editor in 14.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.135 seconds +Domain Reload Profiling: 1965ms + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (536ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1136ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (410ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Script is not up to date after domain reload: guid(459952d6a3efe0145b231a636579f95c) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs") state(2) +Refreshing native plugins compatible for Editor in 10.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5937 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6565. +Memory consumption went from 295.9 MB to 295.5 MB. +Total: 3.899200 ms (FindLiveObjects: 0.854000 ms CreateObjectMapping: 0.515600 ms MarkObjects: 2.295800 ms DeleteObjects: 0.232300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.643 seconds +Refreshing native plugins compatible for Editor in 14.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.025 seconds +Domain Reload Profiling: 1659ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (389ms) + LoadAssemblies (446ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1025ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (409ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6569. +Memory consumption went from 298.1 MB to 297.7 MB. +Total: 4.186900 ms (FindLiveObjects: 0.569800 ms CreateObjectMapping: 0.338500 ms MarkObjects: 2.856400 ms DeleteObjects: 0.419800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 109.619737 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a896d82cae2644177847c391f849f7') in 0.002338 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.873 seconds +Refreshing native plugins compatible for Editor in 11.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.964 seconds +Domain Reload Profiling: 1823ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (552ms) + LoadAssemblies (609ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (964ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (373ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (375.9 KB). Loaded Objects now: 6572. +Memory consumption went from 299.8 MB to 299.4 MB. +Total: 2.940900 ms (FindLiveObjects: 0.401500 ms CreateObjectMapping: 0.230000 ms MarkObjects: 2.095600 ms DeleteObjects: 0.212900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 52.454219 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d4decf82a1e3f889bdf298ab22764c2') in 0.003041 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.875 seconds +Refreshing native plugins compatible for Editor in 10.99 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.936 seconds +Domain Reload Profiling: 1792ms + BeginReloadAssembly (252ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (553ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (936ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (368ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (227ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6575. +Memory consumption went from 301.7 MB to 301.3 MB. +Total: 3.504100 ms (FindLiveObjects: 0.685700 ms CreateObjectMapping: 0.293400 ms MarkObjects: 2.248700 ms DeleteObjects: 0.274600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 9.756215 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7461ea08498ac983b191113773cb012f') in 0.003850 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.782 seconds +Refreshing native plugins compatible for Editor in 13.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.945 seconds +Domain Reload Profiling: 1713ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (22ms) + initialDomainReloadingComplete (80ms) + LoadAllAssembliesAndSetupDomain (435ms) + LoadAssemblies (497ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (945ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (359ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6578. +Memory consumption went from 303.6 MB to 303.3 MB. +Total: 3.257000 ms (FindLiveObjects: 0.464300 ms CreateObjectMapping: 0.251500 ms MarkObjects: 2.311500 ms DeleteObjects: 0.228500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 29.195546 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs + artifactKey: Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBotAIPath.cs using Guid(459952d6a3efe0145b231a636579f95c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '188373852e5d8f734b8d0a5678e78457') in 0.001831 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 21.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.009 seconds +Domain Reload Profiling: 1674ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (417ms) + LoadAssemblies (484ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1010ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (386ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6581. +Memory consumption went from 305.5 MB to 305.2 MB. +Total: 3.617900 ms (FindLiveObjects: 0.486300 ms CreateObjectMapping: 0.252100 ms MarkObjects: 2.624800 ms DeleteObjects: 0.253200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 105.723106 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '348be309186829b9aca68a50dd89b399') in 0.083696 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 32.151523 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9d73f1bcaf0aa02948882f5d8b39b3d') in 0.000784 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 57.537300 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77a8533305bf34576e024adb39564017') in 0.033456 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 12.551749 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad8cb487df0a37a27d314545ad6c1b04') in 0.059570 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 5.563984 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1df09b7bf42e0a0f00201a428cea2a41') in 0.019661 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 5.432975 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3d1718bc119f953c4ed3db992119a56') in 0.035333 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 21.013128 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e8d3e1f08c370eb764e58099a36e7b0') in 0.049380 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 13.540018 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11b1511174b8fb94fb381bce52ec5aff') in 0.058999 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 19.529313 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38274d6ed51848d1b3d00ce0c5d793de') in 0.046333 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 17.039151 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3bee84d1b3ae95d84f3de793f256068f') in 0.030966 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 41.495522 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5577917c219f0a5efc5f8c6aaa74be9') in 0.020389 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.922 seconds +Refreshing native plugins compatible for Editor in 19.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.951 seconds +Domain Reload Profiling: 1864ms + BeginReloadAssembly (283ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (118ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (587ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (951ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (403ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6584. +Memory consumption went from 307.4 MB to 307.1 MB. +Total: 3.033200 ms (FindLiveObjects: 0.491200 ms CreateObjectMapping: 0.204400 ms MarkObjects: 2.135600 ms DeleteObjects: 0.200500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 16.984402 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d5873d6fb908c91dc3b56dad1adfe66') in 0.074413 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.825 seconds +Refreshing native plugins compatible for Editor in 11.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.015 seconds +Domain Reload Profiling: 1831ms + BeginReloadAssembly (227ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (560ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1015ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (387ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6587. +Memory consumption went from 309.4 MB to 309.0 MB. +Total: 3.687000 ms (FindLiveObjects: 0.691000 ms CreateObjectMapping: 0.408600 ms MarkObjects: 2.385300 ms DeleteObjects: 0.200100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.984 seconds +Refreshing native plugins compatible for Editor in 27.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.071 seconds +Domain Reload Profiling: 2046ms + BeginReloadAssembly (245ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (606ms) + LoadAssemblies (660ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (71ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (35ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1071ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(5536f3a48beb4a27b08820e600cf6982) path("Assets/Game/Script/battle/mode/GWorldSync01Mode.cs") state(2) +Refreshing native plugins compatible for Editor in 14.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5938 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6589. +Memory consumption went from 311.5 MB to 311.2 MB. +Total: 3.329600 ms (FindLiveObjects: 0.516000 ms CreateObjectMapping: 0.398500 ms MarkObjects: 2.177600 ms DeleteObjects: 0.236300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.792 seconds +Refreshing native plugins compatible for Editor in 12.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.976 seconds +Domain Reload Profiling: 1756ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (480ms) + LoadAssemblies (551ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (976ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (382ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6593. +Memory consumption went from 313.5 MB to 313.1 MB. +Total: 3.276200 ms (FindLiveObjects: 0.510600 ms CreateObjectMapping: 0.242100 ms MarkObjects: 2.313900 ms DeleteObjects: 0.208700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.628 seconds +Refreshing native plugins compatible for Editor in 12.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.102 seconds +Domain Reload Profiling: 1722ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1103ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (471ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.6 KB). Loaded Objects now: 6596. +Memory consumption went from 315.4 MB to 315.1 MB. +Total: 3.773200 ms (FindLiveObjects: 0.583700 ms CreateObjectMapping: 0.252100 ms MarkObjects: 2.572200 ms DeleteObjects: 0.363700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.652 seconds +Refreshing native plugins compatible for Editor in 13.81 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.108 seconds +Domain Reload Profiling: 1750ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (446ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1108ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (440ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6599. +Memory consumption went from 317.3 MB to 317.0 MB. +Total: 5.427400 ms (FindLiveObjects: 0.906600 ms CreateObjectMapping: 0.325300 ms MarkObjects: 3.607400 ms DeleteObjects: 0.584700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.870 seconds +Refreshing native plugins compatible for Editor in 19.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.957 seconds +Domain Reload Profiling: 1813ms + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (509ms) + LoadAssemblies (573ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (10ms) + FinalizeReload (958ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (380ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6602. +Memory consumption went from 319.3 MB to 318.9 MB. +Total: 3.548500 ms (FindLiveObjects: 0.684000 ms CreateObjectMapping: 0.267700 ms MarkObjects: 2.344400 ms DeleteObjects: 0.250900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.808 seconds +Refreshing native plugins compatible for Editor in 12.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.975 seconds +Domain Reload Profiling: 1775ms + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (505ms) + LoadAssemblies (588ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (976ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (377.0 KB). Loaded Objects now: 6605. +Memory consumption went from 321.2 MB to 320.8 MB. +Total: 3.246700 ms (FindLiveObjects: 0.405200 ms CreateObjectMapping: 0.228700 ms MarkObjects: 2.399800 ms DeleteObjects: 0.210500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.743 seconds +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1832ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (542ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1100ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 13.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6608. +Memory consumption went from 323.1 MB to 322.8 MB. +Total: 3.698000 ms (FindLiveObjects: 0.613900 ms CreateObjectMapping: 0.274500 ms MarkObjects: 2.511000 ms DeleteObjects: 0.296600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.697 seconds +Refreshing native plugins compatible for Editor in 12.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.949 seconds +Domain Reload Profiling: 1637ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (949ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6612. +Memory consumption went from 325.0 MB to 324.7 MB. +Total: 3.398300 ms (FindLiveObjects: 0.540900 ms CreateObjectMapping: 0.251000 ms MarkObjects: 2.377100 ms DeleteObjects: 0.228200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.818 seconds +Refreshing native plugins compatible for Editor in 15.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.051 seconds +Domain Reload Profiling: 1862ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (513ms) + LoadAssemblies (532ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (89ms) + TypeCache.Refresh (64ms) + TypeCache.ScanAssembly (33ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1052ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (389ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 17.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6615. +Memory consumption went from 327.0 MB to 326.6 MB. +Total: 4.155800 ms (FindLiveObjects: 0.722200 ms CreateObjectMapping: 0.428000 ms MarkObjects: 2.684300 ms DeleteObjects: 0.319000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.841 seconds +Refreshing native plugins compatible for Editor in 12.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.108 seconds +Domain Reload Profiling: 1940ms + BeginReloadAssembly (221ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (528ms) + LoadAssemblies (559ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (72ms) + TypeCache.Refresh (46ms) + TypeCache.ScanAssembly (23ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1108ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (406ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6618. +Memory consumption went from 328.9 MB to 328.5 MB. +Total: 3.335500 ms (FindLiveObjects: 0.596400 ms CreateObjectMapping: 0.254800 ms MarkObjects: 2.240900 ms DeleteObjects: 0.242100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.898 seconds +Refreshing native plugins compatible for Editor in 19.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.076 seconds +Domain Reload Profiling: 1967ms + BeginReloadAssembly (224ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (556ms) + LoadAssemblies (632ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1077ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6621. +Memory consumption went from 330.8 MB to 330.5 MB. +Total: 3.387700 ms (FindLiveObjects: 0.575500 ms CreateObjectMapping: 0.259400 ms MarkObjects: 2.249700 ms DeleteObjects: 0.301900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.041 seconds +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.115 seconds +Domain Reload Profiling: 2138ms + BeginReloadAssembly (252ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (61ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (138ms) + LoadAllAssembliesAndSetupDomain (554ms) + LoadAssemblies (649ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (69ms) + TypeCache.Refresh (43ms) + TypeCache.ScanAssembly (23ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1115ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (459ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6624. +Memory consumption went from 332.7 MB to 332.4 MB. +Total: 4.041400 ms (FindLiveObjects: 0.466400 ms CreateObjectMapping: 0.214800 ms MarkObjects: 3.133200 ms DeleteObjects: 0.225600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.789 seconds +Refreshing native plugins compatible for Editor in 12.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.956 seconds +Domain Reload Profiling: 1736ms + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (472ms) + LoadAssemblies (525ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (38ms) + TypeCache.ScanAssembly (21ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (8ms) + FinalizeReload (957ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (399ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 11.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6627. +Memory consumption went from 334.7 MB to 334.3 MB. +Total: 2.875100 ms (FindLiveObjects: 0.420800 ms CreateObjectMapping: 0.210300 ms MarkObjects: 2.036500 ms DeleteObjects: 0.206500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.773 seconds +Refreshing native plugins compatible for Editor in 11.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.165 seconds +Domain Reload Profiling: 1929ms + BeginReloadAssembly (235ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (438ms) + LoadAssemblies (509ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (480ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (315ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Refreshing native plugins compatible for Editor in 14.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6630. +Memory consumption went from 336.6 MB to 336.2 MB. +Total: 5.570100 ms (FindLiveObjects: 0.393600 ms CreateObjectMapping: 0.191500 ms MarkObjects: 4.485400 ms DeleteObjects: 0.497600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.906 seconds +Refreshing native plugins compatible for Editor in 15.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.637 seconds +Domain Reload Profiling: 2535ms + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (560ms) + LoadAssemblies (625ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (34ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1637ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (765ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (400ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Script is not up to date after domain reload: guid(d96b5b6d30384c7482ce18479c06ebfb) path("Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs") state(2) +Refreshing native plugins compatible for Editor in 15.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6632. +Memory consumption went from 338.5 MB to 338.1 MB. +Total: 4.679800 ms (FindLiveObjects: 1.191200 ms CreateObjectMapping: 0.408000 ms MarkObjects: 2.731200 ms DeleteObjects: 0.347200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.803 seconds +Refreshing native plugins compatible for Editor in 11.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.923 seconds +Domain Reload Profiling: 1717ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (486ms) + LoadAssemblies (548ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (924ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (371ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.1 KB). Loaded Objects now: 6636. +Memory consumption went from 340.4 MB to 340.1 MB. +Total: 3.494500 ms (FindLiveObjects: 0.435900 ms CreateObjectMapping: 0.210100 ms MarkObjects: 2.451500 ms DeleteObjects: 0.395500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.865 seconds +Refreshing native plugins compatible for Editor in 11.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.175 seconds +Domain Reload Profiling: 2029ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (526ms) + LoadAssemblies (576ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (55ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (20ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1175ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (496ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (335ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 16.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6639. +Memory consumption went from 342.3 MB to 342.0 MB. +Total: 3.365400 ms (FindLiveObjects: 0.440300 ms CreateObjectMapping: 0.271900 ms MarkObjects: 2.389800 ms DeleteObjects: 0.262300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.923 seconds +Refreshing native plugins compatible for Editor in 12.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.988 seconds +Domain Reload Profiling: 1899ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (585ms) + LoadAssemblies (643ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (66ms) + TypeCache.Refresh (41ms) + TypeCache.ScanAssembly (22ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (10ms) + FinalizeReload (989ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (393ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 15.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6642. +Memory consumption went from 344.3 MB to 343.9 MB. +Total: 3.634700 ms (FindLiveObjects: 0.449100 ms CreateObjectMapping: 0.252000 ms MarkObjects: 2.701300 ms DeleteObjects: 0.231200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.708 seconds +Refreshing native plugins compatible for Editor in 14.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.334 seconds +Domain Reload Profiling: 2034ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (410ms) + LoadAssemblies (464ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1335ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (599ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (222ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Script is not up to date after domain reload: guid(d96b5b6d30384c7482ce18479c06ebfb) path("Assets/Game/Plugins/JNGame/Sync/Frame/Game/Time/JNFrameTime.cs") state(2) +Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6644. +Memory consumption went from 346.2 MB to 345.8 MB. +Total: 3.571200 ms (FindLiveObjects: 0.407100 ms CreateObjectMapping: 0.207700 ms MarkObjects: 2.702800 ms DeleteObjects: 0.252400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.796 seconds +Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.950 seconds +Domain Reload Profiling: 1736ms + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (477ms) + LoadAssemblies (544ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (9ms) + FinalizeReload (951ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6648. +Memory consumption went from 348.1 MB to 347.8 MB. +Total: 3.090300 ms (FindLiveObjects: 0.471800 ms CreateObjectMapping: 0.234900 ms MarkObjects: 2.148100 ms DeleteObjects: 0.234400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.711 seconds +Refreshing native plugins compatible for Editor in 14.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.978 seconds +Domain Reload Profiling: 1680ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (419ms) + LoadAssemblies (455ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (979ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.2 KB). Loaded Objects now: 6651. +Memory consumption went from 350.0 MB to 349.7 MB. +Total: 3.769900 ms (FindLiveObjects: 0.602300 ms CreateObjectMapping: 0.286800 ms MarkObjects: 2.620300 ms DeleteObjects: 0.259500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.934 seconds +Refreshing native plugins compatible for Editor in 13.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.034 seconds +Domain Reload Profiling: 1956ms + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (56ms) + LoadAllAssembliesAndSetupDomain (622ms) + LoadAssemblies (639ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (87ms) + TypeCache.Refresh (58ms) + TypeCache.ScanAssembly (30ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (15ms) + FinalizeReload (1035ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (421ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 17.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.0 KB). Loaded Objects now: 6654. +Memory consumption went from 352.0 MB to 351.6 MB. +Total: 3.476400 ms (FindLiveObjects: 0.458600 ms CreateObjectMapping: 0.352600 ms MarkObjects: 2.452300 ms DeleteObjects: 0.212000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.855 seconds +Refreshing native plugins compatible for Editor in 12.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.965 seconds +Domain Reload Profiling: 1811ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (543ms) + LoadAssemblies (590ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (965ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (224ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6657. +Memory consumption went from 353.9 MB to 353.5 MB. +Total: 3.436800 ms (FindLiveObjects: 0.408700 ms CreateObjectMapping: 0.269600 ms MarkObjects: 2.546200 ms DeleteObjects: 0.210800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.848 seconds +Refreshing native plugins compatible for Editor in 15.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.953 seconds +Domain Reload Profiling: 1789ms + BeginReloadAssembly (248ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (493ms) + LoadAssemblies (576ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (953ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (383ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 23.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6660. +Memory consumption went from 355.8 MB to 355.5 MB. +Total: 3.695100 ms (FindLiveObjects: 0.440500 ms CreateObjectMapping: 0.351000 ms MarkObjects: 2.666300 ms DeleteObjects: 0.236200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.886 seconds +Refreshing native plugins compatible for Editor in 20.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2018ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (575ms) + LoadAssemblies (614ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (54ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (448ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (290ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(92bb9edc6770cfd47830748c4ca30c59) path("Assets/Game/Script/battle/mode/GWorldSync01ModeScript/PlayerBot.cs") state(2) +Refreshing native plugins compatible for Editor in 12.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6662. +Memory consumption went from 357.7 MB to 357.4 MB. +Total: 6.393000 ms (FindLiveObjects: 0.870300 ms CreateObjectMapping: 0.400600 ms MarkObjects: 4.443700 ms DeleteObjects: 0.674700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.720 seconds +Refreshing native plugins compatible for Editor in 15.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.020 seconds +Domain Reload Profiling: 1733ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (444ms) + LoadAssemblies (480ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1021ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (406ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6666. +Memory consumption went from 359.6 MB to 359.3 MB. +Total: 2.922000 ms (FindLiveObjects: 0.449800 ms CreateObjectMapping: 0.200600 ms MarkObjects: 2.075100 ms DeleteObjects: 0.195500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.813 seconds +Refreshing native plugins compatible for Editor in 13.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.963 seconds +Domain Reload Profiling: 1766ms + BeginReloadAssembly (235ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (477ms) + LoadAssemblies (580ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (8ms) + FinalizeReload (964ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (380ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6669. +Memory consumption went from 361.6 MB to 361.2 MB. +Total: 3.206900 ms (FindLiveObjects: 0.495700 ms CreateObjectMapping: 0.208900 ms MarkObjects: 2.298800 ms DeleteObjects: 0.202300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.622 seconds +Refreshing native plugins compatible for Editor in 17.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.095 seconds +Domain Reload Profiling: 1709ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (411ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1095ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (503ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (329ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6672. +Memory consumption went from 363.5 MB to 363.2 MB. +Total: 3.563100 ms (FindLiveObjects: 0.411000 ms CreateObjectMapping: 0.236700 ms MarkObjects: 2.267100 ms DeleteObjects: 0.647400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.881 seconds +Refreshing native plugins compatible for Editor in 12.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.934 seconds +Domain Reload Profiling: 1804ms + BeginReloadAssembly (211ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (548ms) + LoadAssemblies (634ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (28ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (934ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.0 KB). Loaded Objects now: 6675. +Memory consumption went from 365.5 MB to 365.1 MB. +Total: 3.909800 ms (FindLiveObjects: 0.598200 ms CreateObjectMapping: 0.269800 ms MarkObjects: 2.767300 ms DeleteObjects: 0.272800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.638 seconds +Refreshing native plugins compatible for Editor in 11.00 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.042 seconds +Domain Reload Profiling: 1671ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1042ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (424ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 14.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6678. +Memory consumption went from 367.4 MB to 367.0 MB. +Total: 2.865700 ms (FindLiveObjects: 0.449000 ms CreateObjectMapping: 0.249900 ms MarkObjects: 1.948900 ms DeleteObjects: 0.216700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.630 seconds +Refreshing native plugins compatible for Editor in 12.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.146 seconds +Domain Reload Profiling: 1767ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (429ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1146ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (463ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (47ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 12.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6681. +Memory consumption went from 369.3 MB to 368.9 MB. +Total: 3.558300 ms (FindLiveObjects: 0.605800 ms CreateObjectMapping: 0.403900 ms MarkObjects: 2.191200 ms DeleteObjects: 0.356100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Import Request. + Time since last request: 1420.505499 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cff6285c0c4c07f22c27184729f4e7ea') in 0.096327 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 11.189254 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a53efe65bf945cea1a02c231c535bc09') in 0.019838 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 2.474357 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4b9baf5609934391a3e9df697b7be94') in 0.000792 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 14.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.227 seconds +Domain Reload Profiling: 1867ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (459ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (517ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (342ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 14.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6684. +Memory consumption went from 370.9 MB to 370.6 MB. +Total: 3.099000 ms (FindLiveObjects: 0.418200 ms CreateObjectMapping: 0.270900 ms MarkObjects: 2.185800 ms DeleteObjects: 0.223100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.657 seconds +Refreshing native plugins compatible for Editor in 20.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2795ms + BeginReloadAssembly (843ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (250ms) + RebuildCommonClasses (50ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (124ms) + LoadAllAssembliesAndSetupDomain (612ms) + LoadAssemblies (973ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (56ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (478ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (328ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 12.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6687. +Memory consumption went from 373.1 MB to 372.8 MB. +Total: 3.839400 ms (FindLiveObjects: 0.901400 ms CreateObjectMapping: 0.376200 ms MarkObjects: 2.315300 ms DeleteObjects: 0.245300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.704 seconds +Refreshing native plugins compatible for Editor in 12.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.061 seconds +Domain Reload Profiling: 1757ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (436ms) + LoadAssemblies (507ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1061ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 13.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6690. +Memory consumption went from 375.0 MB to 374.7 MB. +Total: 3.496100 ms (FindLiveObjects: 0.486500 ms CreateObjectMapping: 0.403700 ms MarkObjects: 2.314100 ms DeleteObjects: 0.289800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.888 seconds +Refreshing native plugins compatible for Editor in 17.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.738 seconds +Domain Reload Profiling: 3371ms + BeginReloadAssembly (389ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (152ms) + RebuildCommonClasses (305ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (839ms) + LoadAssemblies (978ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1739ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (472ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (46ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 14.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6693. +Memory consumption went from 377.0 MB to 376.6 MB. +Total: 3.431700 ms (FindLiveObjects: 0.419100 ms CreateObjectMapping: 0.278700 ms MarkObjects: 2.526400 ms DeleteObjects: 0.206400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.854 seconds +Refreshing native plugins compatible for Editor in 11.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.979 seconds +Domain Reload Profiling: 1819ms + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (56ms) + LoadAllAssembliesAndSetupDomain (480ms) + LoadAssemblies (604ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (979ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (394ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 17.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6696. +Memory consumption went from 378.9 MB to 378.6 MB. +Total: 3.519600 ms (FindLiveObjects: 0.538300 ms CreateObjectMapping: 0.254700 ms MarkObjects: 2.464800 ms DeleteObjects: 0.260200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 12.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.128 seconds +Domain Reload Profiling: 1757ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1129ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (425ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 14.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.0 KB). Loaded Objects now: 6699. +Memory consumption went from 380.9 MB to 380.5 MB. +Total: 6.126800 ms (FindLiveObjects: 0.915700 ms CreateObjectMapping: 0.278500 ms MarkObjects: 4.550000 ms DeleteObjects: 0.380800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.674 seconds +Refreshing native plugins compatible for Editor in 12.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.129 seconds +Domain Reload Profiling: 1793ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1129ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (446ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (278ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (375.6 KB). Loaded Objects now: 6702. +Memory consumption went from 382.8 MB to 382.4 MB. +Total: 5.865200 ms (FindLiveObjects: 0.840000 ms CreateObjectMapping: 0.670600 ms MarkObjects: 3.994500 ms DeleteObjects: 0.357800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.822 seconds +Refreshing native plugins compatible for Editor in 12.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.314 seconds +Domain Reload Profiling: 2128ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (490ms) + LoadAssemblies (582ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1315ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (550ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (371ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Refreshing native plugins compatible for Editor in 12.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.9 KB). Loaded Objects now: 6705. +Memory consumption went from 384.7 MB to 384.3 MB. +Total: 4.495000 ms (FindLiveObjects: 0.757000 ms CreateObjectMapping: 0.483400 ms MarkObjects: 2.853700 ms DeleteObjects: 0.398900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.886 seconds +Refreshing native plugins compatible for Editor in 13.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.178 seconds +Domain Reload Profiling: 2053ms + BeginReloadAssembly (227ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (93ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (83ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (558ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1178ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (447ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (278ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6708. +Memory consumption went from 386.6 MB to 386.2 MB. +Total: 4.390200 ms (FindLiveObjects: 0.595600 ms CreateObjectMapping: 0.342300 ms MarkObjects: 3.154200 ms DeleteObjects: 0.296400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.707 seconds +Refreshing native plugins compatible for Editor in 18.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1799ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (441ms) + LoadAssemblies (511ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1101ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (427ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6711. +Memory consumption went from 388.5 MB to 388.2 MB. +Total: 4.830700 ms (FindLiveObjects: 0.533700 ms CreateObjectMapping: 1.028500 ms MarkObjects: 2.740000 ms DeleteObjects: 0.526500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.591 seconds +Refreshing native plugins compatible for Editor in 17.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.737 seconds +Domain Reload Profiling: 4318ms + BeginReloadAssembly (951ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (141ms) + RebuildCommonClasses (79ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (1460ms) + LoadAssemblies (1887ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (150ms) + TypeCache.Refresh (56ms) + TypeCache.ScanAssembly (18ms) + ScanForSourceGeneratedMonoScriptInfo (31ms) + ResolveRequiredComponents (36ms) + FinalizeReload (1738ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (535ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (360ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 13.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6714. +Memory consumption went from 390.4 MB to 390.1 MB. +Total: 6.253700 ms (FindLiveObjects: 1.047800 ms CreateObjectMapping: 0.601200 ms MarkObjects: 3.832300 ms DeleteObjects: 0.768500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.648 seconds +Refreshing native plugins compatible for Editor in 16.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.150 seconds +Domain Reload Profiling: 1790ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (450ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1151ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (495ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (320ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 15.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6717. +Memory consumption went from 392.3 MB to 392.0 MB. +Total: 4.484000 ms (FindLiveObjects: 0.762600 ms CreateObjectMapping: 0.454300 ms MarkObjects: 2.859300 ms DeleteObjects: 0.405800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.675 seconds +Refreshing native plugins compatible for Editor in 17.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.165 seconds +Domain Reload Profiling: 1833ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (479ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1166ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (477ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (299ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 14.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (376.1 KB). Loaded Objects now: 6720. +Memory consumption went from 394.3 MB to 393.9 MB. +Total: 3.710700 ms (FindLiveObjects: 0.770400 ms CreateObjectMapping: 0.472500 ms MarkObjects: 2.222300 ms DeleteObjects: 0.244100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.383 seconds +Refreshing native plugins compatible for Editor in 38.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.897 seconds +Domain Reload Profiling: 4268ms + BeginReloadAssembly (1295ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + RebuildCommonClasses (81ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (904ms) + LoadAssemblies (1483ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (76ms) + TypeCache.ScanAssembly (51ms) + ScanForSourceGeneratedMonoScriptInfo (84ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1898ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (455ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (32ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Refreshing native plugins compatible for Editor in 11.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6723. +Memory consumption went from 396.2 MB to 395.9 MB. +Total: 3.213100 ms (FindLiveObjects: 0.413300 ms CreateObjectMapping: 0.199600 ms MarkObjects: 2.392700 ms DeleteObjects: 0.206500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.686 seconds +Refreshing native plugins compatible for Editor in 11.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.092 seconds +Domain Reload Profiling: 1764ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (469ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1092ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (420ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.9 KB). Loaded Objects now: 6726. +Memory consumption went from 398.1 MB to 397.8 MB. +Total: 4.723000 ms (FindLiveObjects: 0.904600 ms CreateObjectMapping: 0.502100 ms MarkObjects: 2.939800 ms DeleteObjects: 0.373800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.684 seconds +Refreshing native plugins compatible for Editor in 14.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1774ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (414ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1100ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (428ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 16.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6729. +Memory consumption went from 400.0 MB to 399.7 MB. +Total: 3.412900 ms (FindLiveObjects: 0.690800 ms CreateObjectMapping: 0.279800 ms MarkObjects: 2.185000 ms DeleteObjects: 0.256300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.717 seconds +Refreshing native plugins compatible for Editor in 14.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.115 seconds +Domain Reload Profiling: 1823ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (426ms) + LoadAssemblies (501ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1116ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (442ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 15.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.0 KB). Loaded Objects now: 6732. +Memory consumption went from 402.0 MB to 401.6 MB. +Total: 4.384900 ms (FindLiveObjects: 0.688900 ms CreateObjectMapping: 0.312200 ms MarkObjects: 3.032300 ms DeleteObjects: 0.350300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.777 seconds +Refreshing native plugins compatible for Editor in 11.96 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.915 seconds +Domain Reload Profiling: 1676ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (471ms) + LoadAssemblies (525ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (10ms) + FinalizeReload (916ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (386ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 11.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6735. +Memory consumption went from 403.9 MB to 403.5 MB. +Total: 3.006800 ms (FindLiveObjects: 0.395200 ms CreateObjectMapping: 0.200700 ms MarkObjects: 2.181900 ms DeleteObjects: 0.228100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.681 seconds +Refreshing native plugins compatible for Editor in 11.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.906 seconds +Domain Reload Profiling: 1574ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (454ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (906ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 12.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6738. +Memory consumption went from 405.8 MB to 405.5 MB. +Total: 3.755000 ms (FindLiveObjects: 0.468000 ms CreateObjectMapping: 0.411900 ms MarkObjects: 2.449700 ms DeleteObjects: 0.424000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.549 seconds +Refreshing native plugins compatible for Editor in 10.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.003 seconds +Domain Reload Profiling: 1544ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (380ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1004ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (421ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6741. +Memory consumption went from 407.7 MB to 407.4 MB. +Total: 3.334600 ms (FindLiveObjects: 0.481400 ms CreateObjectMapping: 0.295900 ms MarkObjects: 2.297300 ms DeleteObjects: 0.258700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.750 seconds +Refreshing native plugins compatible for Editor in 13.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.970 seconds +Domain Reload Profiling: 1710ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (500ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (65ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (16ms) + FinalizeReload (970ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 9.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6744. +Memory consumption went from 409.7 MB to 409.3 MB. +Total: 3.056200 ms (FindLiveObjects: 0.395400 ms CreateObjectMapping: 0.201200 ms MarkObjects: 2.208200 ms DeleteObjects: 0.250300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.628 seconds +Refreshing native plugins compatible for Editor in 11.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.123 seconds +Domain Reload Profiling: 1742ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (418ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1123ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (407ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(41bc0098f83045f18891ef5190ac6a17) path("Assets/Game/Plugins/App/App.cs") state(2) +Refreshing native plugins compatible for Editor in 10.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5939 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6746. +Memory consumption went from 411.6 MB to 411.2 MB. +Total: 2.864000 ms (FindLiveObjects: 0.405700 ms CreateObjectMapping: 0.195700 ms MarkObjects: 2.052000 ms DeleteObjects: 0.209700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.559 seconds +Refreshing native plugins compatible for Editor in 11.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.902 seconds +Domain Reload Profiling: 1455ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (366ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (903ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6750. +Memory consumption went from 413.5 MB to 413.2 MB. +Total: 3.657000 ms (FindLiveObjects: 0.546400 ms CreateObjectMapping: 0.493800 ms MarkObjects: 2.324900 ms DeleteObjects: 0.290000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.564 seconds +Refreshing native plugins compatible for Editor in 10.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.981 seconds +Domain Reload Profiling: 1537ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (395ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (982ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (386ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 10.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (375.9 KB). Loaded Objects now: 6753. +Memory consumption went from 415.4 MB to 415.1 MB. +Total: 3.579500 ms (FindLiveObjects: 0.571700 ms CreateObjectMapping: 0.332700 ms MarkObjects: 2.451700 ms DeleteObjects: 0.221800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.600 seconds +Refreshing native plugins compatible for Editor in 10.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.997 seconds +Domain Reload Profiling: 1590ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (412ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (998ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (398ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6756. +Memory consumption went from 417.3 MB to 417.0 MB. +Total: 3.061900 ms (FindLiveObjects: 0.552300 ms CreateObjectMapping: 0.243600 ms MarkObjects: 2.030100 ms DeleteObjects: 0.235000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.559 seconds +Refreshing native plugins compatible for Editor in 11.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.074 seconds +Domain Reload Profiling: 1627ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (391ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1074ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (433ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 12.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6759. +Memory consumption went from 419.3 MB to 418.9 MB. +Total: 3.042600 ms (FindLiveObjects: 0.428500 ms CreateObjectMapping: 0.211300 ms MarkObjects: 2.146700 ms DeleteObjects: 0.255000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.838 seconds +Refreshing native plugins compatible for Editor in 12.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.870 seconds +Domain Reload Profiling: 1700ms + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (94ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (496ms) + LoadAssemblies (542ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (11ms) + FinalizeReload (870ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 15.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.0 KB). Loaded Objects now: 6762. +Memory consumption went from 421.2 MB to 420.8 MB. +Total: 3.044700 ms (FindLiveObjects: 0.418000 ms CreateObjectMapping: 0.213600 ms MarkObjects: 2.195300 ms DeleteObjects: 0.216800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.696 seconds +Refreshing native plugins compatible for Editor in 13.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.952 seconds +Domain Reload Profiling: 1641ms + BeginReloadAssembly (207ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (447ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (953ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (380ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 11.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.9 KB). Loaded Objects now: 6765. +Memory consumption went from 423.1 MB to 422.8 MB. +Total: 4.181700 ms (FindLiveObjects: 0.775500 ms CreateObjectMapping: 0.585700 ms MarkObjects: 2.517200 ms DeleteObjects: 0.301600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.663 seconds +Refreshing native plugins compatible for Editor in 11.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.891 seconds +Domain Reload Profiling: 1546ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (7ms) + FinalizeReload (891ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 10.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6768. +Memory consumption went from 425.0 MB to 424.7 MB. +Total: 3.540700 ms (FindLiveObjects: 0.481000 ms CreateObjectMapping: 0.239100 ms MarkObjects: 2.585200 ms DeleteObjects: 0.234200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.558 seconds +Refreshing native plugins compatible for Editor in 15.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.003 seconds +Domain Reload Profiling: 1557ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (378ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1004ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 10.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.6 KB). Loaded Objects now: 6771. +Memory consumption went from 427.0 MB to 426.6 MB. +Total: 3.440500 ms (FindLiveObjects: 0.711200 ms CreateObjectMapping: 0.280000 ms MarkObjects: 2.231200 ms DeleteObjects: 0.217000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.667 seconds +Refreshing native plugins compatible for Editor in 12.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.923 seconds +Domain Reload Profiling: 1583ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (447ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (924ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 10.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (345.2 KB). Loaded Objects now: 6774. +Memory consumption went from 428.9 MB to 428.6 MB. +Total: 3.715800 ms (FindLiveObjects: 0.476600 ms CreateObjectMapping: 0.211000 ms MarkObjects: 2.729500 ms DeleteObjects: 0.297700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.553 seconds +Refreshing native plugins compatible for Editor in 11.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.019 seconds +Domain Reload Profiling: 1564ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (386ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1019ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (410ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 12.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6777. +Memory consumption went from 430.8 MB to 430.5 MB. +Total: 3.805400 ms (FindLiveObjects: 0.585200 ms CreateObjectMapping: 0.253400 ms MarkObjects: 2.732900 ms DeleteObjects: 0.232000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.544 seconds +Refreshing native plugins compatible for Editor in 13.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.020 seconds +Domain Reload Profiling: 1556ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (369ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1021ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 11.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.8 KB). Loaded Objects now: 6780. +Memory consumption went from 432.7 MB to 432.4 MB. +Total: 7.151100 ms (FindLiveObjects: 1.432000 ms CreateObjectMapping: 0.835800 ms MarkObjects: 4.380200 ms DeleteObjects: 0.500000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.820 seconds +Refreshing native plugins compatible for Editor in 20.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.979 seconds +Domain Reload Profiling: 1789ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (567ms) + LoadAssemblies (585ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (63ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (19ms) + ResolveRequiredComponents (15ms) + FinalizeReload (979ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 11.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6783. +Memory consumption went from 434.6 MB to 434.3 MB. +Total: 3.637900 ms (FindLiveObjects: 0.514100 ms CreateObjectMapping: 0.201700 ms MarkObjects: 2.704500 ms DeleteObjects: 0.216300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.589 seconds +Refreshing native plugins compatible for Editor in 11.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.997 seconds +Domain Reload Profiling: 1578ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (411ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (6ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (997ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (392ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 11.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5940 Unused Serialized files (Serialized files now loaded: 0) +Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6786. +Memory consumption went from 436.6 MB to 436.2 MB. +Total: 3.256100 ms (FindLiveObjects: 0.431700 ms CreateObjectMapping: 0.201300 ms MarkObjects: 2.422300 ms DeleteObjects: 0.199700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> diff --git a/JNFrame/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame/Logs/shadercompiler-AssetImportWorker0.log new file mode 100644 index 00000000..27e75b33 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-AssetImportWorker0.log @@ -0,0 +1,6 @@ +Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) + +Quitting shader compiler process diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 4244bd86..4b5b59f1 100644 --- a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,4 +1,3 @@ Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/JNFrame/ProjectSettings/DynamicsManager.asset b/JNFrame/ProjectSettings/DynamicsManager.asset index 94b87239..f10acf72 100644 --- a/JNFrame/ProjectSettings/DynamicsManager.asset +++ b/JNFrame/ProjectSettings/DynamicsManager.asset @@ -32,7 +32,7 @@ PhysicsManager: m_Extent: {x: 250, y: 250, z: 250} m_WorldSubdivisions: 8 m_FrictionType: 0 - m_EnableEnhancedDeterminism: 1 + m_EnableEnhancedDeterminism: 0 m_EnableUnifiedHeightmaps: 1 m_ImprovedPatchFriction: 0 m_SolverType: 0 diff --git a/JNFrame/UserSettings/EditorUserSettings.asset b/JNFrame/UserSettings/EditorUserSettings.asset index 06b0d48a..eb58a0be 100644 --- a/JNFrame/UserSettings/EditorUserSettings.asset +++ b/JNFrame/UserSettings/EditorUserSettings.asset @@ -21,29 +21,29 @@ EditorUserSettings: value: 184c flags: 0 RecentlyUsedSceneGuid-0: - value: 5409020704005a585b5a5b7545710a44434e1b782a707168297a1e67b1e1656b - flags: 0 - RecentlyUsedSceneGuid-1: value: 0657515703035b0d58570e2044760b44174f4e7f747074642f281c66b0b6653e flags: 0 - RecentlyUsedSceneGuid-2: + RecentlyUsedSceneGuid-1: value: 07025753065650025e585f7245720a4443164a2e7a7970357f714832b7e3646e flags: 0 - RecentlyUsedSceneGuid-3: - value: 5a03005f0301085d0f5d082043200b444e4e1c7b2d7a7f352c714532b0e6653b - flags: 0 - RecentlyUsedSceneGuid-4: - value: 0650065500505e595c5b0824467b06444f16482b2e7f23652f7d4465b3e26c3b - flags: 0 - RecentlyUsedSceneGuid-5: + RecentlyUsedSceneGuid-2: value: 0101000353575002585a5c7a47770e13104f1c29787a71337b784a60e4b53260 flags: 0 - RecentlyUsedSceneGuid-6: + RecentlyUsedSceneGuid-3: value: 070804050057080b5c5a54234077061545154d7c2a2b22357f2b4866e1e53769 flags: 0 - RecentlyUsedSceneGuid-7: + RecentlyUsedSceneGuid-4: value: 0107035e52055d59595e082744265e44131619732e2b75697c2f1b66e4b8646b flags: 0 + RecentlyUsedSceneGuid-5: + value: 0650065500505e595c5b0824467b06444f16482b2e7f23652f7d4465b3e26c3b + flags: 0 + RecentlyUsedSceneGuid-6: + value: 5a03005f0301085d0f5d082043200b444e4e1c7b2d7a7f352c714532b0e6653b + flags: 0 + RecentlyUsedSceneGuid-7: + value: 5409020704005a585b5a5b7545710a44434e1b782a707168297a1e67b1e1656b + flags: 0 RecentlyUsedSceneGuid-8: value: 505556565d020c0b5b5e5b71157b0c44104e417e74707f617a2a1831b7e5636c flags: 0 diff --git a/JNFrame/UserSettings/Layouts/CurrentMaximizeLayout.dwlt b/JNFrame/UserSettings/Layouts/CurrentMaximizeLayout.dwlt index b4b63696..545f9889 100644 --- a/JNFrame/UserSettings/Layouts/CurrentMaximizeLayout.dwlt +++ b/JNFrame/UserSettings/Layouts/CurrentMaximizeLayout.dwlt @@ -24,8 +24,209 @@ MonoBehaviour: m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 37 + controlID: 71 --- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: "\u63A7\u5236\u53F0" + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 0 + y: 641 + width: 1498 + height: 350 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_OverlaysVisible: 1 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 4} + - {fileID: 12} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1499 + height: 939 + m_MinSize: {x: 300, y: 100} + m_MaxSize: {x: 24288, y: 16192} + vertical: 1 + controlID: 72 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 5} + - {fileID: 7} + - {fileID: 10} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1499 + height: 568 + m_MinSize: {x: 300, y: 50} + m_MaxSize: {x: 24288, y: 8096} + vertical: 0 + controlID: 49 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 273 + height: 568 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 6} + m_Panes: + - {fileID: 6} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: "\u5C42\u7EA7" + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 0 + y: 73 + width: 272 + height: 547 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_OverlaysVisible: 1 + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 22000100 + m_LastClickedID: 65570 + m_ExpandedIDs: 0023ffffd225ffff5828ffffd628ffff5a29ffffc42dffff7e32fffffa32ffff423effffb448ffffbe50ffffa268ffffc87dffff6281fffff881ffff4a8afffff296ffff4897ffffc899ffffd499ffffdc99fffff099fffffa99ffff24a8ffff50befffff8c3ffff4ec4ffffcec6ffffdcc6ffffe4c6fffff8c6ffff02c7ffff86d3ffff5ce3ffffb4e3ffff34e6ffff42e6ffff4ae6ffff5ee6ffff68e6ffff98f9ffffd6f9ffff2cfbfffff4ffffffe6880000e8880000e28b0000e68b000080c3000082c3000080c60000f0ea000062ee0000b6ee0000ceee00008ef60000caf6000026fb000062fb000044fc000080fc00000a00010046000100 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 5} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: 4c969a2b90040154d917609493e03593 +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 273 + y: 0 + width: 421 + height: 568 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 8} + m_Panes: + - {fileID: 8} + - {fileID: 9} + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -45,10 +246,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 233 + x: 273 y: 73 - width: 529 - height: 617 + width: 419 + height: 547 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -372,18 +573,18 @@ MonoBehaviour: sizeOverriden: 0 m_OverlaysVisible: 1 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 - m_Gizmos: 0 + m_Gizmos: 1 m_OverrideSceneCullingMask: 6917529027641081856 m_SceneIsLit: 1 m_SceneLighting: 1 - m_2DMode: 0 + m_2DMode: 1 m_isRotationLocked: 0 m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: -0.3540113, y: 25.61407, z: -20.16048} + m_Target: {x: 1096.1888, y: 369.45178, z: 21.23398} speed: 2 - m_Value: {x: -0.3540113, y: 25.61407, z: -20.16048} + m_Value: {x: 1096.1888, y: 369.45178, z: 21.23398} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -411,17 +612,17 @@ MonoBehaviour: m_Size: {x: 0, y: 0} yGrid: 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} zGrid: 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} @@ -429,17 +630,17 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: -0.5459354, y: -0.00096003426, z: -0.0002186964, w: -0.83781517} + m_Target: {x: 0, y: 0, z: 0, w: 1} speed: 2 - m_Value: {x: -0.54594064, y: -0.0009600435, z: -0.00021869851, w: -0.8378233} + m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 7.751215 + m_Target: 1271.4872 speed: 2 - m_Value: 7.751215 + m_Value: 1271.4872 m_Ortho: - m_Target: 0 + m_Target: 1 speed: 2 - m_Value: 0 + m_Value: 1 m_CameraSettings: m_Speed: 1 m_SpeedNormalized: 0.5 @@ -453,181 +654,14 @@ MonoBehaviour: m_FarClip: 10000 m_DynamicClip: 1 m_OcclusionCulling: 0 - m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewRotation: {x: -0.25791118, y: 0.029583512, z: -0.008634044, w: -0.96566683} m_LastSceneViewOrtho: 0 m_ReplacementShader: {fileID: 0} m_ReplacementString: m_SceneVisActive: 1 m_LastLockedObject: {fileID: 0} m_ViewIsLockedToObject: 0 ---- !u!114 &3 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 4} - - {fileID: 11} - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 1352 - height: 939 - m_MinSize: {x: 300, y: 100} - m_MaxSize: {x: 24288, y: 16192} - vertical: 1 - controlID: 38 ---- !u!114 &4 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 5} - - {fileID: 7} - - {fileID: 9} - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 1352 - height: 638 - m_MinSize: {x: 300, y: 50} - m_MaxSize: {x: 24288, y: 8096} - vertical: 0 - controlID: 39 ---- !u!114 &5 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 233 - height: 638 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 6} - m_Panes: - - {fileID: 6} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &6 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: "\u5C42\u7EA7" - m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 73 - width: 232 - height: 617 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 - m_SceneHierarchy: - m_TreeViewState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: 20fbffff - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 5} - m_SearchString: - m_ExpandedScenes: [] - m_CurrenRootInstanceID: 0 - m_LockTracker: - m_IsLocked: 0 - m_CurrentSortingName: TransformSorting - m_WindowGUID: 4c969a2b90040154d917609493e03593 ---- !u!114 &7 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneView - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 233 - y: 0 - width: 531 - height: 638 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 2} - m_Panes: - - {fileID: 2} - - {fileID: 8} - m_Selected: 0 - m_LastSelected: 1 ---- !u!114 &8 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -661,32 +695,6 @@ MonoBehaviour: m_LastAppliedPresetName: Default m_SaveData: [] m_OverlaysVisible: 1 ---- !u!114 &9 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 764 - y: 0 - width: 588 - height: 638 - m_MinSize: {x: 102, y: 121} - m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 10} - m_Panes: - - {fileID: 10} - m_Selected: 0 - m_LastSelected: 0 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -696,21 +704,47 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SimulatorWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 694 + y: 0 + width: 805 + height: 568 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 11} + m_Panes: + - {fileID: 11} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13974, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} + m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: "\u6E38\u620F" - m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} + m_Text: "\u6A21\u62DF\u5668" + m_Image: {fileID: 8720083202187608617, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 764 + x: 694 y: 73 - width: 586 - height: 617 + width: 803 + height: 547 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -722,72 +756,38 @@ MonoBehaviour: m_SaveData: [] m_OverlaysVisible: 1 m_SerializedViewNames: - - UnityEditor.DeviceSimulation.SimulatorWindow + - UnityEditor.GameView m_SerializedViewValues: - - D:\Jisol\JisolGame\JNFrame\Library\PlayModeViewStates\8e0847e4bb946f1459608d64c6392b87 - m_PlayModeViewName: GameView + - D:\myproject\JisolGame\JNFrame\Library\PlayModeViewStates\260d3179cf4b30c4e9339973da698e56 + m_PlayModeViewName: Device Simulator m_ShowGizmos: 0 m_TargetDisplay: 0 - m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 586, y: 596} + m_ClearColor: {r: 0, g: 0, b: 0, a: 1} + m_TargetSize: {x: 2532, y: 1170} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 m_EnterPlayModeBehavior: 2 m_UseMipMap: 0 - m_VSyncEnabled: 0 - m_Gizmos: 0 - m_Stats: 0 - m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 - m_ZoomArea: - m_HRangeLocked: 0 - m_VRangeLocked: 0 - hZoomLockedByDefault: 0 - vZoomLockedByDefault: 0 - m_HBaseRangeMin: -293 - m_HBaseRangeMax: 293 - m_VBaseRangeMin: -298 - m_VBaseRangeMax: 298 - m_HAllowExceedBaseRangeMin: 1 - m_HAllowExceedBaseRangeMax: 1 - m_VAllowExceedBaseRangeMin: 1 - m_VAllowExceedBaseRangeMax: 1 - m_ScaleWithWindow: 0 - m_HSlider: 0 - m_VSlider: 0 - m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 1 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 586 - height: 596 - m_Scale: {x: 1, y: 1} - m_Translation: {x: 293, y: 298} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -293 - y: -298 - width: 586 - height: 596 - m_MinimalGUI: 1 - m_defaultScale: 1 - m_LastWindowPixelSize: {x: 586, y: 617} - m_ClearInEditMode: 1 - m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000001000000000000 - m_XRRenderMode: 0 - m_RenderTexture: {fileID: 0} ---- !u!114 &11 + m_SimulatorState: + controlPanelVisible: 0 + controlPanelWidth: 0 + controlPanelFoldoutKeys: + - UnityEditor.DeviceSimulation.ApplicationSettingsPlugin + controlPanelFoldoutValues: 00 + pluginNames: + - UnityEditor.DeviceSimulation.ApplicationSettingsPlugin + pluginStates: + - '{}' + scale: 30 + fitToScreenEnabled: 1 + rotationDegree: 270 + highlightSafeAreaEnabled: 0 + friendlyName: Apple iPhone 12 + screenIndex: 0 + networkReachability: 1 + systemLanguage: 10 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -797,24 +797,24 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser + m_Name: ConsoleWindow m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 638 - width: 1352 - height: 301 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 12} + y: 568 + width: 1499 + height: 371 + m_MinSize: {x: 101, y: 121} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 2} m_Panes: - - {fileID: 12} - {fileID: 13} - m_Selected: 0 - m_LastSelected: 1 ---- !u!114 &12 + - {fileID: 2} + m_Selected: 1 + m_LastSelected: 0 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -835,9 +835,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 711 - width: 1351 - height: 280 + y: 641 + width: 1498 + height: 350 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -859,7 +859,7 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Game/Plugins/Unity-Logs-Viewer + - Assets/Game/Scenes m_Globs: [] m_OriginalText: m_ImportLogFlags: 0 @@ -867,16 +867,16 @@ MonoBehaviour: m_ViewMode: 1 m_StartGridSize: 96 m_LastFolders: - - Assets/Unity-Logs-Viewer + - Assets/Game/Scenes m_LastFoldersGridSize: 96 m_LastProjectPath: D:\myproject\JisolGame\JNFrame m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: d6700000 - m_LastClickedID: 28886 - m_ExpandedIDs: 00000000a4700000a6700000a8700000aa700000ac700000ae700000b0700000b2700000b4700000b670000000ca9a3bffffff7f + scrollPos: {x: 0, y: 648} + m_SelectedIDs: 08710000 + m_LastClickedID: 28936 + m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e71000022710000767100009a71000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -892,7 +892,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 11} + m_ClientGUIView: {fileID: 12} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -904,7 +904,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000a4700000a6700000a8700000aa700000ac700000ae700000b0700000b2700000b4700000b6700000 + m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e7100002071000022710000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -929,8 +929,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 + m_SelectedInstanceIDs: 22000100 + m_LastClickedInstanceID: 65570 m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c623000000000000 m_RenameOverlay: @@ -948,7 +948,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 11} + m_ClientGUIView: {fileID: 12} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -959,41 +959,7 @@ MonoBehaviour: m_ScrollPosition: {x: 0, y: 0} m_GridSize: 96 m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 412 ---- !u!114 &13 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: "\u63A7\u5236\u53F0" - m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 711 - width: 1351 - height: 280 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 + m_DirectoriesAreaWidth: 295 --- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 @@ -1009,12 +975,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1352 + x: 1499 y: 0 - width: 568 + width: 421 height: 939 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 15} m_Panes: - {fileID: 15} @@ -1040,9 +1006,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1352 + x: 1499 y: 73 - width: 567 + width: 420 height: 918 m_SerializedDataModeController: m_DataMode: 0 @@ -1061,7 +1027,7 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 0 + m_LastVerticalScrollValue: 64 m_GlobalObjectId: m_InspectorMode: 0 m_LockTracker: diff --git a/JNFrame/UserSettings/Layouts/default-2022.dwlt b/JNFrame/UserSettings/Layouts/default-2022.dwlt index c91a7a99..9d2193be 100644 --- a/JNFrame/UserSettings/Layouts/default-2022.dwlt +++ b/JNFrame/UserSettings/Layouts/default-2022.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 1920 height: 989 m_ShowMode: 4 - m_Title: "\u63A7\u5236\u53F0" + m_Title: "\u68C0\u67E5\u5668" m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 143 + controlID: 14254 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1352 + width: 1499 height: 939 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 77 + controlID: 14218 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -165,12 +165,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1352 - height: 485 + width: 1499 + height: 568 m_MinSize: {x: 300, y: 50} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 44 + controlID: 14213 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -188,10 +188,10 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 233 - height: 485 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + width: 273 + height: 568 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 14} m_Panes: - {fileID: 14} @@ -212,16 +212,16 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 233 + x: 273 y: 0 - width: 443 - height: 485 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 13} + width: 435 + height: 568 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 13} - {fileID: 15} + - {fileID: 16} m_Selected: 0 m_LastSelected: 1 --- !u!114 &10 @@ -234,20 +234,20 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView + m_Name: SimulatorWindow m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 676 + x: 708 y: 0 - width: 676 - height: 485 - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 16} + width: 791 + height: 568 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 17} m_Panes: - - {fileID: 16} + - {fileID: 17} m_Selected: 0 m_LastSelected: 0 --- !u!114 &11 @@ -266,15 +266,15 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 485 - width: 1352 - height: 454 + y: 568 + width: 1499 + height: 371 m_MinSize: {x: 101, y: 121} m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 18} + m_ActualView: {fileID: 13} m_Panes: - - {fileID: 17} - {fileID: 18} + - {fileID: 13} m_Selected: 1 m_LastSelected: 0 --- !u!114 &12 @@ -292,9 +292,9 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1352 + x: 1499 y: 0 - width: 568 + width: 421 height: 939 m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} @@ -304,6 +304,103 @@ MonoBehaviour: m_Selected: 0 m_LastSelected: 0 --- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: "\u63A7\u5236\u53F0" + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 0 + y: 641 + width: 1498 + height: 350 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_OverlaysVisible: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: "\u5C42\u7EA7" + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 0 + y: 73 + width: 272 + height: 547 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_OverlaysVisible: 1 + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: b64afdffa45ffdffccadfefff6aefefff0d9feff2cf5feffaaf5feff160afffffa16ffffe018ffff481dffff0023ffffd225ffff5828ffffd628ffff5a29ffffc42dffff7e32fffffa32ffff423effffb448ffffbe50ffffa268ffffc87dffff6281fffff881ffff4a8afffff296ffff4897ffffc899ffffd499ffffdc99fffff099fffffa99ffff24a8ffff50befffff8c3ffff4ec4ffffcec6ffffdcc6ffffe4c6fffff8c6ffff02c7ffff86d3ffff5ce3ffffb4e3ffff34e6ffff42e6ffff4ae6ffff5ee6ffff68e6ffff98f9ffffd6f9ffff2cfbfffff4ffffffe6880000e8880000e28b0000e68b000080c3000082c3000080c60000f0ea000062ee0000b6ee0000ceee00008ef60000caf6000026fb000062fb000044fc000080fc00000a0001004600010072010100ae0101003a050100760501009c0d0100e2110100e4110100d8140100dc140100a0ff0100ec020200 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 8} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: 4c969a2b90040154d917609493e03593 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -323,10 +420,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 233 + x: 273 y: 73 - width: 441 - height: 464 + width: 433 + height: 547 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -659,9 +756,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 16.278067, y: -492.84607, z: 313.05194} + m_Target: {x: -6.5657153, y: 14.235892, z: 11.881908} speed: 2 - m_Value: {x: 16.278067, y: -492.84607, z: 313.05194} + m_Value: {x: -6.5657153, y: 14.235892, z: 11.881908} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -707,13 +804,13 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: -0.4759187, y: -0.039173987, z: 0.020418623, w: -0.8783681} + m_Target: {x: -0.14456968, y: -0.84889036, z: 0.41453534, w: -0.29434055} speed: 2 - m_Value: {x: -0.47592333, y: -0.039174367, z: 0.020418823, w: -0.8783766} + m_Value: {x: -0.14457032, y: -0.8488942, z: 0.4145372, w: -0.29434186} m_Size: - m_Target: 363.35245 + m_Target: 21.011448 speed: 2 - m_Value: 363.35245 + m_Value: 21.011448 m_Ortho: m_Target: 0 speed: 2 @@ -731,77 +828,14 @@ MonoBehaviour: m_FarClip: 10000 m_DynamicClip: 1 m_OcclusionCulling: 0 - m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewRotation: {x: -0.5459354, y: -0.00096003426, z: -0.0002186964, w: -0.83781517} m_LastSceneViewOrtho: 0 m_ReplacementShader: {fileID: 0} m_ReplacementString: m_SceneVisActive: 1 m_LastLockedObject: {fileID: 0} m_ViewIsLockedToObject: 0 ---- !u!114 &14 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: "\u5C42\u7EA7" - m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 73 - width: 232 - height: 464 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 - m_SceneHierarchy: - m_TreeViewState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: e6b30000 - m_LastClickedID: 46054 - m_ExpandedIDs: 3ec1ffffaac7ffff58f4ffffe2f7ffffb2f8ffff2cfbffff5a7d000054b00000 - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 8} - m_SearchString: - m_ExpandedScenes: [] - m_CurrenRootInstanceID: 0 - m_LockTracker: - m_IsLocked: 0 - m_CurrentSortingName: TransformSorting - m_WindowGUID: 4c969a2b90040154d917609493e03593 ---- !u!114 &15 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -821,10 +855,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 233 + x: 273 y: 73 - width: 529 - height: 617 + width: 433 + height: 547 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -835,7 +869,7 @@ MonoBehaviour: m_LastAppliedPresetName: Default m_SaveData: [] m_OverlaysVisible: 1 ---- !u!114 &16 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -844,21 +878,21 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 13974, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} + m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: "\u6E38\u620F" - m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} + m_Text: "\u6A21\u62DF\u5668" + m_Image: {fileID: 8720083202187608617, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 676 + x: 708 y: 73 - width: 674 - height: 464 + width: 789 + height: 547 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -870,72 +904,38 @@ MonoBehaviour: m_SaveData: [] m_OverlaysVisible: 1 m_SerializedViewNames: - - UnityEditor.DeviceSimulation.SimulatorWindow + - UnityEditor.GameView m_SerializedViewValues: - - D:\Jisol\JisolGame\JNFrame\Library\PlayModeViewStates\8e0847e4bb946f1459608d64c6392b87 - m_PlayModeViewName: GameView + - D:\myproject\JisolGame\JNFrame\Library\PlayModeViewStates\260d3179cf4b30c4e9339973da698e56 + m_PlayModeViewName: Device Simulator m_ShowGizmos: 0 m_TargetDisplay: 0 - m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 674, y: 443} + m_ClearColor: {r: 0, g: 0, b: 0, a: 1} + m_TargetSize: {x: 2532, y: 1170} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 m_EnterPlayModeBehavior: 2 m_UseMipMap: 0 - m_VSyncEnabled: 0 - m_Gizmos: 0 - m_Stats: 0 - m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 - m_ZoomArea: - m_HRangeLocked: 0 - m_VRangeLocked: 0 - hZoomLockedByDefault: 0 - vZoomLockedByDefault: 0 - m_HBaseRangeMin: -337 - m_HBaseRangeMax: 337 - m_VBaseRangeMin: -221.5 - m_VBaseRangeMax: 221.5 - m_HAllowExceedBaseRangeMin: 1 - m_HAllowExceedBaseRangeMax: 1 - m_VAllowExceedBaseRangeMin: 1 - m_VAllowExceedBaseRangeMax: 1 - m_ScaleWithWindow: 0 - m_HSlider: 0 - m_VSlider: 0 - m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 1 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 674 - height: 443 - m_Scale: {x: 1, y: 1} - m_Translation: {x: 337, y: 221.5} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -337 - y: -221.5 - width: 674 - height: 443 - m_MinimalGUI: 1 - m_defaultScale: 1 - m_LastWindowPixelSize: {x: 674, y: 464} - m_ClearInEditMode: 1 - m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000001000000000000 - m_XRRenderMode: 0 - m_RenderTexture: {fileID: 0} ---- !u!114 &17 + m_SimulatorState: + controlPanelVisible: 0 + controlPanelWidth: 0 + controlPanelFoldoutKeys: + - UnityEditor.DeviceSimulation.ApplicationSettingsPlugin + controlPanelFoldoutValues: 00 + pluginNames: + - UnityEditor.DeviceSimulation.ApplicationSettingsPlugin + pluginStates: + - '{}' + scale: 29 + fitToScreenEnabled: 1 + rotationDegree: 270 + highlightSafeAreaEnabled: 0 + friendlyName: Apple iPhone 12 + screenIndex: 0 + networkReachability: 1 + systemLanguage: 10 +--- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -956,9 +956,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 558 - width: 1351 - height: 433 + y: 641 + width: 1498 + height: 350 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -994,10 +994,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 840} - m_SelectedIDs: 3c750000 - m_LastClickedID: 30012 - m_ExpandedIDs: 0000000036750000387500003a7500003c7500003e75000040750000427500004475000046750000487500004a7500004c7500004e7500005075000052750000547500005675000000ca9a3bffffff7f + scrollPos: {x: 0, y: 648} + m_SelectedIDs: 08710000 + m_LastClickedID: 28936 + m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e71000022710000767100009a71000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1025,7 +1025,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000036750000387500003a7500003c7500003e75000040750000427500004475000046750000487500004a7500004c7500004e75000050750000527500005475000056750000 + m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e710000227100007671000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1050,8 +1050,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: e6b30000 - m_LastClickedInstanceID: 46054 + m_SelectedInstanceIDs: c4710000 + m_LastClickedInstanceID: 29124 m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c623000000000000 m_RenameOverlay: @@ -1080,41 +1080,7 @@ MonoBehaviour: m_ScrollPosition: {x: 0, y: 0} m_GridSize: 96 m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 412 ---- !u!114 &18 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: "\u63A7\u5236\u53F0" - m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 558 - width: 1351 - height: 433 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 + m_DirectoriesAreaWidth: 295 --- !u!114 &19 MonoBehaviour: m_ObjectHideFlags: 52 @@ -1135,9 +1101,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1352 + x: 1499 y: 73 - width: 567 + width: 420 height: 918 m_SerializedDataModeController: m_DataMode: 0 diff --git a/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache index b0cc04f3..a5427a46 100644 Binary files a/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/Assembly-CSharp-Editor.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/Assembly-CSharp-Editor.csproj.AssemblyReference.cache index a55529fa..a31aec46 100644 Binary files a/JNFrame/obj/Debug/Assembly-CSharp-Editor.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/Assembly-CSharp-Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index d835099b..20176dec 100644 Binary files a/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/AstarPathfindingProject.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/AstarPathfindingProject.csproj.AssemblyReference.cache index 370dcb3d..c148246a 100644 Binary files a/JNFrame/obj/Debug/AstarPathfindingProject.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/AstarPathfindingProject.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache index d69fd19c..3d535423 100644 Binary files a/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache index ec5b5a76..0b426c85 100644 Binary files a/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache index ec5b5a76..796336e6 100644 Binary files a/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/PackageToolsEditor.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/PackageToolsEditor.csproj.AssemblyReference.cache index 10e45cd2..096350e1 100644 Binary files a/JNFrame/obj/Debug/PackageToolsEditor.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/PackageToolsEditor.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.Addressables.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.Addressables.csproj.AssemblyReference.cache index 889fa3c2..241b2249 100644 Binary files a/JNFrame/obj/Debug/UniTask.Addressables.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.Addressables.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.DOTween.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.DOTween.csproj.AssemblyReference.cache index 889fa3c2..241b2249 100644 Binary files a/JNFrame/obj/Debug/UniTask.DOTween.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.DOTween.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.Editor.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.Editor.csproj.AssemblyReference.cache index 006ae492..a6bffc66 100644 Binary files a/JNFrame/obj/Debug/UniTask.Editor.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.Linq.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.Linq.csproj.AssemblyReference.cache index 889fa3c2..241b2249 100644 Binary files a/JNFrame/obj/Debug/UniTask.Linq.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.Linq.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache index 178ac542..9edcb665 100644 Binary files a/JNFrame/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache differ diff --git a/JNFrame/obj/Debug/UniTask.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/UniTask.csproj.AssemblyReference.cache index 889fa3c2..241b2249 100644 Binary files a/JNFrame/obj/Debug/UniTask.csproj.AssemblyReference.cache and b/JNFrame/obj/Debug/UniTask.csproj.AssemblyReference.cache differ