From 16d943ab6b0265742199a238d3ac2b32d02e812b Mon Sep 17 00:00:00 2001 From: "PC-20230316NUNE\\Administrator" <2858626794@qq.com> Date: Mon, 5 Feb 2024 18:56:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E5=8F=96RVO=20=E5=AF=BB=E8=B7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- JNFrame/App.csproj | 515 +- JNFrame/Assembly-CSharp-Editor.csproj | 656 +- JNFrame/Assembly-CSharp.csproj | 648 +- JNFrame/Assets/Game/Plugins/App/App.cs | 2 +- JNFrame/Assets/Game/Plugins/App/Game/RVO.meta | 3 + .../Plugins/App/Game/RVO/JNGRVOManager.cs | 28 + .../App/Game/RVO/JNGRVOManager.cs.meta | 3 + JNFrame/Assets/Game/Plugins/App/JNGSocket.cs | 2 +- .../Game/Plugins/App/Sync/JNGSyncFrame.cs | 1 + .../Plugins/App/Sync/JNGSyncFrameDefault.cs | 6 + .../Behaviors/AIDestinationSetter.cs | 8 +- .../Behaviors/Patrol.cs | 4 +- .../AstarPathfindingProject/Core/AI/AIBase.cs | 9 +- .../AstarPathfindingProject/Core/AI/AILerp.cs | 5 +- .../Core/AI/TurnBasedAI.cs | 4 +- .../AstarPathfindingProject/Core/AstarPath.cs | 7 +- .../Core/GraphUpdateScene.cs | 7 +- .../Core/Misc/AstarDebugger.cs | 4 +- .../Core/Misc/PathProcessor.cs | 27 +- .../Core/Misc/PathReturnQueue.cs | 5 +- .../Core/RVO/RVOAgent.cs | 5 - .../Core/RVO/RVOCoreSimulator.cs | 7 +- .../Example11_RVO/GroupController.cs | 4 +- .../Example11_RVO/LightweightRVO.cs | 9 +- .../Example11_RVO/RVOAgentPlacer.cs | 11 +- .../Example11_RVO/RVOExampleAgent.cs | 4 +- .../Example12_Procedural/ProceduralWorld.cs | 14 +- .../Example13_Moving/BezierMover.cs | 5 +- .../Example13_Moving/LocalSpaceGraph.cs | 4 +- .../Example13_Moving/LocalSpaceRichAI.cs | 5 +- .../TurnBasedDoor.cs | 14 +- .../TurnBasedManager.cs | 4 +- .../Example16_RVO 2D/ExampleMover.cs | 15 +- .../Example8_PathTypes/PathTypesDemo.cs | 7 +- .../ExampleScripts/DoorController.cs | 7 +- .../ExampleScripts/RecastTileUpdate.cs | 7 +- .../ExampleScripts/SnapToNode.cs | 7 +- .../ExampleScripts/TargetMover.cs | 10 +- .../PackageTools/Editor/EditorGUIx.cs | 4 +- .../Pathfinders/ABPath.cs | 5 +- .../Pathfinders/MultiTargetPath.cs | 3 +- .../Pathfinders/RandomPath.cs | 3 +- .../Pathfinders/XPath.cs | 3 +- .../RVO/RVOObstacle.cs | 9 +- .../TurnBased/BlockManager.cs | 4 +- .../Utilities/ProceduralGridMover.cs | 10 +- .../Plugins/JNGame/Sync/Frame/AStar.meta} | 2 +- .../JNGame/Sync/Frame/AStar/JNAStarBase.cs | 7 + .../Sync/Frame/AStar/JNAStarBase.cs.meta | 3 + .../JNGame/Sync/Frame/AStar/JNAStarPath.cs | 13 + .../Sync/Frame/AStar/JNAStarPath.cs.meta | 3 + .../Plugins/JNGame/Sync/Frame/AStar/RVO.meta | 3 + .../JNGame/Sync/Frame/AStar/RVO/JNRVOAgent.cs | 1016 ++ .../Sync/Frame/AStar/RVO/JNRVOAgent.cs.meta | 3 + .../Sync/Frame/AStar/RVO/JNRVOObstacle.cs | 45 + .../Frame/AStar/RVO/JNRVOObstacle.cs.meta | 3 + .../Sync/Frame/AStar/RVO/JNRVOQuadtree.cs | 246 + .../Frame/AStar/RVO/JNRVOQuadtree.cs.meta | 3 + .../Sync/Frame/AStar/RVO/JNRVOSimulator.cs | 485 + .../Frame/AStar/RVO/JNRVOSimulator.cs.meta | 3 + .../Plugins/JNGame/Sync/Frame/AStar/Util.meta | 3 + .../JNGame/Sync/Frame/AStar/Util/Int3.cs | 320 + .../JNGame/Sync/Frame/AStar/Util/Int3.cs.meta | 3 + .../Sync/Frame/AStar/Util/JNAStarMath.cs | 1538 ++ .../Sync/Frame/AStar/Util/JNAStarMath.cs.meta | 3 + .../JNGame/Sync/Frame/Entity/JNTime.cs | 9 +- .../Sync/Frame/Game/IJNSyncFrameComponent.cs | 6 + .../Plugins/JNGame/Sync/Frame/JNSyncFrame.cs | 24 +- .../Assets/Game/Plugins/JNGame/Util/JAPI.cs | 2 +- .../Game/Scenes/Mode/Example11_RVO.meta | 2 + .../Mode/Example11_RVO/GRVO01World.unity | 613 + .../Example11_RVO/GRVO01World.unity.meta} | 2 +- .../Game/Scenes/Mode/Example11_RVO/RVO.unity | 2832 +++ .../Scenes/Mode/Example11_RVO/RVO.unity.meta | 2 + .../Mode/Example11_RVO/RVOLightweight.unity | 631 + .../Example11_RVO/RVOLightweight.unity.meta | 2 + .../RVOLightweightSettings.lighting | 64 + .../RVOLightweightSettings.lighting.meta | 8 + .../Mode/Example3_Recast_Navmesh1/Bot.prefab | 58 +- .../JNWorldSync01.unity | 303 + .../JNWorldSync01.unity.meta} | 2 +- .../WorldSync01.unity | 983 +- JNFrame/Assets/Game/Scenes/UIScene.unity | 203 +- .../Game/Script/battle/GBattleModeManager.cs | 3 +- .../Script/battle/mode/Example11_RVO.meta} | 2 +- .../mode/Example11_RVO/GRVO01WorldMode.cs | 270 + .../Example11_RVO/GRVO01WorldMode.cs.meta | 11 + .../GWorldSync01ModeScript/GWorldSync01UI.cs | 4 +- .../mode/GWorldSync01ModeScript/PlayerBot.cs | 11 - .../Packages/BepuPhysics.2.3.4/.signature.p7s | Bin 9472 -> 0 bytes .../BepuPhysics.2.3.4/BepuPhysics.nuspec | 21 - .../BepuPhysics.2.3.4/bepuphysicslogo256.png | Bin 42285 -> 0 bytes .../bepuphysicslogo256.png.meta | 140 - .../lib/netstandard2.0/BepuPhysics.dll | Bin 731648 -> 0 bytes .../lib/netstandard2.0/BepuPhysics.dll.meta | 23 - .../lib/netstandard2.0/BepuPhysics.xml | 6303 ------- .../BepuUtilities.2.3.4/.signature.p7s | Bin 9473 -> 0 bytes .../BepuUtilities.2.3.4/BepuUtilities.nuspec | 22 - .../bepuphysicslogo256.png | Bin 42285 -> 0 bytes .../bepuphysicslogo256.png.meta | 140 - .../lib/netstandard2.0/BepuUtilities.dll | Bin 128512 -> 0 bytes .../lib/netstandard2.0/BepuUtilities.dll.meta | 23 - .../lib/netstandard2.0/BepuUtilities.xml | 4105 ----- .../lib/netstandard2.0/BepuUtilities.xml.meta | 7 - ...2.3.4.meta => Google.Protobuf.3.15.8.meta} | 2 +- .../.signature.p7s | Bin 18703 -> 18165 bytes .../Google.Protobuf.nuspec | 6 +- .../Google.Protobuf.nuspec.meta | 2 +- .../lib.meta | 2 +- .../lib/netstandard2.0.meta | 2 +- .../lib/netstandard2.0/Google.Protobuf.dll | Bin 0 -> 390248 bytes .../netstandard2.0/Google.Protobuf.dll.meta | 2 +- .../lib/netstandard2.0/Google.Protobuf.xml | 66 +- .../netstandard2.0/Google.Protobuf.xml.meta | 2 +- .../Packages/Google.Protobuf.3.19.6.meta | 8 - .../Google.Protobuf.3.19.6/.signature.p7s | Bin 22398 -> 0 bytes .../Packages/Google.Protobuf.3.19.6/lib.meta | 8 - .../lib/netstandard2.0/Google.Protobuf.dll | Bin 405272 -> 0 bytes ...Runtime.CompilerServices.Unsafe.4.5.2.meta | 8 + .../.signature.p7s | Bin 0 -> 22354 bytes .../LICENSE.TXT | 0 .../LICENSE.TXT.meta | 2 +- ...tem.Runtime.CompilerServices.Unsafe.nuspec | 36 + ...untime.CompilerServices.Unsafe.nuspec.meta | 2 +- .../THIRD-PARTY-NOTICES.TXT | 309 + .../THIRD-PARTY-NOTICES.TXT.meta | 2 +- .../lib.meta | 2 +- .../lib/netstandard2.0.meta | 2 +- ...System.Runtime.CompilerServices.Unsafe.dll | Bin 0 -> 23600 bytes ...m.Runtime.CompilerServices.Unsafe.dll.meta | 2 +- ...System.Runtime.CompilerServices.Unsafe.xml | 173 +- ...m.Runtime.CompilerServices.Unsafe.xml.meta | 2 +- .../useSharedDesignerContext.txt | 0 .../useSharedDesignerContext.txt.meta | 2 +- .../version.txt | 1 + .../version.txt.meta} | 2 +- ...Runtime.CompilerServices.Unsafe.6.0.0.meta | 8 - .../Icon.png | Bin 7006 -> 0 bytes .../Icon.png.meta | 127 - ...tem.Runtime.CompilerServices.Unsafe.nuspec | 29 - .../THIRD-PARTY-NOTICES.TXT | 939 - .../buildTransitive.meta | 8 - .../buildTransitive/netcoreapp2.0.meta | 8 - ...em.Runtime.CompilerServices.Unsafe.targets | 6 - ...ntime.CompilerServices.Unsafe.targets.meta | 7 - .../buildTransitive/netcoreapp3.1.meta | 8 - .../buildTransitive/netcoreapp3.1/_._.meta | 7 - .../lib.meta | 8 - .../lib/netstandard2.0.meta | 8 - ...System.Runtime.CompilerServices.Unsafe.dll | Bin 18024 -> 0 bytes JNFrame/Assets/StreamingAssets/build_info | 2 +- JNFrame/Assets/packages.config | 6 +- JNFrame/AstarPathfindingProject.csproj | 818 +- JNFrame/AstarPathfindingProjectEditor.csproj | 566 +- JNFrame/BestHTTP.csproj | 4486 +++-- JNFrame/CaseSensitiveTest | 0 JNFrame/JNFrame.sln | 72 +- JNFrame/JNGame.csproj | 1340 +- JNFrame/Logs/AssetImportWorker0-prev.log | 6425 ++++++- JNFrame/Logs/AssetImportWorker0.log | 1816 +- JNFrame/Logs/AssetImportWorker1-prev.log | 6193 ++++++- JNFrame/Logs/AssetImportWorker1.log | 14389 +++++++--------- JNFrame/Logs/AssetImportWorker2-prev.log | 180 + JNFrame/Logs/AssetImportWorker2.log | 14225 +++++++-------- .../shadercompiler-AssetImportWorker0.log | 2 +- ...hadercompiler-UnityShaderCompiler.exe0.log | 8 +- ...hadercompiler-UnityShaderCompiler.exe1.log | 9 + ...adercompiler-UnityShaderCompiler.exe10.log | 9 + ...adercompiler-UnityShaderCompiler.exe11.log | 9 + ...hadercompiler-UnityShaderCompiler.exe2.log | 9 + ...hadercompiler-UnityShaderCompiler.exe3.log | 9 + ...hadercompiler-UnityShaderCompiler.exe4.log | 9 + ...hadercompiler-UnityShaderCompiler.exe5.log | 9 + ...hadercompiler-UnityShaderCompiler.exe6.log | 9 + ...hadercompiler-UnityShaderCompiler.exe7.log | 9 + ...hadercompiler-UnityShaderCompiler.exe8.log | 9 + ...hadercompiler-UnityShaderCompiler.exe9.log | 9 + JNFrame/PackageToolsEditor.csproj | 518 +- JNFrame/Packages/manifest.json | 1 - JNFrame/Packages/packages-lock.json | 24 +- JNFrame/ProjectSettings/DynamicsManager.asset | 7 +- .../ProjectSettings/EditorBuildSettings.asset | 9 + .../Settings.json | 2 + JNFrame/ProjectSettings/ProjectSettings.asset | 56 +- JNFrame/ProjectSettings/ProjectVersion.txt | 4 +- .../_._ => ProjectSettings/boot.config} | 0 JNFrame/UniTask.Addressables.csproj | 502 +- JNFrame/UniTask.DOTween.csproj | 502 +- JNFrame/UniTask.Editor.csproj | 518 +- JNFrame/UniTask.Linq.csproj | 642 +- JNFrame/UniTask.TextMeshPro.csproj | 504 +- JNFrame/UniTask.csproj | 626 +- JNFrame/UserSettings/EditorUserSettings.asset | 44 +- .../UserSettings/Layouts/default-2021.dwlt | 377 +- .../Debug/App.csproj.AssemblyReference.cache | Bin 121709 -> 234813 bytes ...harp-Editor.csproj.AssemblyReference.cache | Bin 152822 -> 261953 bytes ...mbly-CSharp.csproj.AssemblyReference.cache | Bin 676228 -> 676228 bytes ...dingProject.csproj.AssemblyReference.cache | Bin 121709 -> 228060 bytes ...ojectEditor.csproj.AssemblyReference.cache | Bin 126384 -> 236492 bytes .../BestHTTP.csproj.AssemblyReference.cache | Bin 115175 -> 221526 bytes .../JNGame.csproj.AssemblyReference.cache | Bin 115175 -> 221899 bytes ...ToolsEditor.csproj.AssemblyReference.cache | Bin 119850 -> 229958 bytes ...ddressables.csproj.AssemblyReference.cache | Bin 638821 -> 638821 bytes ...ask.DOTween.csproj.AssemblyReference.cache | Bin 638821 -> 638821 bytes ...Task.Editor.csproj.AssemblyReference.cache | Bin 669553 -> 669553 bytes ...niTask.Linq.csproj.AssemblyReference.cache | Bin 638821 -> 638821 bytes ...TextMeshPro.csproj.AssemblyReference.cache | Bin 639816 -> 639816 bytes .../UniTask.csproj.AssemblyReference.cache | Bin 638821 -> 638821 bytes 208 files changed, 42246 insertions(+), 37182 deletions(-) create mode 100644 JNFrame/Assets/Game/Plugins/App/Game/RVO.meta create mode 100644 JNFrame/Assets/Game/Plugins/App/Game/RVO/JNGRVOManager.cs create mode 100644 JNFrame/Assets/Game/Plugins/App/Game/RVO/JNGRVOManager.cs.meta rename JNFrame/Assets/{Packages/BepuPhysics.2.3.4.meta => Game/Plugins/JNGame/Sync/Frame/AStar.meta} (77%) create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/JNAStarBase.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/JNAStarBase.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/JNAStarPath.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/JNAStarPath.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOAgent.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOAgent.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOObstacle.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOObstacle.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOQuadtree.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOQuadtree.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOSimulator.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/RVO/JNRVOSimulator.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/Util.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/Util/Int3.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/Util/Int3.cs.meta create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/Util/JNAStarMath.cs create mode 100644 JNFrame/Assets/Game/Plugins/JNGame/Sync/Frame/AStar/Util/JNAStarMath.cs.meta create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO.meta create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity rename JNFrame/Assets/{Packages/BepuUtilities.2.3.4/BepuUtilities.nuspec.meta => Game/Scenes/Mode/Example11_RVO/GRVO01World.unity.meta} (74%) create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVO.unity create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVO.unity.meta create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity.meta create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweightSettings.lighting create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweightSettings.lighting.meta create mode 100644 JNFrame/Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/JNWorldSync01.unity rename JNFrame/Assets/{Packages/BepuPhysics.2.3.4/BepuPhysics.nuspec.meta => Game/Scenes/Mode/Example3_Recast_Navmesh1/JNWorldSync01.unity.meta} (74%) rename JNFrame/Assets/{Packages/BepuPhysics.2.3.4/lib/netstandard2.0.meta => Game/Script/battle/mode/Example11_RVO.meta} (77%) create mode 100644 JNFrame/Assets/Game/Script/battle/mode/Example11_RVO/GRVO01WorldMode.cs create mode 100644 JNFrame/Assets/Game/Script/battle/mode/Example11_RVO/GRVO01WorldMode.cs.meta delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/.signature.p7s delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/BepuPhysics.nuspec delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/bepuphysicslogo256.png delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/bepuphysicslogo256.png.meta delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.dll delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.dll.meta delete mode 100644 JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.xml delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/.signature.p7s delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/BepuUtilities.nuspec delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png.meta delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.dll delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.dll.meta delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.xml delete mode 100644 JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.xml.meta rename JNFrame/Assets/Packages/{BepuUtilities.2.3.4.meta => Google.Protobuf.3.15.8.meta} (77%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => Google.Protobuf.3.15.8}/.signature.p7s (56%) rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => Google.Protobuf.3.15.8}/Google.Protobuf.nuspec (91%) rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => Google.Protobuf.3.15.8}/Google.Protobuf.nuspec.meta (74%) rename JNFrame/Assets/Packages/{BepuUtilities.2.3.4 => Google.Protobuf.3.15.8}/lib.meta (77%) rename JNFrame/Assets/Packages/{BepuUtilities.2.3.4 => Google.Protobuf.3.15.8}/lib/netstandard2.0.meta (77%) create mode 100644 JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => Google.Protobuf.3.15.8}/lib/netstandard2.0/Google.Protobuf.dll.meta (91%) rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => Google.Protobuf.3.15.8}/lib/netstandard2.0/Google.Protobuf.xml (99%) rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => Google.Protobuf.3.15.8}/lib/netstandard2.0/Google.Protobuf.xml.meta (75%) delete mode 100644 JNFrame/Assets/Packages/Google.Protobuf.3.19.6.meta delete mode 100644 JNFrame/Assets/Packages/Google.Protobuf.3.19.6/.signature.p7s delete mode 100644 JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib.meta delete mode 100644 JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.dll create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2.meta create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/LICENSE.TXT (100%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/LICENSE.TXT.meta (75%) create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.nuspec rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/System.Runtime.CompilerServices.Unsafe.nuspec.meta (74%) create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/THIRD-PARTY-NOTICES.TXT.meta (75%) rename JNFrame/Assets/Packages/{BepuPhysics.2.3.4 => System.Runtime.CompilerServices.Unsafe.4.5.2}/lib.meta (77%) rename JNFrame/Assets/Packages/{Google.Protobuf.3.19.6 => System.Runtime.CompilerServices.Unsafe.4.5.2}/lib/netstandard2.0.meta (77%) create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta (91%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml (55%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta (75%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/useSharedDesignerContext.txt (100%) rename JNFrame/Assets/Packages/{System.Runtime.CompilerServices.Unsafe.6.0.0 => System.Runtime.CompilerServices.Unsafe.4.5.2}/useSharedDesignerContext.txt.meta (75%) create mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt rename JNFrame/Assets/Packages/{BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.xml.meta => System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt.meta} (75%) delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta delete mode 100644 JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll delete mode 100644 JNFrame/CaseSensitiveTest create mode 100644 JNFrame/Logs/AssetImportWorker2-prev.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe1.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe10.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe11.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe2.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe3.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe4.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe5.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe6.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe7.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe8.log create mode 100644 JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe9.log rename JNFrame/{Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._ => ProjectSettings/boot.config} (100%) diff --git a/JNFrame/App.csproj b/JNFrame/App.csproj index 40b70c9e..7172a534 100644 --- a/JNFrame/App.csproj +++ b/JNFrame/App.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\App\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,314 +41,299 @@ false - - - - - - - - - - + + + + + + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -356,389 +341,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/Assembly-CSharp-Editor.csproj b/JNFrame/Assembly-CSharp-Editor.csproj index c2f8915b..9cd5a8e1 100644 --- a/JNFrame/Assembly-CSharp-Editor.csproj +++ b/JNFrame/Assembly-CSharp-Editor.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\Assembly-CSharp-Editor\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;UNITY_EDITOR_ONLY_COMPILATION + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -40,311 +40,307 @@ false false - - - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -352,527 +348,495 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.TestRunner.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.EditorCoroutines.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.PlasticSCM.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Flow.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.AI.Navigation.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VSCode.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Timeline.Editor.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Shared.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualStudio.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Performance.Profile-Analyzer.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Core.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Timeline.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Core.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TextMeshPro.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.State.Editor.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.SettingsProvider.Editor.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Flow.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll + + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.PlasticSCM.Editor.dll + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Rider.Editor.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.UI.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Flow.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Core.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Flow.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.EditorCoroutines.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Timeline.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.Shared.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.SettingsProvider.Editor.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Performance.Profile-Analyzer.Editor.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.Timeline.Editor.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.AI.Navigation.Updater.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.State.Editor.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TextMeshPro.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.AI.Navigation.Editor.dll - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VisualScripting.State.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.AI.Navigation.Editor.ConversionSystem.dll - - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.VSCode.Editor.dll - {3ca4410c-c33b-25ce-55bc-3a432b9830ed} Assembly-CSharp - - {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468} - AstarPathfindingProjectEditor - - - {39f5acb9-cdbb-9f48-497c-14159a0afd38} - UniTask - - - {4b964c85-7c9d-2d07-a2e0-8595262e4e96} - UniTask.TextMeshPro - - - {6daf7f60-fa83-da88-56be-04871b5df574} - JNGame - {49f1e414-166b-61b7-ba11-ad89c8d920ee} BestHTTP - - {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81} - PackageToolsEditor - - - {6d8bd378-3e5b-6997-5e5e-288243f0f72b} - UniTask.Addressables - {86f5a836-c92e-bcf7-bc96-4683fb573cb1} App + + {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81} + PackageToolsEditor + {99c4c7d2-ca96-1038-95e0-77e225df2b06} UniTask.DOTween @@ -881,10 +845,30 @@ {7f60f694-1f75-f2f0-5fde-36ccb7fd82d1} UniTask.Linq + + {4b964c85-7c9d-2d07-a2e0-8595262e4e96} + UniTask.TextMeshPro + {01d387ea-c776-81ef-4b5e-bf013e2cd20f} AstarPathfindingProject + + {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468} + AstarPathfindingProjectEditor + + + {6daf7f60-fa83-da88-56be-04871b5df574} + JNGame + + + {39f5acb9-cdbb-9f48-497c-14159a0afd38} + UniTask + + + {6d8bd378-3e5b-6997-5e5e-288243f0f72b} + UniTask.Addressables + - - - Gets the first shape type index associated with the task. - - - - - Gets the second shape type index associated with the task. - - - - - Allocates an element in the list, initializing the backing buffer if needed. - - Number of bytes per element. - Minimum size of the backing buffer to create if this is a new allocation. - Pool to pull allocations from. - Index of the element in bytes within the list's buffer. - - - - Helper class for creating runtime specialized vectorized ray intersection tests with shapes that support broadcasting. - - - - - The cached pair data created by a single worker during the last execution of narrow phase pair processing. - - - - - The set of pair-pointer associations created by this worker that should be added to the pair mapping. - - - - - The set of pairs to remove from the pair cache generated by the worker. - - - - - Contains a set of type batches whose constraints share no body references. - - - - - Gets a type batch in the batch matching the given type id. - Requires that there exists at least one constraint in the type batch. - - Id of the TypeBatch's type to retrieve. - TypeBatch instance associated with the given type. - - - - Gets a pointer to the type batch in the batch matching the given type id. - Requires that there exists at least one constraint in the type batch. - - Id of the TypeBatch's type to retrieve. - TypeBatch instance associated with the given type. - - - - Ensures that all type batches within this constraint batch meet or exceed the size requirements of the per-type capacities defined by the solver. - - Solver to pull minimum capacities from. - - - - Applies the solver-defined minimum capacities to existing type batches. - - Solver to pull minimum capacities from. - - - - Releases all memory used by the batch. - - - - - Enumerates the bodies attached to an active constraint and removes the constraint's handle from all of the connected body constraint reference lists. - - - - - Index of the target constraint bundle to optimize. - - - - - Index of the last optimized type batch. - - - - - Index of the last optimized batch. - - - - - If true, regions are offset by a half region width. Toggled each frame. Offsets allow the sorted regions to intermix, eventually converging to a full sort. - - - - - Gets the total number of bundles across all types and batches. - - - - - Gets the total number of bundles across all types and batches. - - - - - Gets whether this constraint set is allocated. - - - - - Constrains two bodies to rotate around a local axis attached to body A at a target velocity. - - - - - Axis of rotation in body A's local space. - - - - - Target relative angular velocity around the axis. - - - - - Motor control parameters. - - - - - Angular component of a hinge. Constrains the angular degrees of freedom of two bodies such that they can only rotate relative to each other around the hinge's axis. - - - - - Hinge axis in the local space of A. - - - - - Hinge axis in the local space of B. - - - - - Spring frequency and damping parameters. - - - - - Constrains the relative angular velocity between two bodies to a target. - - - - - Target relative angular velocity between A and B, stored in A's local space. Target world space angular velocity of B is AngularVelocityA + TargetVelocityLocalA * OrientationA. - - - - - Motor control parameters. - - - - - Constrains two bodies to have a target relative rotation. - - - - - The target relative rotation from body A to body B in body A's local space. The constraint tries to maintain OrientationB = TargetRelativeRotationLocalA * OrientationA. - - - - - Spring frequency and damping parameters. - - - - - Servo control parameters. - - - - - Constrains two bodies with the angular component of a swivel hinge that allows rotation around two axes, like a laptop monitor hinge that allows flipping the screen. - - - - - Swivel axis in the local space of body A. - - - - - Hinge axis in the local space of body B. - - - - - Spring frequency and damping parameters. - - - - - Constrains the area of a triangle connecting the centers of three bodies to match a goal area. - Scaled volume computed from ||ab x ac||. - - - - - 2 times the target area of the triangle. Computed from ||ab x ac||. - - - - - Spring frequency and damping parameters. - - - - - Creates a new area constraint, initializing the target area using a set of initial positions. - - Initial position of the first body. - Initial position of the second body. - Initial position of the third body. - Spring settings to apply to the volume constraint. - - - - Handles the solve iterations of a bunch of ball socket constraints. - - - - - Constrains a point on one body to a point on another body. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Spring frequency and damping parameters. - - - - - Handles the solve iterations of a bunch of ball socket constraints. - - - - - Constrains the relative linear velocity between two bodies to a target. - Conceptually, controls the relative velocity by a virtual lever arm attached to the center of A and leading to the anchor of B. - - - - - Offset from body B to its anchor. - - - - - Target relative linear velocity between A and B, stored in A's local space. Target world space linear velocity of B is LinearVelocityA + TargetVelocityLocalA * OrientationA. - - - - - Motor control parameters. - - - - - Handles the solve iterations of a bunch of ball socket motor constraints. - - - - - Constrains a point on one body to a point on another body. - Provides speed and force configuration that the BallSocket joint does not. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Spring frequency and damping parameters. - - - - - Servo control parameters. - - - - - Handles the solve iterations of a bunch of ball socket servo constraints. - - - - - Provides shared functionality for constraints with jacobians similar to the BallSocket. - - - - - Constrains the center of two bodies to be separated by a goal distance. - - - - - Target distance between the body centers. - - - - - Spring frequency and damping parameters. - - - - - Handles the solve iterations of a bunch of distance servos. - - - - - Checks if a value is a finite number- neither infinite nor NaN. - - Value to check. - True if the value is neither infinite nor NaN, false otherwise. - - - - Checks if a value is a finite value greater than zero and not NaN. - - Value to check. - True if the value is a finite number greater than zero and not NaN, false otherwise. - - - - Checks if a value is a finite value greater than or equal to zero and not NaN. - - Value to check. - True if the value is a finite number greater than or equal to zero and not NaN, false otherwise. - - - - Checks if a value is a finite value less than zero and not NaN. - - Value to check. - True if the value is a finite number less than zero and not NaN, false otherwise. - - - - Checks if a value is a finite value less than or equal to zero and not NaN. - - Value to check. - True if the value is a finite number less than or equal to zero and not NaN, false otherwise. - - - - Handles the solve iterations of a bunch of 1-contact one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 2-contact one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 3-contact one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 4-contact one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 1-contact two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 2-contact two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 3-contact two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 4-contact two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 2-contact nonconvex two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 2-contact nonconvex one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 3-contact nonconvex two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 3-contact nonconvex one body manifold constraints. - - - - - Handles the solve iterations of a bunch of 4-contact nonconvex two body manifold constraints. - - - - - Handles the solve iterations of a bunch of 4-contact nonconvex one body manifold constraints. - - - - - Callbacks for direct references to the solver's contact constraint data. - - - - - Provides a reference to a convex one body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Body handle referenced by the constraint. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a convex two body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - First body handle referenced by the constraint. - Second body handle referenced by the constraint. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a nonconvex one body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Body handle referenced by the constraint. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a nonconvex two body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - First body handle referenced by the constraint. - Second body handle referenced by the constraint. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Callbacks for direct references to the solver's contact constraint data. Includes only prestep and impulse data. - - - - - Provides a reference to a convex one body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a convex two body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a nonconvex one body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Provides a reference to a nonconvex two body contact constraint. Constraint data is in the first lane of the direct reference (slot 0 of vectors). - - Type of the prestep data returned. - Type of the accumulated impulses data returned. - Prestep data associated with the constraint. - Accumulated impulses associated with the constraint. - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Handles the tangent friction implementation. - - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Handles the tangent friction implementation for one body contact constraints. - - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Handles the tangent friction implementation. - - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Handles the tangent friction implementation. - - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Constrains points on two bodies to be separated by a distance within a range. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Minimum distance permitted between the point on A and the point on B. - - - - - Maximum distance permitted between the point on A and the point on B. - - - - - Spring frequency and damping parameters. - - - - - Creates a distance limit description. - - Local offset from the center of body A to its attachment point. - Local offset from the center of body B to its attachment point. - Minimum distance permitted between the point on A and the point on B. - Maximum distance permitted between the point on A and the point on B. - Spring frequency and damping parameters. - - - - Handles the solve iterations of a bunch of distance servos. - - - - - Constrains points on two bodies to be separated by a goal distance. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Distance that the constraint will try to reach between the attachment points. - - - - - Servo control parameters. - - - - - Spring frequency and damping parameters. - - - - - Creates a distance servo description. - - Local offset from the center of body A to its attachment point. - Local offset from the center of body B to its attachment point. - Distance that the constraint will try to reach between the attachment points. - Spring frequency and damping parameters. - Servo control parameters. - - - - Handles the solve iterations of a bunch of distance servos. - - - - - A constraint's body references. Stored separately from the iteration data since it is accessed by both the prestep and solve. - - - - - Prestep, warm start and solve iteration functions for a four body constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Shared implementation across all four body constraints. - - - - - Constrains two bodies with a hinge. Equivalent to a BallSocket constraint and an AngularHinge constraint solved together. - - - - - Local offset from the center of body A to its attachment point. - - - - - Hinge axis in the local space of A. - - - - - Local offset from the center of body B to its attachment point. - - - - - Hinge axis in the local space of B. - - - - - Spring frequency and damping parameters. - - - - - Marks a type as a description of a constraint associated with a particular batch. - - - Note that one batch may have multiple description types associated with it, each one potentially offering a different subset of properties or translation logic. - - Type of the description object. - - - - Changes the batch-held memory at a given location to match the given description. - - Batch to modify. - Index of the target constraint's bundle. - Index of the target constraint within its bundle. - - - - Creates a description from the batch-held memory at a given location. - - Batch to read. - Index of the source constraint's bundle. - Index of the source constraint within its bundle. - Description of the constraint. - - - - Gets the type id of the constraint that this is a description of. - - - - - Gets the type of the type batch which contains described constraints. - - - - - Marks a type as a one body constraint description. - - Type of the description. - This and the other body-count aware interfaces exist to give the compiler a way to report errors when using Solver.Add with different body counts. - - - - Marks a type as a two body constraint description. - - Type of the description. - This and the other body-count aware interfaces exist to give the compiler a way to report errors when using Solver.Add with different body counts. - - - - Marks a type as a three body constraint description. - - Type of the description. - This and the other body-count aware interfaces exist to give the compiler a way to report errors when using Solver.Add with different body counts. - - - - Marks a type as a four body constraint description. - - Type of the description. - This and the other body-count aware interfaces exist to give the compiler a way to report errors when using Solver.Add with different body counts. - - - - Transforms an impulse from constraint space to world space, uses it to modify the cached world space velocities of the bodies. - - - - - Constrains points on two bodies to a range of offsets from each other along a direction anchored to body A. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Direction of the motorized axis in the local space of body A. - - - - - Minimum offset along the world axis between A and B's anchor points. - - - - - Maximum offset along the world axis between A and B's anchor points. - - - - - Spring frequency and damping parameters. - - - - - Constrains points on two bodies to move relative to each other along a direction. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Direction of the motorized axis in the local space of body A. - - - - - Target relative velocity along the world axis between A and B's anchor points. - - - - - Motor control parameters. - - - - - Constrains points on two bodies to be on a plane defined in the local space of one of the bodies. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Direction of the plane normal in the local space of body A. - - - - - Target offset from A's plane anchor to B's anchor along the plane normal. - - - - - Servo control parameters. - - - - - Spring frequency and damping parameters. - - - - - Defines some of the shared behavior across motor constraints. - - - - - Maximum amount of force the motor can apply in one unit of time. - - - - - Mass-scaled damping constant. If you want to simulate a viscous damping coefficient of D with an object of mass M, set this damping value to D / M. - - - - - Gets or sets how soft the constraint is. Values range from 0 to infinity. Softness is inverse damping; 0 is perfectly rigid, 1 is very soft, float.MaxValue is effectively nonexistent. - - - - - Checks if a settings instance has valid nonnegative values. - - Instance to examine. - True if the settings are valid, false otherwise. - - - - Defines settings for a motor constraint. - - Maximum amount of force the motor can apply in one unit of time. - Gets or sets how soft the constraint is. Values range from 0 to infinity. Softness is inverse damping; 0 is perfectly rigid, 1 is very soft, float.MaxValue is effectively nonexistent. - - - - Constrains the angular velocity of one body to the target. - - - - - Target angular velocity. - - - - - Motor control parameters. - - - - - Constrains a single body to a target orientation. - - - - - Target orientation of the constraint. - - - - - Spring frequency and damping parameters. - - - - - Servo control parameters. - - - - - Constrains a point on a body to have a target linear velocity. - - - - - Offset to the attachment point in the local space of the body. - - - - - Target velocity of the attachment point. - - - - - Motor control parameters. - - - - - Constrains a point on a body to a target location. - - - - - Offset to the attachment point in the local space of the body. - - - - - Target position. - - - - - Spring frequency and damping parameters. - - - - - Servo control parameters. - - - - - Prestep, warm start and solve iteration functions for a constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Prestep, warm start, solve iteration, and incremental contact update functions for a one body contact constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Shared implementation across all one body constraints. - - - - - Constrains a point on body B to be on a line attached to body A. - - - - - Local offset from the center of body A to its attachment point. - - - - - Local offset from the center of body B to its attachment point. - - - - - Direction of the line in the local space of body A. - - - - - Servo control parameters. - - - - - Spring frequency and damping parameters. - - - - - Gets settings representing a servo with unlimited force, speed, and no base speed. - - - - - Checks servo settings to ensure valid values. - - Settings to check. - True if the settings contain valid values, false otherwise. - - - - Computes springiness values for a set of constraints. - - Spring settings associated with the constraints. - Duration of the time step. - The multiplier applied to error to get bias velocity. - Scaling factor to apply to the effective mass to get the softened effective mass. - Scaling factor to apply to the accumulated impulse during the solve to soften the target velocity. - - - - Target number of undamped oscillations per unit of time, scaled by 2 * PI. - - - - - Twice the ratio of the spring's actual damping to its critical damping. - - - - - Gets or sets the target number of undamped oscillations per unit of time. - - - - - Gets or sets the ratio of the spring's actual damping to its critical damping. 0 is undamped, 1 is critically damped, and higher values are overdamped. - - - - - Checks if a spring settings instance contains valid values. - - Settings to check. - True if the spring settings are valid, false otherwise. - - - - Constructs a new spring settings instance. - - Target number of undamped oscillations per unit of time. - Ratio of the spring's actual damping to its critical damping. 0 is undamped, 1 is critically damped, and higher values are overdamped. - - - - Restricts axes attached to two bodies to fall within a maximum swing angle. - - - - - Axis attached to body A in its local space. - - - - - Axis attached to body B in its local space. - - - - - Minimum dot product between the world space A and B axes that the constraint attempts to maintain. - - - - - Spring frequency and damping parameters. - - - - - Gets or sets the maximum swing angle that the constraint allows between world axis A and B. Based on the MinimumDot field. - - - - - Constrains two bodies with a swivel hinge that allows rotation around two axes, like a laptop monitor hinge that allows flipping the screen. Equivalent to a BallSocket constraint and an AngularSwivelHinge constraint solved together. - - - - - Local offset from the center of body A to its attachment point. - - - - - Swivel axis in the local space of body A. - - - - - Local offset from the center of body B to its attachment point. - - - - - Hinge axis in the local space of body B. - - - - - Spring frequency and damping parameters. - - - - - A constraint's body references. Stored separately from the iteration data since it is accessed by both the prestep and solve. - - - - - Prestep, warm start and solve iteration functions for a three body constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Shared implementation across all four body constraints. - - - - - Constrains two bodies' rotations around attached twist axes to a range of permitted twist angles. - - - - - Local space basis attached to body A against which to measure body B's transformed axis. Expressed as a 3x3 rotation matrix, the X axis corresponds with 0 degrees, - the Y axis corresponds to 90 degrees, and the Z axis is the twist axis. - - - - - Local space basis attached to body B that will be measured against body A's basis. - Expressed as a 3x3 rotation matrix, the transformed X axis will be measured against A's X and Y axes. The Z axis is the twist axis. - - - - - Minimum angle between B's axis to measure and A's measurement axis. - - - - - Maximum angle between B's axis to measure and A's measurement axis. - - - - - Spring frequency and damping parameters. - - - - - Constrains the twist velocity between two bodies to a target. - - - - - Local twist axis attached to body A. - - - - - Local twist axis attached to body B. - - - - - Goal relative twist velocity around the body axes. - - - - - Motor control parameters. - - - - - Constrains two bodies to maintain a target twist angle around body-attached axes. - - - - - Local space basis attached to body A against which to measure body B's transformed axis. Expressed as a 3x3 rotation matrix, the X axis corresponds with 0 degrees, - the Y axis corresponds to 90 degrees, and the -Z axis is the twist axis. When viewed along the twist axis, positive change in angle causes counterclockwise rotation in right handed coordinates. - - - - - Local space basis attached to body B that will be measured against body A's basis. - Expressed as a 3x3 rotation matrix, the transformed X axis will be measured against A's X and Y axes. The Z axis is the twist axis. - - - - - Target angle between B's axis to measure and A's measurement axis. - - - - - Spring frequency and damping parameters. - - - - - Servo control parameters. - - - - - A constraint's body references. Stored separately from the iteration data since it is accessed by both the prestep and solve. - Two address streams isn't much of a problem for prefetching. - - - - - Prestep, warm start and solve iteration functions for a two body constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Prestep, warm start, solve iteration, and incremental contact update functions for a two body contact constraint type. - - Type of the prestep data used by the constraint. - Type of the accumulated impulses used by the constraint. - Type of the projection to input. - - - - Shared implementation across all two body constraints. - - - - - Stores the raw AOSOA formatted data associated with constraints in a type batch. - - - - - Superclass of constraint type batch processors. Responsible for interpreting raw type batches for the purposes of bookkeeping and solving. - - - This class holds no actual state of its own. A solver creates a unique type processor for each registered constraint type, and all instances are held in untyped memory. - Splitting the functionality from the data allows for far fewer GC-tracked instances and allows the raw data layout to be shared more easily. - For example, sleeping simulation islands store type batches, but they are created and used differently- and for convenience, they are stored on a per-island basis. - Using the same system but with reference type TypeBatches, tens of thousands of inactive islands would imply tens of thousands of GC-tracked objects. - That's not acceptable, so here we are. - Conceptually, you can think of the solver's array of TypeProcessors like C function pointers. - - - - - Gets the number of bodies associated with each constraint in this type processor. - - - - - Gets the number of degrees of freedom that each constraint in this type processor constrains. Equal to the number of entries in the accumulated impulses. - - - - - Allocates a slot in the batch. - - Type batch to allocate in. - Handle of the constraint to allocate. Establishes a link from the allocated constraint to its handle. - Pointer to a list of body indices (not handles!) with count equal to the type batch's expected number of involved bodies. - Allocation provider to use if the type batch has to be resized. - Index of the slot in the batch. - - - - Moves a constraint from one ConstraintBatch's TypeBatch to another ConstraintBatch's TypeBatch of the same type. - - Index of the batch that owns the type batch that is the source of the constraint transfer. - Index of the constraint to move in the current type batch. - Solver that owns the batches. - Bodies set that owns all the constraint's bodies. - Index of the ConstraintBatch in the solver to copy the constraint into. - - - - Defines a function that creates a sort key from body references in a type batch. Used by constraint layout optimization. - - - - - Overwrites all the data in the target constraint slot with source data. - - - - - Removes a constraint from the batch. - - Index of the constraint to remove. - The handle to constraint mapping used by the solver that could be modified by a swap on removal. - - - - Moves a constraint from one ConstraintBatch's TypeBatch to another ConstraintBatch's TypeBatch of the same type. - - Index of the batch that owns the type batch that is the source of the constraint transfer. - Index of the constraint to move in the current type batch. - Solver that owns the batches. - Bodies set that owns all the constraint's bodies. - Index of the ConstraintBatch in the solver to copy the constraint into. - - - - Constrains the volume of a tetrahedron connecting the centers of four bodies to match a goal volume. - Scaled volume computed from (ab x ac) * ad; the volume may be negative depending on the winding of the tetrahedron. - - - - - 6 times the target volume of the tetrahedra. Computed from (ab x ac) * ad; this may be negative depending on the winding of the tetrahedron. - - - - - Spring frequency and damping parameters. - - - - - Creates a new volume constraint, initializing the target volume using a set of initial positions. - - Initial position of the first body. - Initial position of the second body. - Initial position of the third body. - Initial position of the fourth body. - Spring settings to apply to the volume constraint. - - - - Handles the solve iterations of a bunch of volume constraints. - - - - - Constrains two bodies to maintain a relative position and orientation. All six degrees of freedom are solved simultaneously. - - - - - Offset from body A to body B in the local space of A. - - - - - Target orientation of body B in body A's local space. - - - - - Springiness of the position and orientation constraints. - - - - - Handles the solve iterations of a bunch of ball socket constraints. - - - - - Helper class to register the default types within a simulation instance. - - - - - Registers the set of constraints that are packaged in the engine. - - - - - Creates a task registry containing the default collision pair types. - - - - - Creates a task registry containing the default sweep task types. - - - - - Contains constraints that could not belong to any lower constraint batch due to their involved bodies. All of the contained constraints will be solved using a fallback solver that - trades rigidity for parallelism. - - - - - Gets the number of bodies in the fallback batch. - - - - - Unique identifier of a body belonging to a simulation's Bodies collection. - - - - - Index in the handle-to-memory mapping table used to look up the current memory location of the body. - This value will not (and must not) change during the body's lifespan, but the memory that the table points to could change. - - - - - Unique identifier of a static belonging to a simulation's Statics collection. - - - - - Index in the handle-to-memory mapping table used to look up the current memory location of the body. - This value will not (and must not) change during the body's lifespan, but the memory that the table points to could change. - - - - - Unique identifier of a constraint belonging to a simulation's Solver. - - - - - Index in the handle-to-memory mapping table used to look up the current memory location of the constraint. - This value will not (and must not) change during the constraint's lifespan, but the memory that the table points to could change. - - - - - Collects body handles associated with an active constraint as integers. - - - - - Shared miscellaneous helper functions. - - - - - Provides functionality for efficiently waking up sleeping bodies. - - - - - Wakes up a body if it is sleeping. All bodies that can be found by traversing the constraint graph from the body will also be awakened. - If the body is already awake, this does nothing. - - Handle of the body to awaken. - - - - Wakes up any sleeping bodies associated with a constraint. All bodies that can be found by traversing the constraint graph from the constraint referenced bodies will also be awakened. - If all bodies associated with the constraint are already awake, this does nothing. - - Handle of the constraint to awaken. - - - - Wakes up all bodies and constraints within a set. Doesn't do anything if the set is awake (index zero). - - Index of the set to awaken. - - - - Awakens a list of set indices. - - List of set indices to wake up. - Thread dispatcher to use when waking the bodies. Pass null to run on a single thread. - - - - Represents the constraint batch structure and all references in an island. Holds everything necessary to create and gather a full island. - - - - - Gets or sets the multiplier applied to the active body count used to calculate the number of sleep traversals in a given timestep. - - - - - Gets or sets the fraction of the active set to target as the number of bodies slept in a given frame. - This is only a goal; the actual number of slept bodies may be more or less. - - - - - Gets or sets the fraction of the active set to target as the number of bodies traversed for sleeping in a given frame. - This is only a goal; the actual number of traversed bodies may be more or less. - - - - - Traverses the active constraint graph collecting bodies that match a predicate. If any body visited during the traversal fails to match the predicate, the traversal terminates. - - Type of the predicate to test each body index with. - Pool to allocate temporary collections from. - Index of the active body to start the traversal at. - Predicate to test each traversed body with. If any body results in the predicate returning false, the traversal stops and the function returns false. - List to fill with body indices traversed during island collection. Bodies failing the predicate will not be included. - List to fill with constraint handles traversed during island collection. - True if the simulation graph was traversed without ever finding a body that made the predicate return false. False if any body failed the predicate. - The bodyIndices and constraintHandles lists will contain all traversed predicate-passing bodies and constraints. - - - - If true, this job relates to a subset of body indices. If false, this job relates to a subset of constraint handles. - - - - - Forcefully sleeps a list of bodies and all bodies that can be reached by traversing the constraint graph from those bodies. - - List of body indices to sleep. - Thread dispatcher to use for the sleep attempt, if any. If null, sleep is performed on the calling thread. - True if the sleep should produce deterministic results at higher cost, false otherwise. - - - - Forces a body and all bodies that can be found by traversing the constraint graph from that body to go to sleep. - - Index of the body to sleep in the active set. - - - - Ensures that the Bodies, Solver, and NarrowPhase can hold at least the given number of sets (BodySets for the Bodies collection, ConstraintSets for the Solver, PairSubcaches for the NarrowPhase.PairCache). - - Number of sets to guarantee space for. - - - - Ensures that the Bodies and Solver can hold the given number of sets. - If the existing allocation is smaller than the requested sets capacity, the allocation will be enlarged. - If the existing allocation is larger than both the existing potentially allocated set range and the requested sets capacity, the allocation will be shrunk. - Shrinks will never cause an existing set to be lost. - - Target number of sets to allocate space for. - - - - Delegate used by ITimesteppers for their stage callbacks. - - Time step duration. - Thread dispatcher used for this timestep. - - - - Delegate used by ITimesteppers for stage callbacks within substepping loops. - - Index of the substep executing this stage. - Time step duration. - Thread dispatcher used for this timestep. - - - - Defines a type capable of updating the simulation state for a given elapsed time. - - - - - Callbacks to execute immediately before collision detection executes. - - - - - Callbacks to execute after collision detection completes. - - - - - Performs one timestep of the given length. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Defines how a pose integrator should handle angular velocity integration. - - - - - Angular velocity is directly integrated and does not change as the body pose changes. Does not conserve angular momentum. - - - - - Approximately conserves angular momentum by updating the angular velocity according to the change in orientation. Does a decent job for gyroscopes, but angular velocities will tend to drift towards a minimal inertia axis. - - - - - Approximately conserves angular momentum by including an implicit gyroscopic torque. Best option for Dzhanibekov effect simulation, but applies a damping effect that can make gyroscopes less useful. - - - - - Defines a type that handles callbacks for body pose integration. - - - - - Gets how the pose integrator should handle angular velocity integration. - - - - - Performs any required initialization logic after the Simulation instance has been constructed. - - Simulation that owns these callbacks. - - - - Called prior to integrating the simulation's active bodies. When used with a substepping timestepper, this could be called multiple times per frame with different time step values. - - Current time step duration. - - - - Callback called for each active body within the simulation during body integration. - - Index of the body being visited. - Body's current pose. - Body's current local inertia. - Index of the worker thread processing this body. - Reference to the body's current velocity to integrate. - - - - Provides helper functions for integrating body poses. - - - - - Integrates the velocity of mobile bodies over time into changes in position and orientation. Also applies gravitational acceleration to dynamic bodies. - - - This variant of the integrator uses a single global gravity. Other integrators that provide per-entity gravity could exist later. - This integrator also assumes that the bodies positions are stored in terms of single precision floats. Later on, we will likely modify the Bodies - storage to allow different representations for larger simulations. That will require changes in this integrator, the relative position calculation of collision detection, - the bounding box calculation, and potentially even in the broadphase in extreme cases (64 bit per component positions). - - - - - Updates the simulation in the order of: sleeper -> integrate body poses, velocity and bounding boxes -> collision detection -> solver -> data structure optimization. - - - - - Fires after the sleeper completes and before bodies are integrated. - - - - - Fires after bodies have had their position, velocity, and bounding boxes updated, but before collision detection begins. - - - - - Fires after all collisions have been identified, but before constraints are solved. - - - - - Fires after the solver executes and before data structures are incrementally optimized. - - - - - Updates the simulation in the order of: sleeper -> integrate velocities and update body bounding boxes -> collision detection -> solver -> integrate body poses -> data structure optimization. - - - - - Fires after the sleeper completes and before bodies are integrated. - - - - - Fires after bodies have had their velocities and bounding boxes updated, but before collision detection begins. - - - - - Fires after all collisions have been identified, but before constraints are solved. - - - - - Fires after the solver executes and before body poses are integrated. - - - - - Fires after bodies have their poses integrated and before data structures are incrementally optimized. - - - - - Orchestrates the bookkeeping and execution of a full dynamic simulation. - - - - - Gets the simulation profiler. Note that the SimulationProfiler implementation only exists when the library is compiled with the PROFILE compilation symbol; if not defined, returned times are undefined. - - - - - Gets the main memory pool used to fill persistent structures and main thread ephemeral resources across the engine. - - - - - Gets the timestepper used to update the simulation state. - - - - - Gets or sets whether to use a deterministic time step when using multithreading. When set to true, additional time is spent sorting constraint additions and transfers. - Note that this can only affect determinism locally- different processor architectures may implement instructions differently. - - - - - Constructs a simulation supporting dynamic movement and constraints with the specified narrow phase callbacks. - - Buffer pool used to fill persistent structures and main thread ephemeral resources across the engine. - Callbacks to use in the narrow phase. - Callbacks to use in the pose integrator. - Timestepper that defines how the simulation state should be updated. - Number of iterations the solver should use. - Number of synchronized batches the solver should maintain before falling back to a lower quality jacobi hybrid solver. - Allocation sizes to initialize the simulation with. If left null, default values are chosen. - New simulation. - - - - Executes the sleep stage, moving candidate - - Thread dispatcher to use for the sleeper execution, if any. - - - - Updates the position, velocity, world inertia, deactivation candidacy and bounding boxes of active bodies. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Predicts the bounding boxes of active bodies by speculatively integrating velocity. Does not actually modify body velocities. Updates deactivation candidacy. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Updates the velocities, world space inertias, bounding boxes, and deactivation candidacy of active bodies. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Updates the velocities and world space inertias of active bodies. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Updates the poses of active bodies. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Updates the broad phase structure for the current body bounding boxes, finds potentially colliding pairs, and then executes the narrow phase for all such pairs. Generates contact constraints for the solver. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Uses the current body velocities to incrementally update all active contact constraint penetration depths. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Solves all active constraints in the simulation. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Incrementally improves body and constraint storage for better performance. - - Thread dispatcher to use for execution, if any. - - - - Performs one timestep of the given length. - - - Be wary of variable timesteps. They can harm stability. Whenever possible, keep the timestep the same across multiple frames unless you have a specific reason not to. - - Duration of the time step. - Thread dispatcher to use for execution, if any. - - - - Clears the simulation of every object, only returning memory to the pool that would be returned by sequential removes. - Other persistent allocations, like those in the Bodies set, will remain. - - - - - Increases the allocation size of any buffers too small to hold the allocation target. - - - - The final size of the allocated buffers are constrained by the allocator. It is not guaranteed to be exactly equal to the target, but it is guaranteed to be at least as large. - - - This is primarily a convenience function. Everything it does internally can be done externally. - For example, if only type batches need to be resized, the solver's own functions can be used directly. - - - Allocation sizes to guarantee sufficient size for. - - - - Increases the allocation size of any buffers too small to hold the allocation target, and decreases the allocation size of any buffers that are unnecessarily large. - - - - The final size of the allocated buffers are constrained by the allocator. It is not guaranteed to be exactly equal to the target, but it is guaranteed to be at least as large. - - - This is primarily a convenience function. Everything it does internally can be done externally. - For example, if only type batches need to be resized, the solver's own functions can be used directly. - - - Allocation sizes to guarantee sufficient size for. - - - - Clears the simulation of every object and returns all pooled memory to the buffer pool. Leaves the simulation in an unusable state. - - - - - Intersects a ray against the simulation. - - Type of the callbacks to execute on ray-object intersections. - Origin of the ray to cast. - Direction of the ray to cast. - Maximum length of the ray traversal in units of the direction's length. - callbacks to execute on ray-object intersections. - User specified id of the ray. - - - - Sweeps a shape against the simulation. - - Type of the shape to sweep. - Type of the callbacks executed when a sweep impacts an object in the scene. - Shape to sweep. - Starting pose of the sweep. - Velocity of the swept shape. - Maximum length of the sweep in units of time used to integrate the velocity. - Pool to allocate any temporary resources in during execution. - Callbacks executed when a sweep impacts an object in the scene. - Simulation objects are treated as stationary during the sweep. - Minimum amount of progress in terms of t parameter that any iterative sweep tests should make for each sample. - Threshold in terms of t parameter under which iterative sweep tests are permitted to exit in collision. - Maximum number of iterations to use in iterative sweep tests. - - - - Sweeps a shape against the simulation. - - Type of the shape to sweep. - Type of the callbacks executed when a sweep impacts an object in the scene. - Shape to sweep. - Starting pose of the sweep. - Velocity of the swept shape. - Maximum length of the sweep in units of time used to integrate the velocity. - Pool to allocate any temporary resources in during execution. - Callbacks executed when a sweep impacts an object in the scene. - Simulation objects are treated as stationary during the sweep. - - - - The common set of allocation sizes for a simulation. - - - - - The number of bodies to allocate space for. - - - - - The number of statics to allocate space for. - - - - - The number of inactive islands to allocate space for. - - - - - Minimum number of shapes to allocate space for in each shape type batch. - - - - - The number of constraints to allocate bookkeeping space for. This does not affect actual type batch allocation sizes, only the solver-level constraint handle storage. - - - - - The minimum number of constraints to allocate space for in each individual type batch. - New type batches will be given enough memory for this number of constraints, and any compaction will not reduce the allocations below it. - The number of constraints can vary greatly across types- there are usually far more contacts than ragdoll constraints. - Per type estimates can be assigned within the Solver.TypeBatchAllocation if necessary. This value acts as a lower bound for all types. - - - - - The minimum number of constraints to allocate space for in each body's constraint list. - New bodies will be given enough memory for this number of constraints, and any compaction will not reduce the allocations below it. - - - - - Stores profiling information for the previous simulation execution. - - - - - Gets the time it took to complete the last execution of the given stage. If no stage matching the given object ran, returns -1. - - Stage to look up the time for. - Time it took to complete the last execution of the given stage. - - - - Checks whether the child of a collidable should be tested against a ray. Only called by shape types that can have more than one child. - - Index of the candidate in the parent collidable. - True if the child should be tested by the ray, false otherwise. - - - - Called when a ray impact has been found. - - Information about the ray associated with this hit. - Maximum distance along the ray that the traversal is allowed to go in units of ray direction length. Can be set to limit future tests. - Distance along the ray to the impact in units of ray direction length. In other words, hitLocation = ray.Origin + ray.Direction * t. - Surface normal at the hit location. - Index of the hit child. For convex shapes or other types that don't have multiple children, this is always zero. - - - - Defines a type capable of filtering ray test candidates and handling ray hit results. - - - - - Checks whether a collidable identified by the acceleration structure should be tested against a ray. - - Candidate collidable for ray testing. - True if the collidable should be tested by the ray, false otherwise. - - - - Checks whether the child of a collidable should be tested against a ray. Only called by shape types that can have more than one child. - - Parent of the candidate. - Index of the candidate in the parent collidable. - True if the child should be tested by the ray, false otherwise. - - - - Called when a ray impact has been found. - - Information about the ray associated with this hit. - Maximum distance along the ray that the traversal is allowed to go in units of ray direction length. Can be set to limit future tests. - Distance along the ray to the impact in units of ray direction length. In other words, hitLocation = ray.Origin + ray.Direction * t. - Surface normal at the hit location. - Collidable hit by the ray. - Index of the hit child. For convex shapes or other types that don't have multiple children, this is always zero. - - - - Defines a type capable of filtering sweep candidates and handling sweep results. - - - - - Checks whether to run a detailed sweep test against a target collidable. - - Collidable to check. - True if the sweep test should be attempted, false otherwise. - - - - Checks whether to run a detailed sweep test against a target collidable's child. - - Collidable to check. - Index of the child in the collidable to check. - True if the sweep test should be attempted, false otherwise. - - - - Called when a sweep test detects a hit with nonzero T value. - - Reference to maximumT passed to the traversal. - Time of impact for the sweep test. - Location of the first hit detected by the sweep. - Surface normal at the hit location. - Collidable hit by the traversal. - - - - Called when a sweep test detects a hit at T = 0, meaning that no location or normal can be computed. - - Reference to maximumT passed to the traversal. - Collidable hit by the traversal. - - - - Buffer containing all constraint sets. The first slot is dedicated to the active set; subsequent slots may be occupied by the constraints associated with inactive islands. - - - - - Gets a reference to the active set of constraints, stored in the first set slot. - - - - - Pool to retrieve constraint handles from when creating new constraints. - - - - - Gets the maximum number of solver batches to allow before resorting to a fallback solver. - If a single body is constrained by more than FallbackBatchThreshold constraints, all constraints beyond FallbackBatchThreshold are placed into a fallback batch. - The fallback batch uses a different solver that can handle multiple constraints affecting a single body in a single batch, allowing greater parallelism at the cost of convergence speed. - - - - - Gets or sets the number of solver iterations to compute per call to Update. - - - - - Gets or sets the minimum amount of space, in constraints, initially allocated in any new type batch. - - - - - Sets the minimum capacity initially allocated to a new type batch of the given type. - - Id of the constraint type to check the initial capacity of. - Minimum capacity to use for the type. - - - - Gets the minimum initial capacity for a given type. - The returned value is the larger of MinimumCapacityPerTypeBatch and the value set by SetMinimumCapacityForType for the given type id. - - Type id to retrieve the minm - Larger of MinimumCapacityPerTypeBatch and the given type's minimum set by SetMinimumCapacityForType. - - - - Resets all per-type initial capacities to zero. Leaves the minimum capacity across all constraints unchanged. - - - - - Gets the total number of constraints across all sets, batches, and types. Requires enumerating - all type batches; this can be expensive. - - - - - Gets whether the given constraint handle refers to a constraint in the solver. - - Constraint handle to check for existence in the solver. - True if the constraint handle exists in the solver, false otherwise. - - - - Gets a direct reference to the constraint associated with a handle. - The reference is temporary; any constraint removals that affect the referenced type batch may invalidate the index. - - Type of the type batch being referred to. - Handle index of the constraint. - Temporary direct reference to the type batch and index in the type batch associated with the constraint handle. - May be invalidated by constraint removals. - - - - Attempts to locate a spot for a new constraint. Does not perform allocation for the constraint. If no batch exists, returns the index just beyond the end of the existing list of batches. - - Index of the batch that the constraint would fit in. - This is used by the narrowphase's multithreaded constraint adders to locate a spot for a new constraint without requiring a lock. Only after a candidate is located - do those systems attempt an actual claim, limiting the duration of locks and increasing potential parallelism. - - - - Applies a description to a constraint slot without waking up the associated island. - - Type of the description to apply. - Reference of the constraint being updated. - Description to apply to the slot. - - - - Applies a description to a constraint slot without waking up the associated island. - - Type of the description to apply. - Handle of the constraint being updated. - Description to apply to the slot. - - - - Applies a description to a constraint slot without waking up the associated island. - - Type of the description to apply. - Handle of the constraint being updated. - Description to apply to the slot. - - - - Applies a description to a constraint slot, waking up the connected bodies if necessary. - - Type of the description to apply. - Handle of the constraint being updated. - Description to apply to the slot. - - - - Applies a description to a constraint slot, waking up the connected bodies if necessary. - - Type of the description to apply. - Handle of the constraint being updated. - Description to apply to the slot. - - - - Allocates a constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - Body handles used by the constraint. - Allocated constraint handle. - - - - Allocates a constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - Body handles referenced by the constraint. - Allocated constraint handle. - - - - Allocates a one-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - Body connected to the constraint. - Allocated constraint handle. - - - - Allocates a one-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Allocated constraint handle. - - - - Allocates a two-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Allocated constraint handle. - - - - Allocates a two-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Allocated constraint handle. - - - - Allocates a three-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Third body of the constraint. - Allocated constraint handle. - - - - Allocates a three-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Third body of the constraint. - Allocated constraint handle. - - - - Allocates a four-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Third body of the constraint. - Fourth body of the constraint. - Allocated constraint handle. - - - - Allocates a four-body constraint slot and sets up a constraint with the specified description. - - Type of the constraint description to add. - First body of the constraint. - Second body of the constraint. - Third body of the constraint. - Fourth body of the constraint. - Allocated constraint handle. - - - - Removes a constraint from a batch, performing any necessary batch cleanup, but does not return the constraint's handle to the pool. - - Handle of the constraint being removed. - Index of the batch to remove from. - Type id of the constraint to remove. - Index of the constraint to remove within its type batch. - - - - Removes the constraint associated with the given handle. Note that this may invalidate any outstanding direct constraint references - by reordering the constraints within the TypeBatch subject to removal. - - Handle of the constraint to remove from the solver. - - - - Changes the body references of all constraints associated with a body in response to its movement into a new slot. - Constraints associated with the body now at its old slot, if any, are left untouched. - - Memory index that the moved body used to inhabit. - Memory index that the moved body now inhabits. - - - - Changes the body references of all constraints associated with two bodies in response to them swapping slots in memory. - - First swapped body index. - Second swapped body index. - - - - Scales the accumulated impulses associated with a constraint set by a given scale. - - Set to scale. - Scale to apply to accumulated impulses. - - - - Scales all accumulated impulses in the active set. - - Scale to apply to accumulated impulses. - - - - Scales all accumulated impulses in all constraint sets. - - Scale to apply to accumulated impulses. - - - - Enumerates the accumulated impulses associated with a constraint. - - Constraint to enumerate. - Enumerator to use. - - - - Gathers the squared magnitude of the accumulated impulse for a given constraint. - - Constraint to look up the accumulated impulses of. - Squared magnitude of the accumulated impulses associated with the given constraint. - - - - Gathers the magnitude of the accumulated impulse for a given constraint. - - Constraint to look up the accumulated impulses of. - Magnitude of the accumulated impulses associated with the given constraint. - - - - Enumerates the set of bodies associated with a constraint in order of their references within the constraint. - - Constraint to enumerate. - Enumerator to use. - - - - Removes all objects from the solver. This is meant as a fast path to empty a simulation's constraints. It makes no attempt to retain synchronization with other systems - which may depend on the existence of constraints, like the per-body constraint lists. - - - - - Adjusts the size of the the solvers non-typebatch data structures. An allocation will grow if the given capacity exceeds the currently allocated capacity. - - Size of the span of body handles to allocate space for. Applies to batch referenced handle sets. - Number of constraint handles to allocate space for. Applies to the handle->constraint mapping table. - - - - Adjusts the size of the the solvers non-typebatch data structures. An allocation is allowed to shrink if it fits both all existing entries and the given capacity. - An allocation will grow if the given capacity exceeds the currently allocated capacity. - - Size of the span of body handles to allocate space for. Applies to batch referenced handle sets. - Number of constraint handles to allocate space for. Applies to the handle->constraint mapping table. - - - - Ensures all existing active type batches meet or exceed the current solver-defined minimum capacities. Type batches with capacities smaller than the minimums will be enlarged. - - - - - Applies the current solver-defined minimum capacities to existing type batches. Type batches with capacities larger than the minimums and counts less than the minimums may be shrunk. - Type batches with capacities smaller than the minimums will be enlarged. - - - - - Returns all pool-retrieved resources to the pool. - - - The solver cannot be 'rehydrated' for reuse after a disposal. If you want to return bulk data to the pool while leaving the solver in a usable state, consider using Clear instead. - - - - - Index of the first bundle in the block. - - - - - Exlusive end index of the bundle. Index of the last bundle in the block is End - 1. - - - - - Inclusive start of blocks known to be claimed by any worker. - - - - - Exclusive end of blocks known to be claimed by any worker. - - - - - Behaves like a framework SpinWait, but never voluntarily relinquishes the timeslice to off-core threads. - - There are three big reasons for using this over the regular framework SpinWait: - 1) The framework spinwait relies on spins for quite a while before resorting to any form of timeslice surrender. - Empirically, this is not ideal for the solver- if the sync condition isn't met within several nanoseconds, it will tend to be some microseconds away. - This spinwait is much more aggressive about moving to yields. - 2) After a number of yields, the framework SpinWait will resort to calling Sleep. - This widens the potential set of schedulable threads to those not native to the current core. If we permit that transition, it is likely to evict cached solver data. - (For very large simulations, the use of Sleep(0) isn't that concerning- every iteration can be large enough to evict all of cache- - but there still isn't much benefit to using it over yields in context.) - 3) After a particularly long wait, the framework SpinWait resorts to Sleep(1). This is catastrophic for the solver- worse than merely interfering with cached data, - it also simply prevents the thread from being rescheduled for an extremely long period of time (potentially most of a frame!) under the default clock resolution. - Note that this isn't an indication that the framework SpinWait should be changed, but rather that the solver's requirements are extremely specific and don't match - a general purpose solution very well. - - - - Describes the properties of a static object. When added to a simulation, static objects can collide but have no velocity and will not move in response to forces. - - - - - Position and orientation of the static. - - - - - Collidable properties of the static. - - - - - Builds a new static description. - - Position of the static. - Orientation of the static. - Collidable description for the static. - - - - Builds a new static description. - - Position of the static. - Collidable description for the static. - - - - Builds a new static description with discrete continuity. - - Position of the static. - Orientation of the static. - Index of the static's shape in the simulation shapes set. - Distance beyond the surface of the static to allow speculative contacts to be generated. - - - - Builds a new static description with discrete continuity. - - Position of the static. - Index of the static's shape in the simulation shapes set. - Distance beyond the surface of the body to allow speculative contacts to be generated. - - - - Convenience structure for directly referring to a static's properties. - - Note that this type makes no attempt to protect against unsafe modification of static properties. - - - - Handle of the static that this reference refers to. - - - - - The collection containing the static. - - - - - Constructs a new static reference. - - Handle of the static to refer to. - Collection containing the static. - - - - Gets whether the static reference exists within the static set. True if the handle maps to a valid memory location that agrees that the handle points to it, false otherwise. - - - - - Gets a the static's index in the statics collection. - - - - - Gets a reference to the static's pose. - - - - - Gets a reference to the static's collidable. - - - - - Gets a description of the static. - - Description of the static. - - - - Sets a static's properties according to a description. - - Description of the static. - - - - Changes the shape of a static. - - Index of the new shape to use for the static. - - - - Gets a copy of the static's bounding box. - - - - - Gets direct pointers to the static's bounding box minimum and maximum in the broad phase. Outputs null if the static has no shape. - - Pointer to the bounding box minimum in the broad phase. - Pointer to the bounding box maximum in the broad phase. - - - - Updates the static's bounds in the broad phase for its current state. Does not include velocity expansion. Does nothing if the static has no shape. - - Can be useful if you made modifications to the static's state that you want reflected in the broad phase before the next timestep. - For example, if you want to perform ray casts against the broad phase after moving objects around directly, their bounds must be updated or else the broad phase bounds will be out of date and the ray will likely miss. - - - - Collection of allocated static collidables. - - - - - Remaps a static handle integer value to the actual array index of the static. - The backing array index may change in response to cache optimization. - - - - - Remaps a static index to its handle. - - - - - The set of collidables owned by each static. Speculative margins, continuity settings, and shape indices can be changed directly. - Shape indices cannot transition between pointing at a shape and pointing at nothing or vice versa without notifying the broad phase of the collidable addition or removal. - - - - - Checks whether a static handle is currently registered with the statics set. - - Handle to check for. - True if the handle exists in the collection, false otherwise. - - - - Removes a static from the set by index. Any inactive bodies with bounding boxes overlapping the removed static's bounding box will be forced active. - - Index of the static to remove. - - - - Removes a static from the set. Any inactive bodies with bounding boxes overlapping the removed static's bounding box will be forced active. - - Handle of the static to remove. - - - - Updates the bounds held within the broad phase for the static's current state. - - - - - Adds a new static body to the simulation. All inactive bodies whose bounding boxes overlap the new static are forced active. - - Description of the static to add. - Handle of the new static. - - - - Changes the shape of a static and updates its bounds in the broad phase. - - Handle of the static to change the shape of. - Index of the new shape to use for the static. - - - - Applies a new description to an existing static object. All inactive bodies with bounding boxes overlapping the old or new static collidable are forced active. - Updates the bounds of the static in the broad phase. - - Handle of the static to apply the description to. - Description to apply to the static. - - - - Gets the current description of the static referred to by a given handle. - - Handle of the static to look up the description of. - Gathered description of the handle-referenced static. - - - - Gets a reference to a static by its handle. - - Handle of the static to grab a reference of. - Reference to the desired static. - - - - Clears all bodies from the set without returning any memory to the pool. - - - - - Resizes the allocated spans for static data. Note that this is conservative; it will never orphan existing objects. - - Target static data capacity. - - - - Increases the size of buffers if needed to hold the target capacity. - - Target data capacity. - - - - Returns all static resources to the pool used to create them. - - The object can be reused if it is reinitialized by using EnsureCapacity or Resize. - - - - Updates the simulation in the order of: sleeper -> predict body bounding boxes -> collision detection -> LOOP { contact data update (if on iteration > 0) -> integrate body velocities -> solver -> integrate body poses } -> data structure optimization. - Each inner loop execution simulates a sub-timestep of length dt/substepCount. - Useful for simulations with difficult to solve constraint systems that need shorter timestep durations but which don't require high frequency collision detection. - - - - - Gets or sets the number of substeps to execute during each timestep. - - - - - Fires after the sleeper completes and before bodies are integrated. - - - - - Fires after bodies have their bounding boxes updated for the frame's predicted motion and before collision detection. - - - - - Fires after all collisions have been identified, but before the substep loop begins. - - - - - Fires at the beginning of a substep. - - - - - Fires after contact constraints are incrementally updated at the beginning of substeps after the first and before velocities are integrated. - - - - - Fires after bodies have their velocities integrated and before the solver executes. - - - - - Fires after the solver executes and before body poses are integrated. - - - - - Fires after bodies have their poses integrated and before the substep ends. - - - - - Fires at the end of a substep. - - - - - Fires after all substeps are finished executing and before data structures are incrementally optimized. - - - - - Pointer to a leaf's tree location. - - The identity of a leaf is implicit in its position within the leaf array. - - - - Gets the index of the node that the leaf is directly held by. - - - - - Gets which child within the owning node the leaf is in. - - - - - 2-wide tree node. - - - - - Metadata associated with a 2-child tree node. - - - - - Cached change in cost of the tree starting at this node since the previous frame. - The local cost change is unioned with the refine flags. They're never used simultaneously. - This will be overwritten right after use, so don't expect anything meaningful here outside of refinement scheduling's scope. - - - - - Ray representation designed for quicker intersection against axis aligned bounding boxes. - - - - - Gets the number of rays in the batch. - - - - - Gets pointers to the data for a ray. - - Index of the ray to grab. - Pointer to the ray's origin and direction. Note that changing the ray's origin and direction mid-traversal will not change the path of the traversal, - but it will be visible by any future leafs impacted by this ray. - Pointer to the maximum length of the ray in units of the ray's length. - Decreasing this value will prevent the traversal from visiting more distant nodes later in the traversal. - - - - Gets a reference to the data for a ray. - - Index of the ray to grab. - Returns a reference to the ray in the ray source. - - - - Reusable structure for testing large numbers of rays against trees. - - - - - Constructs a ray batcher and initializes its backing resources. - - Pool to pull resources from. - Maximum number of rays to execute in each traversal. - This should typically be chosen as the highest value which avoids spilling data out of L2 cache. - Tree depth to preallocate ray stack space for. If a traversal finds nodes deeper than this, a dynamic resize will be triggered. - - - - Ray representation designed for quicker intersection against axis aligned bounding boxes. - - - - - Tests any batched rays against the given tree. - - Tree to test the accumulated rays against. - - - - Adds a ray to the batcher. Returns true if the batcher has reached maximum ray capacity and needs to be reset in order to continue adding rays. - - Origin of the ray to test against the tree. - Direction of the ray to test against the tree. - Maximum distance that the ray will travel in units of the ray's length. - Identifier value for the ray. Leaf tests will have access to the id. - True if the batcher is full and requires a call to ResetRays before adding any more rays, false otherwise. - - - - Resets the accumulated ray count to zero. - - - - - Disposes all the resources backing the ray batcher. - - - - - Constructs an empty tree. - - Initial number of leaves to allocate room for. - - - - Loads a tree from a byte buffer created by the Serialize function. - - Data to load into the tree. - Pool to use to create the tree. - - - - Gets the number of bytes required to store the tree. - - Tree to measure. - Number of bytes required to store the tree. - - - - Writes a tree into a byte buffer. - - Tree to write into the buffer. - Buffer to hold the tree's data. - - - - Resizes the buffers backing the tree's nodes and leaves. Will not shrink the buffers below the size needed by the currently resident nodes and leaves. - - Pool from which to take and return resources. - The desired number of available leaf slots. - - - - Resets the tree to a fresh post-construction state, clearing out leaves and nodes but leaving the backing resources intact. - - - - - Disposes the tree's backing resources, returning them to the Pool currently associated with the tree. - - Pool to return resources to. - Disposed trees can be reused if EnsureCapacity or Resize is used to rehydrate them. - - - - Tests if two tree references point to the same data. - - First tree to compare. - Second tree to compare. - True if the two trees have the same nodes and node count, false otherwise. - - - - Merges a new leaf node with an existing leaf node, producing a new internal node referencing both leaves, and then returns the index of the leaf node. - - Bounding box of the leaf being added. - Index of the parent node that the existing leaf belongs to. - Index of the child wtihin the parent node that the existing leaf belongs to. - Bounding box holding both the new and existing leaves. - Index of the leaf - - - - Adds a leaf to the tree with the given bounding box and returns the index of the added leaf. - - Extents of the leaf bounds. - Resource pool to use if resizing is required. - Index of the leaf allocated in the tree's leaf array. - - - - Attempts to swap two nodes. Aborts without changing memory if the swap is contested by another thread. - - Uses Node.RefineFlag as a lock-keeping mechanism. All refine flags should be cleared to 0 before a multithreaded processing stage that performs swaps. - First node of the swap pair. - Second node of the swap pair. - True if the nodes were swapped, false if the swap was contested. - - - - Moves the children if the specified node into the correct relative position in memory. - Takes care to avoid contested moves in multithreaded contexts. May not successfully - complete all desired moves if contested. - - Node whose children should be optimized. - True if no other threads contested the optimization or if the node is already optimized, otherwise false. - Will return true even if not all nodes are optimized if the reason was a target index outside of the node list bounds. - - - - Begins a cache optimization at the given node and proceeds all the way to the bottom of the tree. - Requires that the targeted node is already at the global optimum position. - - Node to begin the optimization process at. - - - - Prepares the jobs associated with a self test. Must be called before a dispatch over PairTest. - - Callbacks used to handle individual overlaps detected by the self test. - Number of threads to prepare jobs for. - - - - Cleans up after a multithreaded self test. - - - - - Executes a single worker of the multithreaded self test. - - Index of the worker executing this set of tests. - - - - Caches input and output for the multithreaded execution of a tree's refit and refinement operations. - - - - - Refits the bounding box of every parent of the node recursively to the root. - - Node to propagate a node change for. - - - - Removes a leaf at an index. If the index is not at the end of the leaf list, the last leaf is swapped into the removed location. - - Index of the leaf to remove. - Former index of the leaf that was moved into the removed leaf's slot, if any. - If leafIndex pointed at the last slot in the list, then this returns -1 since no leaf was moved. - - - - Prepares the jobs associated with a self test. Must be called before a dispatch over PairTest. - - Tree to test against itself. - Callbacks used to handle individual overlaps detected by the self test. - Number of threads to prepare jobs for. - - - - Cleans up after a multithreaded self test. - - - - - Executes a single worker of the multithreaded self test. - - Index of the worker executing this set of tests. - - - diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/.signature.p7s b/JNFrame/Assets/Packages/BepuUtilities.2.3.4/.signature.p7s deleted file mode 100644 index de7062857af12d787cd1859732e60006aef49799..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9473 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 - - - BepuUtilities - 2.3.4 - Ross Nordby - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - bepuphysicslogo256.png - https://github.com/bepu/bepuphysics2 - Supporting utilities library for BEPUphysics v2. - © Bepu Entertainment LLC - - - - - - - - - - \ No newline at end of file diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png b/JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png deleted file mode 100644 index 5d395e1f79c681f031bbf7044f73e5ad13bee417..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 42285 zcmZ^}Q*b8E^F92;wr$(V#!fc2ZQHi_#J25ZV_O?%W82pI`Tl>`@6F7asp^aA>OQAV z^+YMkOCrGH!U6yQ1ZgQTWdH!=KM3fDhWu~6xau+gZv(dwmJc_btqR;+2+jTX<*Bc=1 z*5|d%Rz2`n6>#ZX!nzWp0Tdd7JrJIdUI@BDFoB<$E#EHKZZw}i*35^Ga5UqV1zHPS zni56^I*}q2L(#TS;#_?!eaP=+`^CP_buh2ho!f1;(xvLW*B>Fd@}c*k%6_>L?RlH7 z{)vgCbl5f9{_j=&$+2vNVV7Jx4OoW#U%M_joc{ma+f4$>Hva=Ekjz{E1FV5(od1Co z5ZU(s0r>w#oN<}~{ulB86S||At?_AS2Pf4bAO+B|>A!?;=tZQT2HPT>w*>HeyG6Nm zFwWb9u{HN!BN8+NY!`2I7>F;=Ty9y6q{imG+RpxD@)$a3|Q)hv)y+#kA=GW?`V`S)GPB7zB>g|`VqY%GS;2C$guhQ>LtvcdA;+znS5sl z%)Jb*s!|0JDj2Ob9-Nw7`j9~05NHU(5mo!k|K$D>KIp9!Z0cQA)vI5tM;P;a!ud+dK@!6%_0U^N#U=noR`F=5WljulW<7 zPr`bmS2#EDLJb`F8k^W<`_4P5=#vciyWy3SHdhm}5|*g1_j>YSN$*pUdv0VkA$f6z zm}bt`BJbYt84S6-jI3$3&>8=FoHy-9REN^D$o*{m^%B%S?`%}vNrwIZ3gGJ8HtlVL z-|W{gRV1^8w53-Z<%(a>Tf+6;#|r5*vK|+w@$}ur5j0d}b<3$+CDp>|SO(Aj{!2EZ zdL7k1WoAf5)Q`3G|J4UeXdIu?=F4vzVi1{nwi23YV7Oz(cW++g7qwMp#OW7@^6tAn zmgHPs|KL09d%X|Bb)O5&6_L(B!jCvs1gJ@RbJ-qtxY3XOB8NV6$S&@$Q*x^gIzRfv z@Od)3g1_?rSB@vKyQP$)nPN9FPLU=h&qQR)-^_mgq527n{`@_HVjuKZF0Q&WgLVz? zb7I}@Alwh|nM2td^xS@sJ5PfYpNlWkdssvl`{g?Eof&={Wzy4SC_NO2d;i3$z7aE1 z^8XF!Z1)A_`(A+hpJA}Q#t9j6n5fDBziye+UKCwlaySipl@x2>qT3HAb;NQODqd+f z7F790ItbaF<6;6S&jV$w#T_*H$c=m*hUq?d-n^5k&mXA&`A6~jsxLz64IzO9_qHtX zNha3Hlm|5ntoG)b``|PW~y9NGyX1q!|=ne*)%goUK--9iLKaGO1Q1*UY1qXGS z+OM=^LovPrK^5tR*bA#?s?gveWIwZ7iJ zV{@%OuWZT>JNp@y;c=SWoFXLmC`fqxN=k&J&p?I5&~J8>6B<8zyrXgb7&65Yh|dB^ z@Q+-V*Jb#t3uuUYr5F|drFf6PsS^In(OU>VnONBN)yDf^N`Z~imzH*K7)*Ya|Kk&kE5TFxpue*YE2` ztL~>ov+2I>D5Pyn!&0UPE=o4a!04)9Ss=FJ6)^8@3OReN5Bo3Xy2`Mpy9y2z^; zl0+ns3-`JI$AFg-;6MCV0s@ltH{`+kgpH5in>UsvWKyaj4(Qfx7*&sqaCb3+k$_432 z5Z^>>Kvs+3N*a>isq$yPpfBa;vVT!;-v1-m$rAsZ-J{$@)f4C>c9_6H;!~*E$pV zX3+7{W&7l9vy3QPL;dMduUspT6Y^+Q1joOqCg68Xo7)p{m@g`P3qg<)!3dl11}Fx{ z*a(i0ZZ-FJ(8uB0m+mHJBKy*3soIV%bWHI-?|*-C{T!^H65WKMroV^q|B=fL{7(vw zB*fg{q(1_1DPH}H==Xl%7^7+LYdiR3@)&?xrCB6I-VU?%XCC|tNm&l~*2Tp4T;IV& z4_e}CXbRTQ*B!}y(T|xEnD006bw)B>L~=+MdEI1jbb<3shR$mZ)0mD*AcSw2!X1oa z%=_`w*&cBG;aVLzzCh$AGB-yaul%3V;5o#IJqn7pePbC%5fMu>)+~9zX8LeG@l@Y$ zs-87d1v2>tli#hjkR{l8B~je723He{04J}Vq#A^8cK8xrhH)s9mv=SZq1(>9>v;kH zHpt&gZw%NXkUA#O0fgJB^;$8gvy-E9+m}DNJ{CC0lyC znm0$%I~B1dI9;f{jjbh8@ZLHr!;dYtR{Zs>I2k%I(|l0EFVy*MHu!-FnU_Ljqdf`5 zqV0!Ph5S*Eo9m*x4V>;9?F8~Jd}a)p8VeujJZmt$MNm$WrMl`u4;?*UUozvHzTtdZ zN{92m9)eD}F9AJ9>u;Q3n0R;y>QW??0g>=OJkY+>{P4iPST_ z7FM%9?NrjW=~d7*f1}R)V&!>7x;F#q_(t$eh3l~}#5hYpBKLM0(i%IXF5>h1@ou{D z`o7L_KJV)FMm-wGcCyImCmbAv9Z}~ow+>3BX1jec^Sdj9;yBqtp`ipj84R9Q%udjL zPJg{niK200Qyi85r}cg&8@JsZXk>np6)WkC2LbDA1AS^NFNu*`$etpL$uRjp@g|w- z&rV(TVkv3E?+=mOk|IRU(lyT?C{94eD@C z2d)14-T<&2h(kIIq&H-)rJ(vNT891~JePfsOcuxKAGXbV9Sc3z?;(cm9m)rab1E{1 zg#R__PJ^f^`l=biH9hM+R4+2_ub14MEt_7z;Lyjn6%d-=)Mv_0??M zhflUA$pY1@-X62THg@;*0NTSfz4!G+ej`H6vC}7&E~s!k!H;lvwwcX6yZEC_6jQH- zOyu@60?TSRq{LqTa->#1eR&?npG~pXP3+Q$u)PdCBs<6jl&$+ zN@#5%^}fSFcDo_&Tf;bS0m*z3m8-$X-8V2iM>$a8Hwg$=Uu5`-wRNXZaH1UL?Me znn4x|6|ey@Q|>+eN~hS-c!eohFlICutvzAfUH0I*U6Zl6&8!n=G)5y1_X%h8tE-=n zSix5_l?NTHN}v}>z`K|2h}u}-P37`W zKmXwt3UJXMy~LMBn;T(+{1j%0{!%kkXg@JlVKyoOnb#etKZ%Notop-D_1!10(W`>e zo`U7B zDt+I1Fh+X>c%s$s-e`I6uz}sRiB|1G#ZO1P)R|&<2c&{$r`E)?NfpXE9sK)zIrfn4 z06}BCYULII?x5|h_<+tdBxE8s{JSuY@8uP8HwOAoK{GI91!Bf6!utvQX%2(XW}ab? z9-|nBwk$UR^>(ZE%fSBR{K%t_QXG>E!Oh!yiIqI%jdDhmYp+K#D$p;D-_zNiR{rP* z^|yOM{f3!2s8RcBHRwm~SpY>>VOGrq0S)3Hp&xL6Cs^tcu=Y1h3Z!KNu!yk2iQa0V z1vR72ki)hQyQDYzuAxM6pR3dk)G}ok3h4ET%WT6l;k?171^HCAly~; zm&V}*h>AOF#=vF7R*73wsv|AFJpMGFUJ461? zjFA%g`*ebnB5bJ$nec6nPO&5P=-cBid?YeKK0z+%rOtZjJ~dDZOTlml#oyJ4>aMX$9A4yx_DY!Pid?w9 zL^1`|So(+Ke zRx<`*P7FKCi%JPd^W{gbQVrU=Ze*CbWkA};Z?`|YvxtgqZfp!s6ZRxW^GSmDNFj|W zyGQv?4gXR|ZWs69lQ|fFxn$#})thS^uaVH3T0g8)F#=+#`exT2p`X{fcq^H+n$Etl zIqs6P-b^P!gbO_g&aE5p>JYG>e(-b&C+YG)&2HHSt;hQ%R6B0{$a4fy^Jd@j$xRmmK95*^KNt4HqQvjoyZ64$Svz*q_mSWE%lNv_YsJhiY7X3O)F zUassSAxI4o#W|%o%v=A+hZ>Zx5=+CLr%yBO<12~;88!##6dm=UWxnA-w4~OgaB`|7 zfsmsihoyMM)0+jEU}cC{-;BY2do@b9XEc-Wzi(c=7_Xw)&$unUL%YyR9{;41kpoz= z9`XDkab0*6RU%5GV3cH<6HQ`aI1+9Jr|9_P{nU>QDmVTfG?f_$SGRP&@MzxB^YK7t zmAg$IpFhmhjdCoUa(A=XzR1Gmmw(N1w%@TH2&$OtB~!R>tbe!94tyTS9HGaanqH!v zKK)v=xiNHi_h;rZ17~^w)6{jKh_3Puf0F5VxrBI|=jV!1@Kb?93NTgK?!%1UjpDC; z-;ATmcLB4vmp_K;2=E67Tf5k;-L(6B2%TLrKTP8IMJ*H!l~2(|GC>Zhyo%!W2VPzu z*8+;Vao84)C{`@h-IzhZM|wcwS%2|slu^bKgzgQ(&izbn$P|OLO|j$)iLIwp&*{g>6X|rTX`|&ZbJpH`13d?kS(+EM z6;`1F9M7H&UJ?F#91faRk=OXYmPq_AHE-E;nSpb7=%yLC3MRxxKjb&U*=-0A?GXh?zZX#tZG>-8I{QC zeGc3kk&LUsTE!w^-<0MtOGrG&G7O|sB?X&LV`L@KvE?%{iK9busrm~a<+Wbpvjr}% z#3S;2_x}~vPW^d|m30zmYa4H~${HoR7J5j+jz^N=nRboN+pAeos%k|SP#7z6?4?&U z%VZK$t*8(+A^V-9#mWT!o4~MX|C4OdOeTSj?{R*ksa^Dkfqs9i_F%<{B1fAjpU(?s z4D;A=Cy57NZ}28xPkPq1t7De)Y~F-H`P-5VV(~vS0OLs8;9VA~5=!QFc|D6+8^zDA z!+@Qq#2=tGr;5UAN;F!j;yJZ}8}B;>y6v+z)W@qXdK(@B`t>#XLCFCkHJDd2a5Pxd zb&)!T>CAx;HX+5FxTb8Z32%W}Lg8z~9y*L~qSmuSp9Tg&N_8hrs9Gp{zj=YtxIzqz z-#I9l=!Q;<0sMwRVMPWaUPOu=#f&8h2#gk7C~!IySXvi^zKW?+pi{^;bLXr#GKB)2 zp`z~}4$rsYOj6BmwKzo3=N+0Ucjv!Mx8any%cmutW5UDQH{I($E>{qZ4_> z?*4hkX_ms=Jd^sKR>p9*uk}}7e9v;g?QbdMr2b5^xLi;#>sP;=F_UxBOTh=0_ALTh z9#{8B7GaAtD@oFs>QTWutfUfCq&-rsK(ws#c+ytqW)U&-1mfHK9?d*YY)dEs4?0=VQS#XCRD0H94AE3xjkz)kCr=9lpU2L)E=me}9ur?j*5U5Qe)031 zKwllb7*`HTnXU*UH~JjMPX8lltB+hGa3_C!m-04saUFjqG4Eep-_RYp4>GBE>(wux zNW3tN#EFbWb{2c{)NX!wWqbXGx*p=)@dosLj-?-EGrB@N=g~p-CqZ_dLNWxC`4h{v zrjENf{_PN=kfIpc8zf0^6aI~L^_+u6L_Iex8kIouq4)ezV`XgDHO-GGO{jHEBn7Li zl|MzYS(DHjW8w6C43_bg|BborVu={{zN zDu|bHUfUf~@WA3LPVyU%amx=-+voHmRYpoDL??3-AQt{xDa6q#*?i*D)+u1LcRRsu zF?ee+pGKDtkp(M5xX2Im9G|T@@u3+M?+V#wlfbhjnh&}K;*!#zGw9(3 z2!e{aEPIFtdGri}1;PHgrJ|F7A+r7r+Pr{I^xikK_DDfbU#iZlh1^4}RxqD|Zni;i z#|F`lviD@+2t6_sF@Ym$L<-Jx7Soxj%Gx60w@DG5G)FUOOE?O|5qdD;%(#4#Ul$z4 zK3fXYvoL(e%N+G9tNk%F?o~L#3l{xeQkT#ho9n~Yc7*q(?R%)t`N40tWZ}g%)m0{5 z2jDBb`Ji>{fQ|3|VIzlEECs=kRGkk^KHnFYcRsV1EIoa#yn#V$E2NGj$hSPUmVAoA zQ-GhrTrTUMl37slU-5IflHKdO`xyeWtz3I>8hlMnZ}SG1673A*!haZe=$r*eR?rtO zD8pJ69XsxBM7tW_*ftZ55_;tw)$R9LlrytqVs7IXS(GHus9A#sPnr&S^^0QcR9eJ< z&r2$=dna4Lf__&;54;weizIdoowzQ0sg54cruA#15LJ(hj?HWI=;|(vwGIbd1_3a8 zqH}+>1IJ~nGK8>t7E}9>gvSZgGeE$Twr%iXiw5|l;Lg2`og~|Wz*;g8TW}b|F_X$O zL6|Q~RBqIyqGbVDkN)*=>8e5kd>yc%y5egT$F64|(g*HUjCtf!g#0d>cp030^@P0s zr;!_K=9X&HR*O4zt$}bY0mt6_4gm)?{a<5N_Gdirb^7TwxoD!1@_F(5fyb5{>qB0h z!sc-oiKCd#_}SU!+|J0PVqs+VHTTyt}{PWcIt1Pl{4hcArF-eE%Yg)w^U#!|26FoBhdxKfVWEEjn(MUOIk>UsS7 z%H3xepgwOQ1mWN-p5z%%zT5F|kMF8B`eS&BR`Plt?Wj|Nw$p*w9a%D!ixqUl|5s}S zuZ)xuJw4WU787o$4j0)gHL~yWfz=obEw&op1tCuX@y?yEq>9O>)#O`bRKuGbdfJZk0xoK#9XeCXPm|@pp+o%3B z;WENkeKQz)2*8)~mw%^Kqhe?E9nzrV?^VIyUa=2ag#K>#4RRa{Rq2b86Ok(nv~Nl` zdv*F*{;XyuqU8@`h0W1=f6xvuJr*}|{XA$rT(lAJt^J;JRv7TrP`0YuKVLHitRKo$S?9u(mQ&AMVCk9BqCsdJ6K#BPSHyzOyW~zh! z^a>9A=@x6-W;hZwsC8X`t?Lp|X;sUmUuf*{IjHohD2A|7RYmem8!XhYB-YhNj!Mz7 zBF4# z%CNe&$9%D`+(+HPwM^PF83zGBGM12wKn-Lx&lwZbfaEIt<@@!R)C}@2zY{Ly(T57a6z z@O=)WYYHWaL`iC}7=rG24Jd}_zECT{naAdPZ(? z?6NO9W}}?gxw)Z*ytS>=klhVgTWuasmY(f)E~R0+Oz73$-Tmmgvk+XC3%xO-=nhTY zHk-Xc>+#=lvF12T&N+fcGfb&WjDvQR1Jr^&!%!rKOmp%C-;OzPWIlmd?gTTB6UFLy zes(raj7l$F?+Qk#C4H@C zVdrG|J#MYgBdOBZ2=4ps7Ua4W*>XT=-)m0j;Jb_2{ho&xrXVP9%9m*(VqV8Js*3DX zQWJ0l#_TmRh*DgdmSc!gJ}sA?KN`i!0d9qhmwgxHVsVt6jSxiK(d1VGV;F7VZVBMD za+;%oEU3~-P9cy1@?1R*-V4(%EH`V}YsBE8E2HJ1Q5rhS-})edM63pFdT{e?6x>Cs zdRH93&vIddozgKB+>HDViyK5_39>8Q)2qx4;IR8PzQdLWK)ml<~cEo(Sw3eRf zqi1G}CwAn%dl_H(XI@_TcM%OZ9O69SP#|Z~ITBsTMyB!&zhaq^k~v)#P&eAUWSh~S zISS`R75+nq;x8i2k(_6-+V1FXH-+?3NR>EIJ!-k^Pi}PV3n(-%sKRHFc3CeSKJ^W* zk>C>%b(EV4s?%I5t*oPSI<~!UTIT4U?}7EymtO}*Mw7DK+0EXw6$-mG85Ct@5G*E& zn7FN(n4r9|W(_*o0D&+;%+Z7t@PPV&I!1>E*8ogZV{?8?J)%=1jFNxJTx`eZnHz0-{TREVpP%kl(E z-{u=t*t&8uq5pQQ<7?aB6N3R(OJS)~2I5=pXg|o$U;Mr~vp9VD5X+AL^W#?oW7v-+ zKi_Ilx!date>6#pK>R!WFQuec$gn{?by5bOmZcyb(#p^rRQ&9$OE?ZWZ;(h<+Abax zrfPzWaioFevhoq=u=YsGQCp8^o2+|%+-XDr?EN5Za#q53BL(-)y>rXGh0dfWd zjAFHbSaaIWlPELue+X=b^S>8C^SoK#u0Qmt{j*x0w!Yy0qEH4N1rG};R7VDmsN?+# zQ^XC7r8*TLW1+zj}~r>S2;b?l*hN!g6+I&^iLqWSIHRQ*yHUW;94!&Eu!r!Cyj99~F2`!UaIC`BtAR?C1D1 zNb69;uz~&ti$o|2W*g*XmpHeu86P`p^`X14{Or34GW?reBE=^dbDMU7Ea1tMGXy0W zo?E9*1By1^iD!LFU|<8_&#b@hn#^u)1Nq5p_MTp!!oScsa-v+GSE^Uc=SiOC*c+m_ z8a@aZREeWsHmGT2jz!F5kSX7AJa_vgpnNWv&b`U)#iHudn(Xb_!+w&!_sAzkDuVnR z74__R-RFz$^YSlbz3=7OS#pQ_L(m3@r*f6V*!xsneybS+d~(Ok;ZEToF@3vX9;Gu# z>YBRwa{=S75jZPbGNT;+jCIs$l9SX7bbShv&O9*QnA{CM7%^ztPCG=!>8ll|5xy*lgjb%=T&Z89SFUw z0;Bmk*>jeHStj5TY4mZM186OP*m0=Rm_yk0c6-$iSt+$p_WyGVgk85{-+Sts>^i;=6?>)8?PF$v+iXH+(L6zNcL5fNA zvp8~mUl#$)g*(qASf$Z`sc!m`U0%XHo8+=9tlhuU#p+L+cVG2ZAb+9FjJf^L$o- z$qY^jcHWQDb-Z-d+vhv|aeBTae1Y&VKDCHh)D?G~ze2rk_HMGoeh2y4Ru-wRf9u%& z%~DfgBPt5P)a~r=(nZ96a(B6AnV^%!>^&4R=T8Ch_I2Yjaj=ydAIqDO$hn$+GCTW{ z4FeG&@$dooE*a~G2*Fnh`h0gMN>A9mE&ec~{EcgjzFg|hbge$!rxQm~wM8{0bQ-qE zwgYdl*v@b%oIq7+&$_r?ElE<8-+vfv6a*-Co|Dse%U@1n2$Ntk{P%W2+p*0r{UBhi zuVpt9!MXG;CenMHQ)4t^kNs0EMMSxdiWm5x+tVw=O&hcM0>UwUz_NeN`ixFmnZyt3 zcq#7@BI!&4O29}5e?rZzWqF~+&`@zuS}qQkc=n))j8IyEd+Wz(8KLG5bv+YMOR=;Q5f|gpS)7!? zi|Qup6>Uwsx;NLIC(7g=`zKu5wacR2RwfCgP=z^u$yoV&m#4UQ?i?^;37(&-B8_LS zj57~Wa*`|gifH#x*0|ipz1t+j8F<$mEQ(UQv6^AipMPv~<2OA&{wEevWT$!)!>KEv znnVDwka>Rkk0ALU=^CQ`w$nX*ae5FNj4FSvBYB)r!v!iu@q#=VRHt}Z!a{tl6|6lk zxkYV0dV{XWDWdNZW55Rt!F79Gps=#9L@@v>X5u)vM5N}=Apm1T+zlZc9@}qEFKq6Q*({P*w_J-~6|waY5DWvanh0=t~eOj^zj!t9ge9T(6GsGfsyUVZh9AvxV=+#Pjgn7KR< z9Q{p-M(8A%gPo>BmQQdT^w*bQ<0*x+SgBvM9*9SosUnu@y>si-s%?Vjm_e#hJSV?j zlzF$MgYMXnWt7XS?;C%Yx<+y5NU3NXo3nx(HMEgP zQcPpmSZRVq0$X@OQ{Enhr=a)68rW_l?EUjz=Tpf`5I+Er*a5MGtrNFu#W9lzKB2}|}7K25@8txb>j9SSUJiNXxtn?LRqy|twW&vI^jt5X>4?9t%+@d8mGt@BMi-Jw zTqzzKdc?ep#ZrG=gW1x@>F`o-W~2`%FF8Ft()zydf*$g$!75ZCE&y<73M z=ee3T>xwWBeq^lEhD?s;rib!8G=r1UM%W+jt(zqcQShb|4l#&IB%etL?jhbkZaU&Q z+dIk!T3%a@W>SyxE50z?Nw)0;JJw}^HMllXb?N7EAjto6o^bE=9YT4m`vX#&zEj;u zHDn!?1DnB`l6R?qEp>3um{W_$(pR1g;Dw`;q$ZrN`i`sFMWaprw|H-Nhp{bGM@|>HAm8 ztL;AdI%%G=qjIY{sdBbY%Z<_3IH@{O2T>f9Lzu^jlH4bTSh@?z1WGHYa=qov5-xZq zpokO5nb|-Y_%C8I0X7lO4pb`jU&%B)5QJK6dpfacLy2c)ED>9(VTsGaH8Yk>v0W?q zcc<57@8whNUO9iUi1ajO8L+3Q|yVfcQI0Oe!`WJ90rg zC^)37{AeVrL)%z-YntFImp@1My6F2@gP)4i_BkzqUoM^ek8XM(Rk7NnMP(Q_c0#A7 zcx+dYM3Lc^+Xq}Fo>r5olGqI$P$UdR&!Hi(zQ0#e4brv@z6C2$k4I;ybkkwr2jI4Fd|1R4XimTE}4;boep)))Zi#YxA4T6`J{U?CraW^>5d-$mWIsC`&rb0Rh(* zwE*`v5;G(U^snyOLC&X&~QAit*X8lJJvxT z2Bb|k)O1Xfn(eO8*WN!1Ir(1lcb9L{H}A4U&FR)_nL5E!@|4RqxSgS8uJGT{okG*n z0`MOc9D5d63qmq3aguzKH9mklb(m7+ z6x$|*WF$<;ZgESvm`_XJt>{>bO7$^m5r8n>#_{Ch9KT}LoI#enTVuKwCo$Eg<((%e z$4!)+5Rlva1ifvgpeN8)IEE+-Tafo+|(v21RSWVNb3*KE$?=bq7C8|YfYv#@t z5MJ#I&d-gSEJs$g>HZZ?u(iP#E z!MCl%qyY8IH!?PPS~x(&vB_qS{r96@?XEaMR{-3kifsv|fHUJjTHb#p?eGZU#Phlm zkwFMW`(2f}tO6}0Q-j?7ufkKk8(FL5KiN&gdDR2pmu7_TR}8v8-2852iuxK7kSp+p z-~tZ@B%+C#!dU+~Z9~y4QZy20iUBP~%9v?hUJ5ksgJ&|3X2RRTyf`#fFj^v_+NdLs zFP8Z;VNX6uj#i%%20um=He^4mXaqAy*dx0pyt>y7OH5G-T+ z(Xh>HKKVeb0P^8NO|rzVT zlX|c`Ihp`Pd&uuD2nsDol*DoZIqYEe>4`H%=rr+P#1}Qrm!qW(@}yr96_3s-D~YNf z*v6>+T)wB$^Z|G9nPG0JR^wJp0gc9 zoImuSuREb;b!|Et7c)%BXyB4Z(>Q>J7#J7=tRZxi@Dk+&eCp%*zO3KE1|(joH^s#O zc}7xX7S4i2fVKBtHF5|~rI;q?y{m0;Zc*9Nf&q#vQ-78m zY5{d*0(ghV$$6M$jz)J-1s=f;$TW4YbO9-;>cybNp^ky;7XXy!%N|28W{UAde_TuQ zR#dgn#5l?VP)fQRd`PapwjMgJX;{O|u};_hI688C%drEIra7?^L;2BMnY5@r#^E|p zL${o?YSgtgtsHiAQVo88ctD~xMCS0qP!dtzf;F)5U>`uyvVO9x!b;yW@%Kde1U$h( zN3Ky&aRd2k9nUU?%z3pZ;(doS)6 ztbIpWavZDSoX!`y(c1pj@;pX07@{ooac6agDE1u6A2I+h7gr!;h*}10@b(lMA@0a$M zhpsz1*PbM!X?y(_09zCt$bDnV>OaZru;acWTu?q z9zc>N2oin)Dk18Kpb;*!*ClNLtbJ^Zf!ePnARXVtv8Gr#!I0@>(0-~{wKbHgS{ObA zr4+Ho_+)&uP2_?(4s4XoCrKLYcR_sz2h$Afn7P7u0CVt}_ZoYoW7AJO#NRHsVwq@i z$7%z%qS2S!3#g_!Tw7%)(GPT%0du?! z4{&{TBrVw=z~{=In~SDno$pO6zE?T}ksi4=*0V0%qY9K{Y@)(4K~+!R|IA)C&|)Be0D@V zLF(I}8#K>D5O>%tcL2Lp+y=aKs->n+vdJ`omVKU7QYGhtc%f9klNSpfhZ#x4$$Xp|%o zTtH;&AL`%EA5v6?Nyw2PHJaGB-a}J<<+o=Y!j@_!$&WD-(#514<*{kUkSEi^u%)Z@E|ek=*J$ zSct1#5mAFCkCE?wMWhM#vs8_zRNfvqcM)O}(})ZZb1IZF8?$m-rpYP~_xvEko`SRB zI}^bvrUi>5M>dU8=-7ToR*(Ld1_eL+SR~)^4&tsidQxfWs`NX~U61ysJYVjSq6S(+ zjgsn)S0;EBZjs#P$0;cq9Eh+{)%MD{TK8P&@5nBQ5&9NB2)L4qyy{E|9`|uE_J-V- zd{K!&HJaHGY8;sK5Uh4N5DgMul@!lE%>sBPCYIzh5^&MI2Za&A`IhX%+No>}tQc#k z1eM5ih+GsVQoUK&i*w?FHTwS!07A?gyA0}Btl$1$eZKflg5TgBASET`vGqK`-+Eld zKSjJG3G|f^Y)TjZP*S5tkTcl%BF5f}>nSnpz&sbMi~$4Ppy5(IePjSa$z!N-XTjJ> zXrD)L#IIo{YD;E{v(SXDO_8DeQa{8QL-{@8rC=>^f3%=gV$cd2A8uGnUrsb-Gc%q^8U5`$E(*7FIcr=fVB=+k)!%@;V93qFojIQ%#+n9QX#~!6Fe;2;c6qQ2 zLsMrLk#vXLjsC@Q1<+}mLt&}t_Hi$y z8uNfdoxp5=p#6YBD4H7wWx?`7E($6k*(eOf1|qNiS>Kx{W*zBmn)WM*6`|~Ht2P`+ zPnQ4+zaLeH4GY6-sH&0Gk|bB_0}d~VYGtGJXf>bgt23*Dl@>M9(E@&)fgSf8U)>atCnVd-JAa$VVeHyF3L1UKkDLl3T<+yfFjGT7(5!4?wke zEhO$>FYkO40g$XXZ@b^g7Yxlj$|kYUuGAi0_iWvg^ZdC6!mcACLWsZ%S@uclN^kjdaYD2RHbN* zl1L@Rg_U3Htde277NLKpes)cdXP`P%StVrEDp3QtVfhVd(&jPtCUYv~-Gg`r?$eDl-fFCl$<=p-#z zeyO=3fvJA3szEZjbdS}kfx++#Hb;9@?u#F;O??;9Q+ki0&meQ5v|(l-_8v0Jm<#z) z^&C_k|C(5>1FFzIJb4z|eh!eF+YB2K&jmh&QVR7wHlpJ8+Xj|;sd%gKmUZr@@2 zopR@J6x|^>$)b`bXey$8ROIP-I51uMYp1kzYmxaFyW}{g<@axR*&kHEq%J4bmSa6# zE*0U;Pk*CLc0gWA28c;9Af9$0{bCyXGs|W%2zrH~ z_ld$=k610k-P>*nsX)L5S>~JdFhWqTm-rQmwe5$*<9b(;mb0z6qnz?&k3_&L9!qY^VNvbW-Xsknx8wq~fJvwjb<3 ziL%CKu8`xSW63$|@DuLvpcvJnHDd-|hme$a<78<{+3{YK1Q*cvot~cD>B>lglXf7n@2X%kjrR zO_$3okTW5IQA?^I1_7IWHGc6F;|z$5JSM;UIQ6Q7{c;)(_K43I9PtL!o^9&1kn0h01*mgZW1mM@aOII_1!!!$pCM$!LFtwl7^Iwc0c6+^--h zI@E-Cde1Z`L-`HKb!qr}R0Y1@rDB$oP&F#4Ajwss6$q%6En3Wr<9FeBzs zp_nv$KiL_v))hvbv{~Fz!HAPA?lEb190obB9rptpn8j|#XpplkcGE7`?%6t@dc^J2LT>jG4sx0!;Vq?9qE!qa+Y z$p@vB1{t*#gVqnjX@8qx&)eZA}&wadK7zbplHw}imXjA9cSjkV+bYU3(~%$ zCua4})8C4|cj5R0>z|oO{}5+oRZ^{5o>=8Cv?i)AxC_nq+@1a|A7rTd0OFl$5-=_b z<-d#va1CpL&fMuPi610)ry748`o7$MR%3*+Md1t9bcq)ZdaEWwaBypmkNM(kL8*P& z%lRUHA*jWIg5p3CqcCpyR4_?ubbq2a3)I~fPf{;5$r~e(074yB|Rr7f&n(7a(wC^`Jnw=Yb(4hcVhbI>KP9P>< zatmLB8P;N6Ksw5AMJOcAno=-uCz}!+m6Zw7PH!^k!9N2Hd27n-hiLnNN(N(>6+`Oj zp_paA=~8{0?$81Vsa05o4*vCy64HU+|FF4gbTDkP_L2J&ok`@af{RH%b3b$_-(Bb? zC@rDnJ0E;-0{Ep-TQ@o<=sNzj zAw|@$_~lrEi(I2+x-7vq1d#P0&Kx14eQ-?6rU5e4h-5kJ|A_|a7zTtkLD)=!kf+$K zDc))(}GLMUR5(Le6eiV_dTL``Qc{IIQ8Q?qtax$UWkXpLx}8P=Lgv zX(@ZSQs*J}BT@^Ikrxr~4sb?OqSS5M@tafmLT+iER}&d`BQT4K}v18E^s zq^8`>et@X?{{TQhzrQ&WBRJq6#jWuXbpGH^(SP_jL^E%yltnQnZ5moU&nVxLipr4I zcJxEPkEOr(61>?(CCDycK4E+tZi?8HPctpMd{*@zM0R9qE=Y8`iTBjgy|;y-oEgag z*awi^l@GwfMPVFAer*t9QvJzd(;jS}i4;TMC77s4gVkQghKHC5kn{j8BFUj25#aLP z8hW=~3%BK!)(*%L=VWEurUb+J1ey07qi><93Z&F=ah?gtAt^Y5`AtGd6--nXpQVJs zWfT2kBKn9_|A+~n-t%0>GBzf_gfZ=X#Ju$y6h_LMFkQC2neBLF`Wmv$&hIT&p(1+6 zHl-GdxS8-Zk&6`NNU6hc4H&3N&Sc0q?wZUUlWPqG&3WAH+=%CGHn8(c??Zg%GDIzZ z?_v^IuZriF7#~@XMzg=}10TROAN{cE`owq6&djZ?ld4yv>gQ-cTnC6vB3Dq9)dFO$ zMqn6gjG5tAzta8T#~$l__echykax2?+it!%OH8)M=d0DdOsH7s<{)u2-iuyF1e0*r zA{3L)*)f6g?6O0GOF$(rn#9BI?qxi_u!F{TzE0uKl{vRX2{DNZZKL!al0n?o>q|6~ zn(hu17ouslN-Qa8K_yva#lj?v)0X7mIf{%x6jN1;&#J5=BL1kW8A06B(%)(T+1_?n zk^}<`6}Z?afRb!Byk{i7a@d);K1+O$H9RHRg>qoo>Py!hlwunvc}nXk|lJDWU|HY#-}X$`M$GcKtH>5c9qH zeec0FA0y)T10DJ_9iKX#En)(vHG?el84wjFfGk$fYV z<{WX~4I0mF5_AVuHekj+aZJO9u}MGKEaFLO0!ktSJh(B70w(&zJa`zQ*WbnY@FM== z+6_eC@f~PB{|0TB7kmh^$f-p>jy=@cOjP>`R89gjfY8eUm#So-0*;|9i!Nl_p2?CR zKq16yn?=Zqq^V*<4pCPAoFYCaN&|>ZcV%V-aT1}lR(XOj)+7lpN|rHUx>ouRl6@4> za=!;7>5X-n?)L9N{M!s~obiPi-++x2Sk+lE4|WDRO~hn3#kG*5?ld)raMx~(;HyvI z)W7^i)c&_0K<$=mfW0elbWRAA8r6xuHg<5^fBrShJ@ys!>rK7;z3mtX(I<39KRv8t67%?2<)u>43n_jW@x) z?WJfg8>ig3LL&@oN;ZQrh4ij!OD(h-H@_C4xo664M?qPY`EUl^&2#r8QJs}L5__@O zM{$IIMcezaY8awWgQeC0CJvQiGUCr^B#AZw635Lr>U7wTZF-?p`#jM*PKE(wf=~8U znf;YZ+in8-}Wk9Jk{G@DsW}Q zz({?*=Yx-Y6*qq5Lugz)kFeQN#a%){%WH*EJ3R%qwl83BcTF|B)ei1KR-iU>#Lz;v zaevDKn2s42-~}&m-gV!L{C`@j$qO<2>yj~1fT$!}NL85%vB?*ylL_E@4nhMi$i*-y zBCUuq>8>SdzOu~mU%(Dz1eTrU8b0^;Z-;D=2~eX26mWwH2Q}k?w;uV@=t9-{&4w8T zO5@<7gn=D>x(BB_$cV|RfN5HAStei^6TDh*;&S}+s`Od*{>MTQKRW|uS{fuK?_q~( zX_)PgAWayM2_MGW@4B`tk(=7_mI2tVZ%zSexu_H-$g1s9H?D=z05CX*>K7=5DiM~@ zH6+qcOg(~w>w*BYJ7;kA|M?xPeeqF*f9u=e-FA~o&QaNP_j~#?RWCIz71(u##g+1=dh!Cpg?pq5Fsg{`7$+eAR~B-cB+i~q@UiK> zGJ{SnhqVGx^Wk4NpSLk1r1|)jskRkqy;W+ytdQ8&iNnb`hmZHMLyO0;-KRzo&A1Tc z2y_24*0TMQK%Eg&(mbIk;jLHKCDS#AZw7qU<_XPkiAsi$l9wFaQQ`xa>_%LGI= z6<+2w(rl%u6%;lR#)c9V(PT77)&jU0Y9blUSz=H*s5>sZeho9-1swUzX6|t13G^C1A|k{j)*w2GDrVEQ zrpk|;=vscRX1sLiB(A$|R~3Bamx&m1V%ukDsqcC+dC7y$zq#+e;Qyp6?S%bI$8Su) z0IF0+3k~KlDy}!^55R4@(%t~02yRr?Td@yZMZ?fkEe}h6cO_T@z~oI!Gv7sAwe@5d zb7TVaj@EP}r1)%;w4f4WB<-Y0Q&kMD%2Y^k0HtCCFy+D{GvX?kLa_!!qTD0Sb}p;@ z2{Qqe)9;vqvO$2$^zj_2{m6=#`vBhD$pL9tVWNBiDuBfjwl=8mR;kvWMiOEq;o1yl zdzaAu_*2;a+~e4}{TMngc>%&ZZ%4GuH7J2fy2?5J63rl-P7k%q+n9ag91eWx6c$fz zqS>YO(OAG-O%gqV&n1|Tzl=kDoLx%FJzN_I7^p- zKCZb|JWNvmA09jA{wb^aov!XyHfk&B3{+|YFax;21MFtNL2b6$P8>RUSBhat zC4uTxVqh{yA|^bxcuys&yUlWBQ{?WCU8ZOEPz#01w~w<)Ta(oL1Jyt(`<3>&*&)j{t{~ze_y1kz65irR%5*9pX0{Gl0 zR3}$3GLS7Hn5QXT`yx;Q0ZDs$*tp*y* z1ZXksIm3i4<%luC1k7na_dHHB$o||U(=bN7LVTt{jA1+Iiqa^6%#6RqJ(L+Sn^SrU zrL%pKn4FrNf?62osBngJGO}spBb}MZ=W8Ts+cRg#Ubb3>W5c)VIRnK6boHd8i>ySQ z7(kaygbvN=9BFz75Y~<&N;qWNLvpzXxklVSK4;ErDiwteOAEJ2+Hn)!d{Y;1Il4g! zU%S)ZLoaD-N1kda7MXK+is%`4O29XXOj2njTU)Ex-d@GR!Zpfl$Rt&ObMF}BU5R>CMh}^15y&wnpr&G!~Gvv)d@(X($dW{{L8a-hjE_gtkRjDtYW z5|5K1Q1e;rX^zfPhvV*AXePAuYKnCFWa7m&6P-x3daFvEc@e0z??l6tkvc27eT50> z(fq4yMOu6T!;?i0y}GE=Ya?{kXNOj4(fhilKU?gQZ3iw3rk<=&|I3S!WGa-b2_P%9 z01Z(_PwNKsNV<5#60+(jl+;P1Ym#{$s*K54_SMcro5(1|RZMYu6eI9dLlS)sU8Ts{ z0iTZtvQJXE8%fhkQVpnb_Ho*#4)gg6)=Xoi2<0s0aOK67r?I$r41>3hd7b2*88M{v?RGhd`wmZLrbl6DMFR`(gHXa)_2D5LkP^w)2y3^&PTjI|)m z`5zSbROB>>(V@(uKSen)Rj1}btMlS|NTC`Wo2VpI%>hRZ9O)tv#Mrp3nw}?iA|ig$ z^2oSP5G%q@WT-=?*$gbjYz)9jI+hyg$W;!{y84}hbVExCSZPA9Y}<3w*4X503qfPe zou+7xSUYo_7BPU6xc>TWG#YaVLj~v}@4P#C*M0Xn|Ex9RUSP)`GXN>&6}7?})&NR8 zhKb6i!UfvfH1Dk-aC51I47gZyQj|K5CL#PuRa{Xb4a69SV}jAZr4`+5q6W~q*ujJE zIgZ1pX#(eFH43fkE8qr}aO@aT&LI~XMbtIk;A~}}D9Z$i!x53()3O&so zglFNwOnB+P?Zo@=YR?(Ha!` zk(c@vtcJwb_5B5GZ||WokC~@V2LJn0$MGX~+?u@q#Si$T{(G1)_YrZCSEQK&@7lq* z&oH1<;gM$PPbb?Zp>S$-!f42b%^?<5dBKx{N-M|P;gvW6Sw>Ls8Hfts zLe>4*1dhg98#jIIByRus3hDuI@VP~U!PlVi@U$JxCHn9BMI7FK0`tu!MYOIZR$dGY zS7rVUCRZ4M3sc|ixCSWGQPqtw02u725;ap-EcE$cOJjw$6>Q0@Evn(XdR1-5sMv)p9?bR8TIFf+llxD;}fu4B{HKX7ZAIWAzm)_}gW5EDA^(KPm92RG9Q%ssskW@{CJAgg2^$Wsr z2e}bWrU(c+aqE<@9p-Id;4vtbNEp0-C`Jf?fRTaveIteXQ7#)(mf7Z$)ZmX(;rHPOD9gAjTUb_TFrY_b5;$f~UBZ6=l&CZIF| zsa|adT3axLG=V125ZtDopX>YC5oRmq?DfKqe5IL9QxWuA%16=<)Z=7QoYb{^#sU+b6N+T)eJMx-AwS_b{mbe>zIH10+x<%V)?`_T7BZyvr7n;7D(#P zYCJm6^qf%_itvR|#!aSXw&F6eD9<*^U|=N~8cQ^Z{E{7YF4nS=m`wv1g6hJBq(lP1x4 zs^3AU)5q;E_%3wX+gO)h#+NTYO^i(&`w9(7F&TPJ-=GSs%0mVW^%V?xz`YjuIXrDr zd4`acgtqetfhuecSy9=Uc3{f%Vw9OIBAH2U7%+iBX|G|uh3dWpB>i{pe^C?N?s%ff zRl|;B0AIxJzf(oy9mS}T&qA2$SDTyV)SqfIZ)}1;Z@;j27VPe0R3*9LFTYtLBo~sCnYcR7F=v`7NvpI2Q}@77^WJ-%6uEScIt~JPO6QZz=l1x^gEG6O$amVH1$U(nG znffFKpUdH-DVhDOz(ER3KxP|&@)*-IZd?v~k36z7gy1zvve?TXTB>FMqa-iU{Y86{ zpr$2?%M5^sjO}Je76{rY&)l{XlqsFLZeqBLpd-a3xmu3{wkgw2a8Y$ts z#>>Ki41L~!h9;|})o$ARZ5e?#C{|GpADwyU7`0xT1cuxV zIAiKeO2cMuM#ZyECpYzeYe8d-iAW!3U_NvSbzImJsf$ojtOHHxP~#>|S07>O>$PN8 zW#DFajeW1yfvMpaBA?ff48d0x4@#|3d7-CJkHfHs)zzo4wY{klVeWn5eTtA}AuCgs zXoFIkM4wCtV%z;}D2gD5?_=oi5mlM_#3z{p>X0SJ4iSD<6DTkPS%A?>G5%;?W@nwf z1IwN=!=KGINne2UVQ2y_*hdO#M#_--bYMF{_xMG)yIpX`gVQBKZMQYy8lrW2J?#ls zVJ%K1AwpH3GZAa=w_*gbUU;t5p)uw4mImCx5|4412;&q>)ijrpf@kTK{x)z%!XnFB zHBQx@`v#RJNC{jMc|GI7u9K0x~!X`#lS2nmv2~z`&NP{_G$A!lz(FDjUql9re z>YO-N=o)+15TxA)`S%00mW%Z?aXYy>d=xacY}3xNy!^^C1X-T%l>I(Y4K13cLNQd1 zwtl~@w2=XW%oiPHi=1***)n71#oF|U+(K3(iV{4}93)00qhZ83hCUzY;nKv~hfsWM z^VTxLFZc@@4W~Ch7l14Mt||kVZB?7zwLpCA{HnM}0{C#f*-*_m7^eHS6FWHa&fiCO zZw*PR zGM-S!IKQ-$O-bXF@Po96ypqhO?G(p+!>~=Z)g~f-ZEs+2XANP0m&~I*Rj0jmc^&;u zhZbfR-Tn?b;T~T8%Kw$Lj+T}*+$%u%YUlWJB6T!CNmV10(=eXYRcpek&&Cm^rK_t5 zSW8a>BNPGB4E=D@#o@ zLZ+E_LMb$yxYr@!-t$ctWTNUme@1(o2CwTt?R|RRr-AKqXrFHMC>?Oao`a*?x^^R5 zPf(e0C`<0MvfwF;&?i#nsD?|G`X(8tw8(+5W*f8&0C$s2Vvfu)5OxNxU+(rEeY9U` zvX9!Xy|%G`6M!#W53qjtfb*{7=i;Ai&NNW3&8rR++RN#q7c3F&cMXUEGAOSi=d?;Y zo@Glni#D&V7Sm{?=64vJFLMk`JX{mM4W$@~>v{tSW&?c{MLo3lh=_@(!@ic}-OdJj zMD+ds79!GCl*gN;1`TlBl}f!=*==qUO&rETV-~g9dHQT##dc@fhv9~dJQJi4SL(g( zdZV0Lj><##Eaa7=CAEr;BVPxfQ=4UVV^}Fir2S{@*|GwiiUgZ%MqbfTD`mN47Zu-? z5`O`_B&Q)LEg;r-g)&NWk`qGtGA4h<%KAi2G$8kTHuY>H`@2Ts7`D5Dr*2@j5qO`gW?y@T*N;J>i(>9%vfg^ zC&l;;gE1GTc;zC~-^_8WVmipc%6htyfj)BdEM^#j^}@P?MiIsvZsXSq<|^uLQ;~_1S0u9HtX8FjxgiN=R()Ztk|Rixu>CPQmXSLH(YWrobzs zP?yg)Ilo zWKZco9K%Ch<)vm@owM1bv6-ZSuxv~TM>VyH$b z&OlMo5{)raXaW&wjmQ!xRJ)8;PsUOULAsBD=-9p_PEzZp9WpTt}?M41K^Po zKF?!^R&|(=SwTBd=1wgkQz9|NZwYF2Oe+#Zuny|dQ;y}>bM!p(9Cu^dyJU-Wko0zO zVcEg)8yZ+S;Gbw*O;^I;lz_q5pnM-$;}d*_e8~jV-t%P$vHEy7Q{k1Z^73^f3uYL+@b-XJe-G=|GKZ#nCWgQS9TIo%5tHrKB~7?g z<*-ru9UWU2%HQ$2N9uUVmmG~0YZG5&1tE_p4VEPtj#a8$QncG;iJdP>`~(#__{FLl zS)u03iu)}BwI)WJQ>n?&j9;t0ye1;m!$9}+ij9`f#0|&%_de!^Kg38FIu$a}r!%^fF!l{M z6ZL(O(7s!*W24cKXPYhOe4~jAwOVvxVZnV8@zU!zH@zQ8yltA+ZQ_g(Ha9x>%BRnf zJ?`qNGG|6R?EE10q}x}KmUBAV!)|)S*)~%)TxK)z(!XId^BnWr0h6#Mh-$)VqX))Z z;YG@oSqzKz`K>>~r|;}x?r(jkUWi;{?>Q!WR~z($4lhVw|9|%01Xz~qJP-R$?>+ln z-;TFq7XT6<34#@n* zi=~)7T>{B)GmEjJ0Vku9l+D5PR0Bpe0fok=s0@z zSLbIa5*PIr)#%G>HJq93;rW|#Seo>e1hh%UYOr*dF@#r+!8{H6Z;c)oS;mZ>H`j`A z_e1NLzPyO4+rSeaI*QdjWvGD9xx5)=oRiEv*Ko5&XE$d2=+QZNO~$aa5h#SEf%E6< zoo1_rFuZ!B|L{-lxdt3SHj2>eIDXjrzj8V2bM1x@wqrDHJE-S!;^Q-E zv4D%EvT@olqs2nOT=B^PG+Mou?;0xdciIsqDw9}Q%pKr;=`L%$Q>f(Y;5bE06;Gne zDlqBNL}I{ZTvGJWb%_%Y>4dIYeBS4Q~ zqrHwQKRWegSPLEav)&*Z@m7%M`0H#4Oe56}^@u86QrU(}L1b(7Ew(C0j<2wJ$6gFO zf-HU`6ZNyKOxa98Bve>oyj?3alse_bi|jPH(vaY><65=%Lc#cnQxW zgUHkM2x=bM?b~5g*AdY*7QGFwl{8XN5t#<6&!e&fCdo)N7~~e+`?x6=2|W$q5~C+H zI*`xbuC`IDFX8cb<#Fa{Ni~)om%itTe)A-5LdYSgpPtzCuV}qsV7<3U4&^O8c^4Uf z$%NCPlBMJz)ilkX9_wu1betqv=`|U3Q46%bJq?0S> zjh8?A)4dM`y|87NVYOT~Rw?3d81w{sQAm%n7`4^yDshpNPQ1s>G4hx*(-WAQ%z?^! zsa}Yw3o_0q7);|kQ?RP{aYHF%EP0olKm+aGD&5!})d*EtX^5*LL{&|xL`xvPL9EPH+*Xucn;2sL`K{pV=lFTTvw0h6iSzZ zxUmkbP#}NpI6aO5)oC*Pie9f~H6FDtZ6m|^%|<#+fBSz$gCg?U+%ifpoq>6Y-ZP4J zCKaDy@aylCs7FT)n1&xyeJ5~{1Cy86DHw9^LV?lPlXaAIU-&jV0J$^!SAdm?iRioB zGvIS&0m5!iK>*Nq0EnfikRrsA6-S3sdVvDg=_YBl(M&qEiX2hu808g^!X{HjJZkBFP;M;_tJYZwfL?r_DwYn%bBZ>l8)n zbxKdp9+GGk95i|6?y#t6JbQOF#TVDbOpn&{^!JK%89wj|aQl<=Jat|x2cEkXc8El-P zXnX&Y5G$(?^%_KzqHVLOADs>?GWxPRgK};!CPfJ)X9i($3So}!o7x8I%ct?^T{+C} z@!$kq7}Evaoec-;ngo+SlJ6|@k*|BbK8HE8O6Rly9LPbi0&x@${OllhKq^?N^X9AY zUw#oS&qn>|5je+gQG%*WQgZN(WiOC+l>q&Q zp?*XWc1%FPM#Noo2LG(BYW}iz3msiE$HptQw5wwk>Ebvs-rGu-P(+f}CvaG!PXHk@ z<18Zq1c^bz9stM;VZ)6f2aqr~Cnz=D;0*N|XfmUVMgwFvZ70e>b{Z9k4GoS@5WdW^ zqu|R)njL4NVKQbKLcp=AH~AuT=$xukrUJ!qUxtu@!4?#NHS);kr!i|zK- z;=sO1Wz@;`;lezE3m0ONg*b(mYWIL;z49$PC_mc%OVI$`6P|WWOc{ zIpZMuC0jT`!YDC(5tkU+18$zJ4>#uIkY*qIxgN9BlHr*(%7p0Mn5PuEMvvub%|Xa- z&{tz(yX{=VPh5_0;2Vp0t5?MX@0D1Ynu1@LfO#Ok z#lpesBY^Gc%QK(z^Y3|m4fz*NY12VJ zIYWB9!91WZuA}($X`I7(oIY|078$>Jct(lLq;K{n=wA}y`;&@_l&CZ89JX29Qeh(@Ctiyi+vo2=N7T@?;k+r;BByZ<=4$NaiZ|8)9YQ& zGqxrB*y_0Zy?cK64nSWz6BCt+TGmMRnE3^Sq3EXIpLolR-#ebyN8E)sky)D^u^EW| zO`X;F6B&%S$Sx;|e(7vv*Cgd2VZ|Wjb+V>o#(8?IjVMe#yN-s^burku8-vj6qUc4x>&1r4??0vHM@~!JLn-#jw}eXD+d?~lW)P~9>(EnG zJa_z?nE3oJs}be4#ucAyo}TyY&A^$dRg_;^!)trbqh>WwxbX!2eQUGQ(x~wv8P?3> zOQ^r~6rOn32A1u;$d#sH9`Xhy+DA1Xhj|f4C_3}&-}B^K3jfhF*CAJ^MyArxzWZ*7 zvNtHjo`uq9)SdZ#=F;A*HLF^2y4e)OOi@NxKlq+$SrR>0WAK?|fl*j0;8{B5&OW!1m1mNO_Z!UEX+?vm zvthx{5yr2CPJ11k?mdTR-yLD;&I53dAAmh=!g4qF4tQ7o^*sV_-3i?KEbyU!FX66G zoo&#J#!G*FAA(PR5*FRmGPv>>k0r)X)5@ zmujfIei=P0uE#ZXu2!V#>g+y}U_dHe#`(X0o+Md0AfJCsB<{&k7Bc zHw^5*1l;tNi36*q>g|PMXrn7#K8nYXsssqO*7+M{H*u$(Bke=ipF;Q(ccOU5br2O- z-^}4?9FP;}vf;VAfs2PJZU1Kt6wlQu6R4vZRms6h%w7nv_~64R{^BRKf)cKbA28{< z%)g&*)Wb_y6E!&39f6q4_kVvI6(ybmlwPL4{oJd#T)2RsTY`INhK$(MM!d~No%$YK zWB0y?;ryGgAZm6H7V>Dm_eS7TzW{U3l=}I?gWsn*J)*3~(%#(MT#gJF|2E}CND+F; zsM1?D0n4MvTA7Gb|32ovUlz*2x*eJgNhT7zszJmXtf97J`kcvFt@Ro@mrf(3hq3Q4 zwa% zBks6P4!9dlH4;ZM{uolOrxaN&L!s`b*Cg)#<2jrslFkN^~ zr#I*v&eF~B^lFG3o(b@Q?^4OKVX42-7bMASYze)3ix_%5a&$Lpt{->mJM_QsXDZ+#U40Ge%0CGScvevC;~0 z$Jmo~tQ!s0I58@d+L`pCewimnWdSkfpFwCVRhWzO5R|PLbWfu)h0a77p+_ltog9Fb zL$T|jy}W?-qu+x4uAj_Mu*ogJ8Y#EAMj6HkTGkSL<=y+SF`2`A9=S|GgMm;cuL8I4 zxMQYwtq$OamH}`Y@0xkK=y}Xv9!*uOrT}fU5{-AgA*0IxN^a32?-@}l^>qF_c-mW;a>HPP(0D1%z3D7OlaZWeE{7&F~qw3fi|MNzXh3G;)u!#jFd z2asShC}-ftq=!c-*ZLs~U;TW9k9?_(6Hf&Qok%IfXkpDLCD`Pf>59>E*Z{etiOCmI zxf88IPMmBTbN}6c2K$NUQ9fUXbM_+S z23?n08&0bW>y2}8Pac6|=g_4SqH0`07E2F?v-^=SLT%@ePcp7a`^q-;hyKg0`3}hZs3%i^tACHk3LOuQb)_o#+Q00q&XuVAteOdQ>V_ zxWk_zIoJYJM4?_r$>M6lF2~z*U37vCbb~c2wK|IPFIyvv4B$qJt@Q{5cZ`o8)}6m_ zi>NeW3(w*|=^6O;ulwXP)^POEnnJPZb>}EP+j#dg+QR6uO+*i`fEXM;zoG9N-G4b%Yu3I^>_b5AA23gMatCK>_c|djxT_#yqfh&_QBQ>U)5qo1Dh< zcTUmu`iWJ?hP5HA>hs}!L5aQLzP#_ zZ4>Q+gT?(O=Jyq0PVB>8DjoMy2?aM$ToATXgx{*6@uy!#_pzrDeBgr!ufGu}PpC$w zWM>ct*sORm$k4)>PorR?nKR&2d&uX_?yWaZt9_IoK?k4#>8IDHBrJ2kq3NE@#8;6US{vKr}V76OR(V87-?8h5l{~G-F zzI*$~Km5I51fRa#oIo&&uyAG-l~ePG3ONP2o$T$!^6Jazy>SZWk$t*Dk1LN65${E) z-X29*96p5T#33|4^%-=YdjXw?PAmF2kz^K0RNvA8$ie6zM^Y6ilt^DgJ8i?<%=$SZ z^=EF%`mHx0IQzQlE%nMpbY~{eoti*YuD~ix($^|jY_u`;_;YGYb!Em^$V`8gN&>fp z&KnmHy!ij1S8&ljasaKn?u32IT`-E=gzSwt_sn_otw9-ai>$+=d#=;zb)S5C4ngnQ zGJt!3`pE7%0Gn>W$;k;d!rO@jaE97#qj&y1CFwM#1gC0StTdP-$lBEx@~O!|S)) z2LG$CpnR%Ie>aGUE9J-);4DYC9O&f7NR&X28zU+yRd=3A9i-ec`YHqL_RyjFzV(~G zrW#iIzGd>#jDioZvp3h!S>Hh90cTF^0VZZp>AIMG=qbg6+2c(<$_UJ-o<;5ADRiEC z1o>b19L)VkRPRI%JEANGCDJ?r0XeQp#aX-lBsrk&51s)SZ>RBd$A5aNf+D3Wt|#e% zD?U6|G3)l|UgD6*}da~M%)N!Sljn)|t5hx~=lqVc(3LhsC(KKgFd?+-tCPoAQR zUZj$W3X3-_J-dYcjY+h=^>qky^mP&$dlA_DnnzyOIO}lM1I#{knH*MLt!2AZqvwm0 zI5Kf74m>-L_MiVdM7d1Ue(3d#V(*bd?~SU@n^5!rmwx6r>OMJ2-ma6G^~o)bU$4}r z2)uZU$z}#*rm?TDsplGyhT4LfTit?`EW_nVufJ_`r3@hX`^*Y7S4HKEzlUIP9d?*U z=kaH$Ui>3e{^1u!OJI*m-KCB`$T0b`FbF^Ye*XqseE9q5efF1O%}%RSJ1Y<|OzJ7I zeWsE2?&vMv^VA|r^Ie2g=Q4Y5M5UT$ShjG|x)YT@`!1?c5v@;ujItaPMh63^Krx(& zWcm!l%{>NgwI*H6-8=*N*A%%6g-oCrF$c^<{Naqiq1xP~=WA5w5Uno3n3~0A#?KM_ z;jy4fvLTpE4rGSigiD2PSjWbmeVP%vP*&tI>+iW8y_^U4;Rh&cZ=inSI+%x!z@FHr zMv}k^LU<8(Z-1C12wkv397a z07TBk4LTi4*VzFuOHBgG-l-Fa`x3rAO%Xh&lzn|!N9*hviVBgA=+Tw!UpptESc{_g zWSM+4vO*M`DNHX}Sbp%^DE^(ljVM!-%LoIEJaQ*Z!erNies}-lbFhT3mRT(Llnr&& zR+5qo6CU=M4vPQkVQf74CRRUw586L*J)((%F7yMP;t%f^$Zf74*VC)V_8_>wrBi|d z!yH_*l@g=JZM*_3Sfo3LjU}p~Uwt%e`lol?ZQ-VZwX!8+YBcKUD;N zTbqE2^n#p#1!qT2fbr~}<5SvS=u;kFB}$N9e;|bHDOjV~7Y@l@Wlp~khMUvLtuzOR z3)<~!X|a7)Av2A*Zr;So^%cyXrW=R}OqjBYYDv`t$UuRI2|GoWR3mu}N?6lVB9g+4 z6!EBJC@E_v2=N6wzSXEaebPH=EW+T0ddJ--Bvr1Dz)yfcrC_ zjWNQ}7MZ}{PJobE<)1;X#SO*=uN1pJ1eFR#v62P`C1k^&(AVK6JeOg7&x}&K)qk7k z{*}cI?0<6!A(PM2cUD$go#$Uzpll+%CZqr0J=a~S1duy&0(=peuB+QB*G{l{RXn9+~d+V~AHEyII)xE}AKcFOkXwxG`y& z2<#pvy@RNneg%!kzK7i3_-PFc5<55e;jeQSeE(DP@Tqi-3Z7OSX3!Q#vbMlF<@%4` zxQxAW2FK6PYwMKsj&pMZ){_^|z3*|f%m(J~IRy9bd=AbHH}`Q6+nk4p59-Oo=^hSI^MSD!}rsfXacpURYGbDL6N2qZK@FhEERJ#WoSXki*g z88Z1n7!1@kYJ4n{&B77f0GS&mv`u*RHg108b;WJKpec5Qg}mJ?mB`Vy&D|UW_MLz+ zf~1bWWLXv_E0s*AM_lW9MDz3LH5z^6Q&>P#Z`~<;c9d`}Um=Q*ivD~(DfpQe7hrww z5d`%*!ViBK;^a|{SKq2+*uogP1qXrbs+(R(YlpodHrp+JeN)6W6w7c(wSZ;nG+tT5 z&=_hH-FAQbG;L<63?LPx2$T>eE7nRo#6ja2Ui{X#;D7k1`oN$o)%zoygj&(2^5no% zRTxf=PM^0mEzQKtQ8^%^s;nsvf{S-kg#XYCj{V_dRCC*!;=u_h0J8YWBBF(PwD120 zoZ~lb_Ox>Jgh#a7^q>-;nCtU6q?%tN_`u{)caga$DC=@_IqdO{AYAQY;j8}~){S?- z%umpzZ*P7MY=PJt=_o?D?FPD(5o6zBRURpj7@|QC)u`tmq5%sX3#GX#Zu-uvD6TRY zNM66c^dptB+upagL=GU_O$VSuo}yjqxg)>3hrFF-8CyW=uC5F)4B3+zRh&&rL;Rf} z+I*Alq;bV8G|#+VQ(vaeF%NP##) zO@9ZqXQDOxENvu0q@|o?GNEJ-GyYK&UVaFa zH^RH~4vN$}i28DL^KbUmbxd5O3+5HnyCT&t1Vy!gDYRRdpCxDJ^u*nm z`L~b3I=?|qJV0mK!P1GtFb_?_K6;ZDD&3CXT&6bwoJ(`c2_TU=$1v;CP~;z44NTap zS-KgW>D`#=&#q;n&dSBg~5|&XJBiY;H za-;j~vvb!B1p3&$$9Luc_-5+1Bg~zXTi2lY!Do?t&-Qv~^ShZT7ap3zt#-@}I%_M_;^h!)_=u5DEj(jhTY<_(#35TV*EE zi1UjhHyb_U+qLYMIf5+m3eG8t^@N$KT*&yNskjSS-<~G|j-AJW=03dkm*0Z-?mMmy z7&P>?Lys@OkuE}mN{yJDMUwGzV{4_{MWZNS&+daURe_{3VfD^~SiAYtFwR_{f2@IH z39tP66mgBI>8*`_L@yx!@@rTH21OST4b8Yl$onSqe6?spIjvJrdlM|`a?H6MmDkT; z{tv!@-e-RUf*cpabwv=QAe>>*&q28$?u(czVzaefRaYEL(&N>ezPYM1=hV$y^;CCNo4c(ue78?2TE8c!_{hrz ziy&d02}R$9o=#_FNT;w-SqxGw#YxLF&=woo)Ave`e~EF`d%=&3*G9@*!c9{B5116R)}h1dH2_MWjtF{Es>h-M&{@nZDON58M}f z^l%A{jG=XNod@vtwfLXsopBYcfiIBpfHD4b3gp@)v4naR(a7_x!z~h_iY#ZHZFo(n zbAFfzTeXJNwZ>UvK{Ey+)xC$0a z9CY-iG&xMc(gVz>HY{C`zB~RpFIrc}ie9<<}FSk#kU|>jY8vnWAYFjrjP2 zCJ~6B#P5{ljaJ@m~#|``Q?jh7~#wa_URVw7h&Q0Q8xL z8d!|mgfzuyzUha3*cC{g{eE)cl=H{H6q-2q{yL@eb8}18fiYBr#^*n;1)s8m#u{O1 z!~+6TGGYD?L)U#{8%m^v-GQKwG*qv z<*@xmXz0tG;fXbxe*72IVI@hJH4|+1++Z*oga}g<5wcur!;1$ta4aV-)ojJ+QK+Wq zXn{4ia=XzkA_1X&cZ>;}(j2*4=ho%4fQkAht{u{v!K;@bb>2-$h~QjP&sIH;Mhf5g z$I$5j%yV2Rsa=(czwc6u^rpmo~LLacHeLIv8UKy6tbolnY%H-qdBnUAHUR$p!r$ z22CBFNe}VhyLAfWPOTAOk}>D9rFW43MzK@-q)bq z1|Pj6OSjX8metQ3<@>_BaCT$gXg+5H0q3gAA_0loVyvyVHQMO?Xc471~&TP481Fr3xwP0H1#{39;}H(%cO}7N@f6)wilu{(;@)3$UTLDk>7W zc`XHN-ZfPF7_A^?*}Z|)hUQyoE!7`84+`T`pb6P9I5*jI<)2pRRHk_nR2Zgr+y7C& zPyY@Bbx~auzUTU(Z-_k`;_?nJCxDTPjBuJ4i`lzWhn^JC57sRSCj`fNV!O+kYIu1~ zc>k+;P%H0qM4->a!>vFuaMMcomJlN^ew;ebYr=T{#q%Q;gUK3;!sB@JF(;W)qkQu- zK!mcA2PejtPpcqSJ>2APu_V<76CY99zn`J)fC_`Okxr^kDj?c&I=l_ zO$-$eRQ5N$bH*Z?<0$vsGVPsIyI$#|AZgnSyNAS_|KlsqoGj3sWx%B{s3%7lIM{^D zI~PK44jJ~_JIXrJws4s#i;)XKso2W~h?kAgQh;r9A)k$;dU*vH!ef4y%P2TE7+9s| zsC_s1!;d6Q%(J-~llUZL@++P}6H-4rY_BQRLEHY*RXIn}q*Rqf#r3;c!Ls+ADYf=1 zL2f57HUw_ZB~IY>*_PoWJzrDGI5oOjyb$hmf^S>&Qi*@lKV1EktOJKUe+;CvWL@V% z_-KU(Az)MEg+?*XmIMA1GN-w-wI{6F?{T9mz4;g$P>usGn1m^fvJw^Tv2xaF@%{>N zU%rE-;UqpPV&gdnawB!cYn6njg?ft!T^hLeLBH%a9gN`}Dwf(zJ$5#3`5j15IveL? zj~mkVRS`wnz=Oq24Nwq_Z>PT$B#q3pT1g( z*RS>U3e4nQPTM>2s$F!owAh;87={#lM(v%LaY3HV1c%l8pUGeG<&rl6SqAM2iDNrp zg>H|SYWVby+PoB*$jY&#XYdY>vS#n&VM0UB6iO9*EnyQW>5yl1#J_w_Wxv-SUU7{I z3MvCSZG3whB<2xuvaXjsf+>-wTB`g|FG+lyqPb9C z%pC>XR?p;&=hp}0gTeJj=bLdRZYXM#I;1Yjqz|v$N3?udq;3`E^vt|iolo?c*5r{3 zgBWJkoVgZql>*Q{*HL+Lc8iw?@})%v1&0c#ta1pk9dFSg?Q4Q|NYnhi1=>-J z*`w<%G7Ea1I-78aeR~b`h#zB7WQt;!cM(PUaP~&?E#8sXy{N8v%YRWK-^7?|*O)$a z9Z|$t=nstf8txUTh9xZ8k|p(hppa2uNpdC}5l+qbY|Eoy=+duYR*E2-y9Y^cm=_}f zr|4^3--d*P*Ln|}n$&;GWjA^RnYFUvs;Aw3JBfWtZOp~NdH1wPL#}W$PQ;H@^V2P# z>lgdZsH-LTJ5TCR6RK*5|B{#?ZmfJ~!G?=hpLPBDh0^IKa9Ax62HPI@x2x2@dM4M! z`667Kpf=QB@gss>+%(VY^1|Gw0mH1r59vuIH#zApb*r%wSE8y)%z-W1azwwC$bBgX z(X)mf=drcYu|&M(h=`0Oooudbe(cY;6kFwGurP=u8pJN*F~jpzc);$tX;>U}*d8%R zdR4$m6qa|Zr>(>h`-BD=twdc7cDo9SRbow0VDUQrMJ(4gvCI%0!bV@hKCPnD7RF?X z_~F{gxt$FaG0!<4Kp4Vu=oP%#R@Q`ZCJLxo<(@S6%WViFAEs4_7E%aS;tf`Y{oa1dn)>KOZ zarGRLTX`w$1PVfbL*PlY-f0mDXTcsv_EXe+&7ny`P4P^JRw<^Zf-Z!}U%gdfZQxV< z$Y`{QWOM}naIk-Q;GWmSEp_^le*n#&m&p9#)NR)pdK&OkuzOZ?QcYBK|*v1ex|lzVjFW` ziT%+w^#$bqJ#rt;9aHS)x|*5Io0cA2ESsUh(BYT5&W_T6MLk!?o<|#t0OP~I#g8bw zq*t=)H*pV24cIVZ#s61dROg>F3q|03lIFbh#jlw-RD2>TCklTNi&5{XbixTe!NNec@U9yO2h2{SEF&iQ-Ui6zQeZVsg8O)28TSOyb*lA7!LY`vwaEGbX?)ct+#0?#&tf)9HmE(_B#%2yH$E)8n+n03pWXcno-?upP&krz<7H`zcuI!%@P{s>Z-(3=1_lPg6=;XG z8ij!YiMO;JRX_<`wXiSz!?K;NVD3bCGv zu623LXCs6B!zMg@L%vxD5f@zTRWyq{;D)t{3l{Xt5m1T&R_WX>GNa1h%8qhprs!x2 z8dqdc!nvJqc&cu-9C6XUkmcm|)@7wp4CGWElS~`L@ZdgDmpc56P7LOB3VlC9f6gQo z$BJyf8*-zy{9`)(Hm3E+)Fl|VS*o@w989TxSJyUrZPMmi(DnxK>L#y7igIHQ-gHt6 zVtQ?5Ih+aG6-{_ai<2qiWoKLy@lL;yKNqyBW?~vq9qF zv{SgykNDyoML77dJoxD^~ zJTGe)SjfJonP4!V9!5H-#@Ae`VK;z5f-VrwFHdKG;M5o+i3yIR-VDNVN~F^7l<0E0 zb+!t3RkHt!wvT^E=W_f;fGzR>8$Tdzc?rmh?^;k(6!S{71T)9ZS#$%)s&ut6&t;>O zV|>eIHC!t&49W`>OUXH;vl-iKCWIZzYDwMj@kJi&C5m3Z1uRfC=8R$d&0OoYt3o>5 zawXgkFlM@p-Ibe&3^+PQ*!RIIIbl2*iXE1NKV%4rHw9%fLgK}iE>dwv7#*(tc<1lfpnle`l9EUx;Nf3yqkehMdK4>GqUGOLWeZ0k$PSwbpt zA!x?w%|`}h>G#~A64V}MDA2oE+>PRjKzxY$qO3C>sQB2 zA^GuLiBT79&cllGv^z)DZm^QQ&`Jtp6YCPVkX`MXmX0^`HOu#_(@!S%tlVoC;Ss5) zpsmNvE|Rw?^4x~b@z*lGxd$`Zd=UsZ`axCrv$htu>BogHm=<5E+C=rJ$>T zP6s<#2<8(F?k8;pmT{Fk6P@Ce5+Ylvl)%Ajf0uUDDHVApN zhgHB?|EHG4bJMVge^8~Ed%VkT0{p(`+>w5K5UN zC2JEgI8bnD8@O0UVnhJheI=y60|1b{S!R-ey!5ajK&E$r=;H znNxV1K23=B2dI|VZibYk$Qqu(K>@k4f}8wL?K*S8L8K^lw&hy%axlI}G!n2ul;%c% zJVir6G!V0{C_sjXEZ|v8EEK#MhXiF=MzeXT_TEw@QBh(cRLdR~e{GRCoS9)T5O9 z>jaLTv8v@2&vQC`v_A{K!ry zP*3O3HjF8g-xGxO1|i_*_~7`w(3m*l0lOhJx7T0Um!6@ZNGmF>(A9xQi-6* zuSYO+`RIu9ygA&c^ypH-i6yjO96^a<3DMJ4Ni1fvBF#9{_k1#-5{r&1RjUaGpyfCy za~p9)m^i{WWdXa48imT*h4W%K6RS*FKzo|q70@Ltu>@neE^yP%;{u2HI;S0FXJ&-q zD)Vqeubn#1Him7d@#3qbRg!x0r#xdJOxzaOESewlZrEJADR`+oY-u&y?ugwWPhLOA z%cj`rC&0xNxSlUSy*ZK@l@>_{!tb7xam1D^oxVJ+A<5amMflh3PkdqEsP~#m(yuOZ zYjg%I83Jrq8Br@-*k5r;8U+RH*24y$l-E@o z!ppas(~gUjRVQ9?cGDwsa%BXc+(q&i+PJqU5s_y%OFTAoBEbhwZV{r!uI_3)Ix&-T zT~ohi*jjyC$1&LwrH6iMwJ}$Y{$bK}|CCkIbm9fcLqpv4>i!r5*=(v=b+|A>6i=*6 zN>5np(Z}Qk>A(4iK9FCu_B>{3XzZL_;T+_Oz6V_Tt^sA_NgmN5wt#pz*Re z`k05@tgBAN>AzGY0jYOuuK0QOwt@9@o=qV?|8wY4R%+XjYjrBVbuw!J$bU)xhEuxn zhr|U&juDfZI-AkL!0aa2_-j_AE8@qlJgc2(3x}7;y$T8Aa(Le%4a7Omd3&$##%gyv zwb_aw;#0Bjqs#6nE#}=toITp}Bc>+x(}W_;G0}CLfQc&%5#pwO06Jfk7F!hF5UMsL zKyyN;7aCE=fA}zyECcvA-N$A!;#%wQ+eSAb1)R_+8cWYN%4_#*sZWR@^BzylKA6^Z ziV=dXg{B0lw1p8Xw~oE!H5Pq>q;>4GrS++ZHt{`mgM4@W_h5qV7c?HG!c-5!4+0g3 zLPo`t(J039GF9ydXgSuGmH*T1a2xJ;PMF6Cp%#-7VsaX`-A&{;x0QA*esLdp(I0%S zcy%EPs|t6oz6k=kPN}<63W_JXOLRM3{go^hxm-*J-I5 zrH0Y(%i-uX#D`@Kl^P?hUd-E<5$%kal0<@3!dQc5PEPRiNt zBFwtVH3pg7>8R{!o96gb?Uds7PzX3oUujEs=Z&B^eE?qkGv2!vBdd8xjj4wRD z&^P9dj8$7yVcQtthHc8NQ&^B{MXBnU$nE>p4DI!BZzV-UxwP7MO+@Frde|DM?h=+QlH?=syx}E#YUGFhjVw` z-_S0FQDnRJ1B&9w+o+6L9;eihML}n3a`6cX?1g!Y?zk-1$Lgt6;JjQ4N233b7zKyL zh{`^L?uCgx+>)U0=F?y%Wg50K#HZ7%BCLVB>FGZcaA)Y<^8PTMG0Ao>;UkaDqwI?g z9x3gOA~^_AL3lCqqt9h&zr~W7c_U@oS=F1W1BRFJ zJ5CQ|$apPjP!v6>XLN4dC1!51L>DY|&TPbO9B z3k$!h6GR=k2RI5m=y%mlJ;_9|>{gl&t#5ve%1v4yqcPJe?yY9`a6D@VRCG3pTZ7Tm z3>VES{ooD&=!>g@6@J9Lg->m?ZfY2!VyaS;nd&pS62&J@?$GMZoBG+r=)*NCsB4Y? z%*8BSV^{PHcj-esE*w03+cBc$auZX#rrQ#O+0tvB!8Pi2!Kutg_#i$cpuxg-+j1#A zU0!3*4Htn}^KE{ZsG-Gf+5c;l*~*V{tM@09t$sjb;p7m_E;-;SVLgmf>IAEQddl&< z?LIg+*WYYa&2o@1F=Ehe!L$9iygdy z;gBk=6UZ97-d2wftiL<0Zb80}zN6y4Iluq1p0=&dTPnAu9B;|8=>G~VYaKEdwes0l zBj;N9?JM2tz|frln6>S^^=URdq9N!TwwaVOPcjnaMAXX1-7d8HyNIp7INW_26f>kZ zBfXY*;J~K0qZzQNX5Yyk6W3bseH0IvX*-tr3x`FSo>!ZS`&7j8ccor*NF9m%nijZH zD(aYrtB;j$`oX{Vn3zH48diE=8_ZWTD<)5Ex%{_Ta?!cfLT>Y~qB|nb`6{@O3r6(1 zsxn^lEE&n9Fj$4dhnsH-1|LrJH6yrw`gOs0!~XSdCfoOTQNLp|=rjPTk+x5`-bi32 zs~b{cHJfHwfL2rpFdFHN$EMz8Uf6Qyu@W`Pk;@7~>sC`+Uj%-l-AzeTKZr4-H3SD! z+_sE;TdLE-t@4lfdy-y&>SQ$OD6&b zfT;?Yb(AjqigmD@wBd>oA}z3|8uj|m37*Uin11(tW^^CxR|l?p6JBa()AB3Zdym?C za7H#axmW-Qnof|z7i?sDtvezus0Yt=&Aov8gV39e2c5SBDm<08*YS5F9ed3Cxi*?c z+9yt$k{;;AB0nHKK@&ECSC|^m>K!_JCBU|6cysN>ppyoDOzseu8~8G?Ey$18Y#En~ zIDzn&r0~2~KTW`dVI6qUsH?7|+Tf9Tbq|o35ZFl|^5)xN$4^P<(jO8#{e9iOLR$esTNdKwJ&m&;7iBhs#B=?i}gOY^|NO zd;7qF0BqD0BMk^Ct2%DAfRSbiO5s3uc$@W-^9#pl`ZoqhLUG=%rm)e3%2LYQaZoTa zNB3JHMcdl^qOJBNoC#}{#f#2UD--G3Yc}cBt8YzS(fZJkQ17QqUc`*XruA#G3u-*YG9cnein8|E{~o(~eD6QYe{#D^>9OXz85_-l$uc-C3rwiw+de zcjjuZ$lx0@XMBSyFM&MXb3r;6{_w$xhxsDItJ9TsMuFiumDZ&kH~<%mLmtFqmUDZMoYR`iVb-u@S^$M zq`iG1F2`jiUCxU>`DJVj^8SRQaVORoKJ)hY{^zAM>!PM4oaMB&!)8S@of!9O?H_wW z=PSDS#71m?Cc~J?c<0gFJMn)^L+-LZD$ zxt=_F!b4O?bP^N2L*P`gGf(vCV!ftBk7AtJbQ8~;!)_m^nV};sDR>3QDds^zto`6a`jwN2~aN{A9FPe5BRxB*80 z;LkSv*f$wzG+0U8uTCP`I@V%qxz@2>!dfRc`J^u{+~ZiRDMmlH=J3@RvG3{qBtxKF zqIKjD+a)BRBQdWsiPqZew(I#)ZaMayhOP%CheaoPIRDU739Pv{Gi1>7!?^C)3SCwI zxIpfh$@^RjaEZZeIiSU#V4uIfC1hbX8fwh#y4~1Dbw(l?9DK$FLu&YlJqkI6t1<0l zA`rdmMm$&6dB{jtxtWRf99_5n`8&@qfGU>2MBPce5w_49!N+Nv({4h1jH@3paD$>m zmFd3%-qYx!&kEUK|Jk>5>+40GmWzV}W*=W-5qZPYazh8rcJUi(yZ!(r5@=cBJ*MDO z`+s!ok%(P=@-Uspghs2Vg@(|hY|D=JuU+PoNWsqHw^TUs3wcU6uJ4?0AO7Ze2TU#A z{MKW_cXAZ=U(%Wl1ArC$a-1}d;AMhp6}=r`fw_^oA6$mJ$t_WEZuLqGf#6AY5H~2K z#g4drmfIvCp0vA(kHr5DP||FVk*A;%03z+=w;VN6LRnL^?eNf4Bkp!>%~Sc#8N=#U zj9koID@D`&NVL|{FoaETCosrVU*+mGitnD&-P=HopW)JgQ;KJ?KrQR1X%?Ou?d`+m z5)hwQ?goQmYt`SM+KwyO=21SWcReBL<#AU_tL!K7uEhFDo_5t@D}5x7ZG3j<)neVB z^y(zsF?;Ql5bCSJyr)<}@cs8swb|xy6dowX$QKQ^HOBajjWtr)!&#=-?0@=K#m%(*q&-`xTk_{NM*LM`HiDe;^bJ zx#IW$%b(&C{|7KWp6~;B!R(rUfLb_0^8W$S?hnSU`5Dar82@k7D@oC};7^D!JZBUU Ug61;AFds)wT3M<}!sN&Q0sO3crvLx| diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png.meta b/JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png.meta deleted file mode 100644 index 262defd5..00000000 --- a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/bepuphysicslogo256.png.meta +++ /dev/null @@ -1,140 +0,0 @@ -fileFormatVersion: 2 -guid: e408c137718b826488a2a60c35e88a4b -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - flipGreenChannel: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMipmapLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 0 - wrapV: 0 - wrapW: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - swizzle: 50462976 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Server - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - mipmapLimitGroupName: - pSDRemoveMatte: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.dll b/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.dll deleted file mode 100644 index 0701746e153866ee010362c20539fd5ccf3e9c0e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128512 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 - - - BepuUtilities - - - - - A transformation composed of a linear transformation and a translation. - - - - - Translation in the affine transform. - - - - - Linear transform in the affine transform. - - - - - Gets the identity affine transform. - - - - - Constructs a new affine transform. - - Translation to use in the transform. - - - - Constructs a new affine tranform. - - Orientation to use as the linear transform. - Translation to use in the transform. - - - - Constructs a new affine transform. - - Scaling to apply in the linear transform. - Orientation to apply in the linear transform. - Translation to apply. - - - - Constructs a new affine transform. - - The linear transform component. - Translation component of the transform. - - - - Transforms a vector by an affine transform. - - Position to transform. - Transform to apply. - Transformed position. - - - - Inverts an affine transform. - - Transform to invert. - Inverse of the transform. - - - - Inverts a rigid transform. - - Transform to invert. - Inverse of the transform. - - - - Multiplies a transform by another transform. - - First transform. - Second transform. - Combined transform. - - - - Provides XNA-like axis-aligned bounding box functionality. - - - - - Location with the lowest X, Y, and Z coordinates in the axis-aligned bounding box. - - - - - Location with the highest X, Y, and Z coordinates in the axis-aligned bounding box. - - - - - Constructs a bounding box from the specified minimum and maximum. - - Location with the lowest X, Y, and Z coordinates contained by the axis-aligned bounding box. - Location with the highest X, Y, and Z coordinates contained by the axis-aligned bounding box. - - - - Determines if a bounding box intersects another bounding box. - - First bounding box to test. - Second bounding box to test. - Whether the bounding boxes intersected. - - - - Determines if a bounding box intersects another bounding box. - - First bounding box to test. - Second bounding box to test. - Whether the bounding boxes intersected. - - - - Computes the volume of the bounding box. - - Bounding box to measure. - Volume of the bounding box. - - - - Computes a bounding box which contains two other bounding boxes. - - Minimum of the first bounding box to merge. - Maximum of the first bounding box to merge. - Minimum of the second bounding box to merge. - Maximum of the second bounding box to merge. - Minimum of the merged bounding box. - Maximum of the merged bounding box. - - - - Computes a bounding box which contains two other bounding boxes. - - First bounding box to contain. - Second bounding box to contain. - Bounding box to contain both input boxes. - - - - Determines if a bounding box intersects a bounding sphere. - - Sphere to test for intersection. - Whether the bounding shapes intersect. - - - - Creates the smallest possible bounding box that contains a list of points. - - Points to enclose with a bounding box. - Bounding box which contains the list of points. - - - - Creates a bounding box from a bounding sphere. - - Bounding sphere to be used to create the bounding box. - Bounding box created from the bounding sphere. - - - - Creates a string representation of the bounding box. - - String representation of the bounding box. - - - - Provides XNA-like bounding sphere functionality. - - - - - Location of the center of the sphere. - - - - - Radius of the sphere. - - - - - Constructs a new bounding sphere. - - Location of the center of the sphere. - Radius of the sphere. - - - - Some helpers for indexing into vector bundles. - - - - - .Count.]]> - - The JIT recognizes that this value is constant! - - - - > VectorShift divides x by Vector.Count.]]> - - The JIT recognizes that this value is constant! - - - - Enumerable wrapper of an array interval. - - Type of the array elements. - - - - Creates a enumerable that spans an interval in an array. - - Array to iterate over. - Inclusive beginning of the iteration interval. - Exclusive end of the iteration interval. - - - - Creates a enumerable that starts at the first index of the array. - - Array to iterate over. - Exclusive end of the iteration interval. - - - - Creates a enumerable over the entire array. - - Array to iterate over. - - - - Enumerates over a given array region. - - Type of the array to iterate over. - - - - Defines a type capable of comparing two objects passed by reference. - - Type of the objects to compare. - - - - Defines a type capable of performing the hashing and equality comparisons necessary for hash based collections. - - Type of the elements to be hashed and compared. - - - - Collection of unique indices supporting add, remove, and contains operations. - - - - - Since we only ever need to support add, remove and contains checks, and because the indices are guaranteed unique, - we can just use packed bitfields. Each bit represents one index's containment state. - - - This can grow up to the number of (indexCount / 8) bytes in the worst case, but that is much, much smaller than using a dictionary or set. - 16384 bodies would only take 2KB. Even if you have 1000 batches all at that size, it's a pretty unconcerning amount of storage. - (And to be clear, 1000 batches is a crazy pathological number. Most simulations will have less than 20 batches.) - - - - - Gets whether the batch could hold the specified indices. - - List of indices to check for in the batch. - True if none of the indices are present in the set, false otherwise. - - - - Disposes the internal buffer. - - The instance can be reused after a Dispose if EnsureCapacity or Resize is called. - That's a little meaningless given that the instance is a value type, but hey, you don't have to new another one, that's something. - - - - Defines a type able to match an element. - - Type of the object to match. - - - - Sorts a set of keys and their associated values using radix sort. - - Only one invocation of the sort can be running at a time on a given instance of the sorter. - Type of the values to sort. - Type of the span that holds the keys to sort. - Type of the span that holds the values to sort. - Span containing the keys to sort. - Span containing the values to sort. - Scratch array to write temporary results into. - Scratch array to write temporary results into. - Start location of the sort. - Number of elements, including the start index, to sort. - Value equal to or greater than the value of any key within the sorted key set. Tighter bounds can allow faster execution. - Pool to pull temporary buffers from. - Span containing the sorted keys. Will be either the input keys span or scratchKeys span depending on the keysUpperBound. - Span containing the sorted values. Will be either the input values span or scratchValues span depending on the keysUpperBound. - Only the region defined by the startIndex and count is modified; the remainder of the span (whether it be the input span or the scratch span) is unmodified. - - - - Provides optimized equality testing, comparison, and hashing for primitive types. - - Type to compare and hash. - - - - Contains basic helpers for hashing. - - - - - Redistributes a hash. Useful for converting unique but contiguous hashes into a semirandom distribution. - - Hash to redistribute. - Hashed hash. - - - - Container supporting constant time adds and removes of key-value pairs while preserving fast iteration times. - Offers very direct access to information at the cost of safety. - - - - Be very careful when using this type. It has sacrificed a lot upon the altar of performance; a few notable issues include: - it is a value type and copying it around will break things without extreme care, - it cannot be validly default-constructed, - it exposes internal structures to user modification, - it rarely checks input for errors, - the enumerator doesn't check for mid-enumeration modification, - it allows unsafe addition that can break if the user doesn't manage the capacity, - it works on top of an abstracted memory blob which might internally be a pointer that could be rugpulled, - it does not (and is incapable of) checking that provided memory gets returned to the same pool that it came from. - - Note that the implementation is extremely simple. It uses single-step linear probing under the assumption of very low collision rates. - A generous table capacity is recommended; this trades some memory for simplicity and runtime performance. - Type of key held by the container. - Type of value held by the container. - Type of the equality tester and hash calculator used. - - - - Gets the number of elements in the dictionary. - - - - - Mask for use in performing fast modulo operations for hashes. Requires that the table span is a power of 2. - - - - - Desired size of the table relative to the size of the key/value spans in terms of a power of 2. Table capacity target will be elementCapacityTarget * 2^TablePowerOffset. - - - - - Backing memory of the dictionary's table. Values are distributed according to the EqualityComparer's hash function. - Slots containing 0 are unused and point to nothing. Slots containing higher values are equal to one plus the index of an element in the Span. - - - - - Backing memory containing the keys of the dictionary. - Indices from 0 to Count-1 hold actual data. All other data is undefined. - - - - - Backing memory containing the values of the dictionary. - Indices from 0 to Count-1 hold actual data. All other data is undefined. - - - - - Equality comparer used to compare and hash keys. - - - - - Gets or sets a key-value pair at the given index in the list representation. - - Index to grab a pair from. - Pair at the given index in the dictionary. - - - - Creates a new dictionary. - - Span to use as backing memory of the dictionary keys. - Span to use as backing memory of the dictionary values. - Span to use as backing memory of the table. Must be zeroed. - Comparer to use for the dictionary. - Target size of the table relative to the number of stored elements. - - - - Creates a new dictionary with a default constructed comparer. - - Span to use as backing memory of the dictionary keys. - Span to use as backing memory of the dictionary values. - Span to use as backing memory of the table. Must be zeroed. - Comparer to use for the dictionary. - Target size of the table relative to the number of stored elements. - - - - Creates a new dictionary. - - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - Target capacity relative to the initial capacity in terms of a power of 2. The size of the initial table buffer will be at least 2^tableSizePower times larger than the initial capacity. - Comparer to use in the dictionary. - Pool used for spans. - - - - Creates a new dictionary with a default constructed comparer. - - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - Target capacity relative to the initial capacity in terms of a power of 2. The size of the initial table buffer will be at least 2^tableSizePower times larger than the initial capacity. - Comparer to use in the dictionary. - Pool used for spans. - - - - Creates a new dictionary with a default constructed comparer. - - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - Comparer to use in the dictionary. - Pool used for spans. - - - - Swaps out the dictionary's backing memory span for a new span. - If the new span is smaller, the dictionary's count is truncated and the extra elements are dropped. - The old span is not cleared or returned to any pool; if it needs to be pooled or cleared, the user must handle it. - - New span to use for keys. - New span to use for values. - New span to use for the table. Must be zeroed. - Previous span used for keys. - Previous span used for values. - Previous span used for the table. - - - - Resizes the dictionary's backing array for the given size. - If the new span is smaller, the dictionary's count is truncated and the extra elements are dropped. - - Minimum size of the new object memory block. Actual size may be larger. - Pool used for spans. - - - - Returns the resources associated with the dictionary to pools. - - Pool used for key spans. - Pool used for value spans. - Pool used for table spans. - Type of the pool used for key spans. - Type of the pool used for value spans. - Type of the pool used for table spans. - - - - Ensures that the dictionary has enough room to hold the specified number of elements. - - Pool used for spans. - Number of elements to hold. - - - - Shrinks the internal buffers to the smallest acceptable size and releases the old buffers to the pools. - - Pool used for spans. - - - - Gets the index of the element in the table. - - Element to look up. - Index of the element in the redirect table, or if it is not present, the index of where it would be added. - The index of the element in the element arrays, if it exists; -1 otherwise. - True if the element is present in the dictionary, false if it is not. - - - - Gets the index of the key in the dictionary values list if it exists. - - Key to get the index of. - The index of the key if the key exists in the dictionary, -1 otherwise. - - - - Gets the index of the key in the dictionary values list if it exists. - - Key to get the index of. - The index of the key if the key exists in the dictionary, -1 otherwise. - - - - Checks if a given key already belongs to the dictionary. - - Key to test for. - True if the key already belongs to the dictionary, false otherwise. - - - - Checks if a given key already belongs to the dictionary. - - Key to test for. - True if the key already belongs to the dictionary, false otherwise. - - - - Tries to retrieve the value associated with a key if it exists. - - Key to look up. - Value associated with the specified key. - True if a value was found, false otherwise. - - - - Tries to retrieve the value associated with a key if it exists. - - Key to look up. - Value associated with the specified key. - True if a value was found, false otherwise. - - - - Attempts to find the index of the given key. If it is present, outputs the index and returns true. If it is not present, it allocates a slot for it, outputs the index of that new slot, and returns false. - If a new slot is allocated, the value stored in the slot is undefined. - - Key to find or allocate a slot for. - Index of the found or allocated slot. - True if the key was already present in the dictionary, false otherwise. - - - - Attempts to find the index of the given key. If it is present, outputs the index and returns true. If it is not present, it allocates a slot for it, outputs the index of that new slot, and returns false. - If a new slot is allocated, the value stored in the slot is undefined. - - Key to find or allocate a slot for. - Index of the found or allocated slot. - True if the key was already present in the dictionary, false otherwise. - - - - Attempts to find the index of the given key. If it is present, outputs the index and returns true. If it is not present, it allocates a slot for it, outputs the index of that new slot, and returns false. - If a new slot is allocated, the value stored in the slot is undefined. - - Key to find or allocate a slot for. - Pool used to resize the container if necessary to allocate. - Index of the found or allocated slot. - True if the key was already present in the dictionary, false otherwise. - - - - Attempts to find the index of the given key. If it is present, outputs the index and returns true. If it is not present, it allocates a slot for it, outputs the index of that new slot, and returns false. - If a new slot is allocated, the value stored in the slot is undefined. - - Key to find or allocate a slot for. - Pool used to resize the container if necessary to allocate. - Index of the found or allocated slot. - True if the key was already present in the dictionary, false otherwise. - - - - Adds a pair to the dictionary. If a version of the key (same hash code, 'equal' by comparer) is already present, - the existing pair is replaced by the given version. - - Key of the pair to add. - Value of the pair to add. - True if the pair was added to the dictionary, false if the key was already present and its pair was replaced. - - - - Adds a pair to the dictionary. If a version of the key (same hash code, 'equal' by comparer) is already present, - the existing pair is replaced by the given version. - - Key of the pair to add. - Value of the pair to add. - True if the pair was added to the dictionary, false if the key was already present and its pair was replaced. - - - - Adds a pair to the dictionary if it is not already present. - - Key of the pair to add. - Value of the pair to add. - True if the pair was added to the dictionary, false if the key was already present. - - - - Adds a pair to the dictionary if it is not already present. - - Key of the pair to add. - Value of the pair to add. - True if the pair was added to the dictionary, false if the key was already present. - - - - Adds a pair to the dictionary. If a version of the key (same hash code, 'equal' by comparer) is already present, - the existing pair is replaced by the given version. - - Key of the pair to add. - Value of the pair to add. - Pool used for spans. - True if the pair was added to the dictionary, false if the key was already present and its pair was replaced. - - - - Adds a pair to the dictionary. If a version of the key (same hash code, 'equal' by comparer) is already present, - the existing pair is replaced by the given version. - - Key of the pair to add. - Value of the pair to add. - Pool used for spans. - True if the pair was added to the dictionary, false if the key was already present and its pair was replaced. - - - - Adds a pair to the dictionary if it is not already present. - - Key of the pair to add. - Value of the pair to add. - Pool used for spans. - Type of the pool used for spans. - True if the pair was added to the dictionary, false if the key was already present. - - - - Adds a pair to the dictionary if it is not already present. - - Key of the pair to add. - Value of the pair to add. - Pool to pull resources from and to return resources to. - Type of the pool to use. - True if the pair was added to the dictionary, false if the key was already present. - - - - Removes an element from the dictionary according to its table and element index. Can only be used if the table and element index are valid. - - Index of the table entry associated with the existing element to remove. - Index of the existing element to remove in the contiguous key/value arrays. - - - - Removes a pair associated with a key from the dictionary if belongs to the dictionary. - Does not preserve the order of elements in the dictionary. - - Key of the pair to remove. - True if the key was found and removed, false otherwise. - - - - Removes a pair associated with a key from the dictionary if belongs to the dictionary. - Does not preserve the order of elements in the dictionary. - - Key of the pair to remove. - True if the key was found and removed, false otherwise. - - - - Removes all elements from the dictionary. - - - - - Removes all elements from the dictionary without modifying the contents of the keys or values arrays. - - - - - Gets the keys and values wrapped in spans. - - Keys from the dictionary. - Values from the dictionary. - - - - Container supporting list-like behaviors built on top of unmanaged buffers. - - - Be very careful when using this type. It has sacrificed a lot upon the altar of performance; a few notable issues include: - it is a value type and copying it around will break things without extreme care, - it cannot be validly default-constructed, - it exposes internal structures to user modification, - it rarely checks input for errors, - the enumerator doesn't check for mid-enumeration modification, - it allows unsafe addition that can break if the user doesn't manage the capacity, - it works on top of an abstracted memory blob which might internally be a pointer that could be rugpulled, - it does not (and is incapable of) checking that provided memory gets returned to the same pool that it came from. - - Type of the elements in the list. - - - - Backing memory containing the elements of the list. - Indices from 0 to Count-1 hold actual data. All other data is undefined. - - - - - Number of elements in the list. - - - - - Gets a reference to the element at the given index in the list. - - Index to grab an element from. - Element at the given index in the list. - - - - Gets a pointer to the element at the given index in the list. - - Index to grab an element pointer from. - Pointer to the element at the given index in the list. - - - - Creates a new list. - - Span to use as backing memory to begin with. - - - - Creates a new list. - - Pool to pull a span from. - The minimum size of the region to be pulled from the pool. Actual span may be larger. - - - - Swaps out the list's backing memory span for a new span. - If the new span is smaller, the list's count is truncated and the extra elements are dropped. - The old span is not cleared or returned to any pool; if it needs to be pooled or cleared, the user must handle it. - - New span to use. - Previous span used for elements. - - - - Resizes the list's backing array for the given size. - Any elements that do not fit in the resized span are dropped and the count is truncated. - - Minimum number of elements required in the new backing array. Actual capacity of the created span may exceed this size. - Pool to pull a new span from and return the old span to. - - - - Returns the resources associated with the list to pools. Any managed references still contained within the list are cleared (and some unmanaged resources may also be cleared). - - Pool used for element spans. - - - - Ensures that the list has enough room to hold the specified number of elements. Can be used to initialize a list. - - Number of elements to hold. - Pool used to obtain a new span if needed. - - - - Compacts the internal buffer to the minimum size required for the number of elements in the list. - - - - - Adds the elements of a buffer to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a buffer to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Adds the elements of a buffer to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a buffer to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Adds the elements of a span to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a span to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Adds the elements of a span to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a span to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Adds the elements of a span to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a span to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Adds the elements of a span to the QuickList without checking capacity. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - - - - Adds the elements of a span to the QuickList. - - Span of elements to add. - Start index of the added range. - Number of elements in the added range. - Pool used to obtain a new span if needed. - - - - Appends space on the end of the list without checking capacity and returns a reference to it. - - Reference to the allocated space. - - - - Appends space on the end of the list without checking capacity and returns a reference to the beginning of it. - - Number of elements to allocate space for. - Reference to the beginning of the allocated space. - - - - Appends space on the end of the list and returns a reference to it. - - Reference to the allocated space. - Pool used to obtain a new span if needed. - - - - Appends space on the end of the list and returns a reference to the beginning of it. - - Reference to the beginning of the allocated space. - Number of elements to allocate space for. - Pool used to obtain a new span if needed. - - - - Adds the element to the list without checking the count against the capacity. - - Item to add. - - - - Adds the element to the list. - - Item to add. - Pool used to obtain a new span if needed. - - - - Gets the index of the element in the list using the default comparer, if present. - - Element to find. - Index of the element in the list if present, -1 otherwise. - - - - Gets the index of the element in the list using the default comparer, if present. - - Element to find. - Index of the element in the list if present, -1 otherwise. - - - - Gets the index of the first element in the list which matches a predicate, if any. - - Predicate to match. - Index of the first matching element in the list if present, -1 otherwise. - - - - Removes an element from the list. Preserves the order of elements. - - Element to remove from the list. - True if the element was present and was removed, false otherwise. - - - - Removes an element from the list. Preserves the order of elements. - - Element to remove from the list. - True if the element was present and was removed, false otherwise. - - - - Removes the first element that matches a predicate from the list. Preserves the order of elements. - - Predicate to test elements with. - True if an element matched and was removed, false otherwise. - - - - Removes an element from the list. Does not preserve the order of elements. - - Element to remove from the list. - True if the element was present and was removed, false otherwise. - - - - Removes an element from the list. Comparisons use the default comparer for the type. Does not preserve the order of elements. - - Element to remove from the list. - True if the element was present and was removed, false otherwise. - - - - Removes the first element from the list that matches a predicate, moving from low to high indices. Does not preserve the order of elements. - - Predicate to test elements with. - True if an element matched and was removed, false otherwise. - - - - Removes an element from the list at the given index. Preserves the order of elements. - - Index of the element to remove from the list. - - - - Removes an element from the list at the given index. Does not preserve the order of elements. - - Index of the element to remove from the list. - - - - Removes and outputs the last element in the list. Assumes positive count. User is responsible for guaranteeing correctness. - - Last element of the list. - - - - Removes and outputs the last element in the list if it exists. - - Last element of the list. - True if the element existed and was removed, false otherwise. - - - - Determines whether the contains a specific value. - - - true if is found in the ; otherwise, false. - - The object to locate in the . - - - - Determines whether the collection contains a specific value. - - - True if is found in the collection; otherwise, false. - - The object to locate in the collection. - - - - Determines whether the collection contains an element that matches a predicate. - - - True if an element matching the predicate exists, otherwise false. - - The predicate to test against elements in the list. - - - - Clears the list by setting the count to zero and explicitly setting all relevant indices in the backing array to default values. - - - - - Container supporting double ended queue behaviors built on top of pooled arrays. - - - Be very careful when using this type. It has sacrificed a lot upon the altar of performance; a few notable issues include: - it is a value type and copying it around will break things without extreme care, - it cannot be validly default-constructed, - it exposes internal structures to user modification, - it rarely checks input for errors, - the enumerator doesn't check for mid-enumeration modification, - it allows unsafe addition that can break if the user doesn't manage the capacity, - it works on top of an abstracted memory blob which might internally be a pointer that could be rugpulled, - it does not (and is incapable of) checking that provided memory gets returned to the same pool that it came from. - - Type of the elements in the queue. - - - - Number of elements in the queue. - - - - - Index of the first element in the queue. - - - - - Index of the last element in the queue. - - - - - Mask based on the current span length used to do fast modulo operations; requires that the span has a power of 2 length. - - - - - Gets the backing memory containing the elements of the queue. - Indices from FirstIndex to LastIndex inclusive hold actual data. All other data is undefined. - Watch out for wrap around; LastIndex can be less than FirstIndex even when count > 0! - - - - - Gets the backing array index for the logical queue index. - - Index in the logical queue. - The index in in the backing array corresponding to the given logical queue index. - - - - Gets an element at the given index in the queue. - 0 gets the element at the FirstIndex. Count-1 would get the element at LastIndex. - - Index to grab an element from. - Element at the given index in the queue. - - - - Creates a new queue. - - Span to use as backing memory to begin with. - - - - Creates a new queue. - - Pool to pull a span from. - The minimum size of the region to be pulled from the pool. Actual span may be larger. - - - - Swaps out the queue's backing memory span for a new span. - If the new span is smaller, the queue's count is truncated and the extra elements are dropped. - The old span is not cleared or returned to any pool; if it needs to be pooled or cleared, the user must handle it. - - New span to use. - Previous span used for elements. - - - - Resizes the queue's backing array for the given size. - Any elements that do not fit in the resized span are dropped and the count is truncated. - - Minimum number of elements required in the new backing array. Actual capacity of the created span may exceed this size. - Pool to pull a new span from and return the old span to. - - - - Returns the resources associated with the queue to pools. Any managed references still contained within the queue are cleared (and some unmanaged resources may also be cleared). - - Pool used for element spans. - - - - Ensures that the queue has enough room to hold the specified number of elements. - - Number of elements to hold. - Pool to pull a new span from and return the old span to. - - - - Compacts the internal buffer to the minimum size required for the number of elements in the queue. - - Pool to pull from if necessary. - - - - Enqueues the element to the end of the queue, incrementing the last index. - - Item to enqueue. - - - - Enqueues the element to the start of the queue, decrementing the first index. - - Item to enqueue. - - - - Enqueues the element to the end of the queue, incrementing the last index. - - Item to enqueue. - - - - Enqueues the element to the start of the queue, decrementing the first index. - - Item to enqueue. - - - - Dequeues an element from the start of the queue, incrementing the first index. - - Element removed from the queue. - - - - Dequeues an element from the end of the queue, decrementing the last index. - - Element removed from the queue. - - - - Attempts to dequeue an element from the start of the queue, incrementing the first index. - - Element removed from the queue, if any. - True if an element was available to remove, false otherwise. - - - - Attempts to dequeue an element from the end of the queue, decrementing the last index. - - Element removed from the queue, if any. - True if an element was available to remove, false otherwise. - - - - Removes the element at the given index, preserving the order of the queue. - - Index in the queue to remove. The index is in terms of the conceptual queue, not the backing array. - - - - Clears the queue by setting the count to zero and explicitly setting all relevant indices in the backing array to default values. - - - - - Clears the queue without changing any of the values in the backing array. Be careful about using this if the queue contains reference types. - - - - - Container supporting constant time adds and removes while preserving fast iteration times. - Offers very direct access to information at the cost of safety. - - - - Be very careful when using this type. It has sacrificed a lot upon the altar of performance; a few notable issues include: - it is a value type and copying it around will break things without extreme care, - it cannot be validly default-constructed, - it exposes internal structures to user modification, - it rarely checks input for errors, - the enumerator doesn't check for mid-enumeration modification, - it allows unsafe addition that can break if the user doesn't manage the capacity, - it works on top of an abstracted memory blob which might internally be a pointer that could be rugpulled, - it does not (and is incapable of) checking that provided memory gets returned to the same pool that it came from. - - Note that the implementation is extremely simple. It uses single-step linear probing under the assumption of very low collision rates. - A generous table capacity is recommended; this trades some memory for simplicity and runtime performance. - Type of element held by the container. - Type of the equality tester and hash calculator used. - - - - Gets the number of elements in the set. - - - - - Mask for use in performing fast modulo operations for hashes. Requires that the table span is a power of 2. - - - - - Desired size of the table relative to the size of the key/value spans in terms of a power of 2. Table capacity target will be elementCapacityTarget * 2^TablePowerOffset. - - - - - Backing memory of the set's table. Values are distributed according to the EqualityComparer's hash function. - Slots containing 0 are unused and point to nothing. Slots containing higher values are equal to one plus the index of an element in the Span. - - - - - Backing memory containing the elements of the set. - Indices from 0 to Count-1 hold actual data. All other data is undefined. - - - - - Equality comparer used to compare and hash elements. - - - - - Gets or sets an element at the given index in the list representation of the set. - - Index to grab an element from. - Element at the given index in the set. - - - - Creates a new set. - - Span to use as backing memory of the set elements. - Span to use as backing memory of the table. Must be zeroed out. - Comparer to use for the set. - Target size of the table relative to the number of stored elements. - - - - Creates a new set using a default constructed equality comparer. - - Span to use as backing memory of the set elements. - Span to use as backing memory of the table. Must be zeroed. - Target size of the table relative to the number of stored elements. - - - - Creates a new set. - - Pool to pull spans from. - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - Target capacity relative to the initial capacity in terms of a power of 2. The size of the initial table buffer will be at least 2^tableSizePower times larger than the initial capacity. - Comparer to use in the set. - - - - Creates a new set with a default constructed comparer. - - Pool to pull spans from. - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - Target capacity relative to the initial capacity in terms of a power of 2. The size of the initial table buffer will be at least 2^tableSizePower times larger than the initial capacity. - - - - Creates a new set with a default constructed comparer. - - Pool to pull spans from. - Initial target size of the key and value spans. The size of the initial buffer will be at least as large as the initialCapacity. - - - - Swaps out the set's backing memory span for a new span. - If the new span is smaller, the set's count is truncated and the extra elements are dropped. - The old span is not cleared or returned to any pool; if it needs to be pooled or cleared, the user must handle it. - - New span to use for elements. - New span to use for the table. Must be zeroed. - Previous span used for elements. - Previous span used for the table. - - - - Resizes the set's backing array for the given size. - If the new span is smaller, the set's count is truncated and the extra elements are dropped. - - Minimum size of the new object memory block. Actual size may be larger. - Pool to take spans from. - - - - Returns the resources associated with the set to pools. Any managed references still contained within the set are cleared (and some unmanaged resources may also be cleared). - - Pool used for element spans. - - - - Ensures that the set has enough room to hold the specified number of elements. - - Pool used for spans. - Number of elements to hold. - - - - Shrinks the internal buffers to the smallest acceptable size and releases the old buffers to the pools. - - Element to add. - Pool used for spans. - - - - Gets the index of the element in the table. - - Element to look up. - Index of the element in the redirect table, or if it is not present, the index of where it would be added. - The index of the element in the elements array, if it exists; -1 otherwise. - True if the element is present in the set, false if it is not. - - - - Gets the index of the element in the set if it exists. - - Element to get the index of. - The index of the element if the element exists in the set, -1 otherwise. - - - - Gets the index of the element in the set if it exists. - - Element to get the index of. - The index of the element if the element exists in the set, -1 otherwise. - - - - Checks if a given element already belongs to the set. - - Element to test for. - True if the element already belongs to the set, false otherwise. - - - - Checks if a given element already belongs to the set. - - Element to test for. - True if the element already belongs to the set, false otherwise. - - - - Adds an element to the set. If a version of the element (same hash code, 'equal' by comparer) is already present, - it is replaced by the given version. - Does not resize in the event that the capacity is exceeded. - - Element to add. - True if the element was added to the set, false if the element was already present and was instead replaced. - - - - Adds an element to the set. If a version of the element (same hash code, 'equal' by comparer) is already present, - it is replaced by the given version. - Does not resize in the event that the capacity is exceeded. - - Element to add. - True if the element was added to the set, false if the element was already present and was instead replaced. - - - - Adds an element to the set if it is not already present. - Does not resize in the event that the capacity is exceeded. - - Element to add. - True if the element was added to the set, false if the element was already present. - - - - Adds an element to the set if it is not already present. - Does not resize in the event that the capacity is exceeded. - - Element to add. - True if the element was added to the set, false if the element was already present. - - - - Adds an element to the set. If a version of the element (same hash code, 'equal' by comparer) is already present, - it is replaced by the given version. - - Element to add. - Pool used for spans. - True if the element was added to the set, false if the element was already present and was instead replaced. - - - - Adds an element to the set if it is not already present. - - Element to add. - Pool used for spans. - True if the element was added to the set, false if the element was already present. - - - - Adds an element to the set. If a version of the element (same hash code, 'equal' by comparer) is already present, - it is replaced by the given version. - - Element to add. - Pool used for spans. - True if the element was added to the set, false if the element was already present and was instead replaced. - - - - Adds an element to the set if it is not already present. - - Element to add. - Pool used for spans. - True if the element was added to the set, false if the element was already present. - - - - Removes an element from the dictionary according to its table and element index. Can only be used if the table and element index are valid. - - Index of the table entry associated with the existing element to remove. - Index of the existing element to remove in the contiguous element array. - - - - Removes an element from the set if belongs to the set. - Does not preserve the order of elements in the set. - - Element to remove. - True if the element was found and removed, false otherwise. - - - - Removes an element from the set if belongs to the set. - Does not preserve the order of elements in the set. - - Element to remove. - True if the element was found and removed, false otherwise. - - - - Removes all elements from the set. - - - - - Removes all elements from the set without modifying the contents of the elements array. - - - - - Provides equality comparison and hashing for referenced types. - - Type to compare for equality and hash. - - - - IEqualityComparerRef wrapper around an EqualityComparer. - - Type of the objects to compare and hash. - - - - Creates a default comparer for the given type. - - Predicate to test against other items using the default comparer for this type. - - - - IPredicate wrapper around an EqualityComparer and an object to compare against. - - Type of the objects to compare. - - - - Creates a default comparer for the given type. - - Item to compare against other items. - Predicate to test against other items using the default comparer for this type. - - - - The current containment state of two objects. - - - - - The objects are separate. - - - - - One object fully contains the other. - - - - - The objects are intersecting, but neither object fully contains the other. - - - - - Gets a reference to an element from a vector without using pointers, bypassing direct vector access for codegen reasons. This performs no bounds testing! - - - - - Copies from one bundle lane to another. The bundle must be a contiguous block of Vector types. - - Type of the copied bundles. - Source bundle of the data to copy. - Index of the lane within the source bundle. - Target bundle of the data to copy. - Index of the lane within the target bundle. - - For performance critical operations, a specialized implementation should be used. This uses a loop with stride equal to a Vector that isn't yet unrolled. - - - - - Clears a bundle lane using the default value of the specified type. The bundle must be a contiguous block of Vector types, all sharing the same type, - and the first vector must start at the address pointed to by the bundle reference. - - Type containing one or more Vectors. - Type of the vectors to clear. - Target bundle to clear a lane in. - Index of the lane within the target bundle to clear. - - For performance critical operations, a specialized implementation should be used. This uses a loop with stride equal to a Vector. - - - - - Gets a reference to a shifted bundle container such that the first slot of each bundle covers the given inner index of the original bundle reference. - - Type of the bundle container. - Bundle container whose reference acts as the base for the shifted reference. - Index within the bundle to access with the shifted reference. - Shifted bundle container reference covering the inner index of the original bundle reference. - - - - Gets a reference to the first element in the vector reference. - - Type of value held by the vector. - Vector to pull the first slot value from. - Reference to the value in the given vector's first slot. - - - - Defines a loop body function able to handle the equivalent of a foreach's body. Takes a ref parameter for efficiency when dealing with large value types. - - Type to enumerate over. - - - - Defines a loop body function able to handle the equivalent of a foreach's body. - - Type to enumerate over. - - - - Defines a loop body function able to handle the equivalent of a foreach's body that supports breaking the loop early. - - Type to enumerate over. - - - - Executes one execution of the loop body. - - Visited element. - True if the loop should continue, false otherwise. - - - - Defines a loop body function able to handle the equivalent of a foreach's body that supports breaking the loop early. - Takes a ref parameter for efficiency when dealing with large value types. - - Type to enumerate over. - - - - Executes one execution of the loop body. - - Visited element. - True if the loop should continue, false otherwise. - - - - Provides simple 2d cell hashing. - - - - - A set of 3 integers, useful for spatial hashing. - - - - - Provides multithreading dispatch primitives, a thread count, and per thread resource pools for the simulation to use. - - - Note that the simulation does not require a true load balancing forloop implementation. All that's needed is a way to jumpstart some threads. - All systems which use multithreading tend to have some form of domain specific load balancing that a general purpose thread pool or parallel for loop implementation - couldn't match. The simulation also tends to keep the number of dispatches as low as it can. Combined, these two things reduce the importance of a - very highly optimized dispatcher. - This is important when a user wants to share some other thread pool, but doesn't have the time to guarantee extremely high performance and high quality - load balancing. Instead of worrying about that, they can just wrap whatever implementation they happen to have and it'll probably work fine. - - - - - Gets the number of workers available in the thread dispatcher. - - Note that some systems (like the solver) expect the ThreadCount to be backed by truly independent threads capable of progression even when one is blocked. - If the ThreadCount doesn't represent independent threads, deadlocks will occur. - - - - - Dispatches all the available workers. - - Delegate to be invoked on for every worker. - - - - Gets the memory pool associated with a given worker index. It is guaranteed that no other workers will share the same pool for the duration of the worker's execution. - - All usages of the memory pool within the simulation are guaranteed to return thread pool memory before the function returns. In other words, - thread memory pools are used for strictly ephemeral memory, and it will never be held by the simulation outside the scope of a function that - takes the IThreadDispatcher as input. - Index of the worker to grab the pool for. - The memory pool for the specified worker index. - - - - Contains conditional extensions to check for bad values in various structures. - - - - - Checks a single float for validity. - - Value to validate. - True if the value is invalid, false if it is valid. - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Checks the value to see if it is a NaN or infinite. If it is, an exception is thrown. - This is only run when the CHECKMATH symbol is defined. - - - - - Contains helper math methods. - - - - - Approximate value of Pi. - - - - - Approximate value of Pi multiplied by two. - - - - - Approximate value of Pi divided by two. - - - - - Approximate value of Pi divided by four. - - - - - Clamps a value between a minimum and maximum value. - - Value to clamp. - Minimum value. If the value is less than this, the minimum is returned instead. - Maximum value. If the value is more than this, the maximum is returned instead. - Clamped value. - - - - Returns the higher value of the two parameters. - - First value. - Second value. - Higher value of the two parameters. - - - - Returns the lower value of the two parameters. - - First value. - Second value. - Lower value of the two parameters. - - - - Clamps a value between a minimum and maximum value. - - Value to clamp. - Minimum value. If the value is less than this, the minimum is returned instead. - Maximum value. If the value is more than this, the maximum is returned instead. - Clamped value. - - - - Returns the higher value of the two parameters. - - First value. - Second value. - Higher value of the two parameters. - - - - Returns the lower value of the two parameters. - - First value. - Second value. - Lower value of the two parameters. - - - - Clamps a value between a minimum and maximum value. - - Value to clamp. - Minimum value. If the value is less than this, the minimum is returned instead. - Maximum value. If the value is more than this, the maximum is returned instead. - Clamped value. - - - - Returns the higher value of the two parameters. - - First value. - Second value. - Higher value of the two parameters. - - - - Returns the lower value of the two parameters. - - First value. - Second value. - Lower value of the two parameters. - - - - Converts degrees to radians. - - Degrees to convert. - Radians equivalent to the input degrees. - - - - Converts radians to degrees. - - Radians to convert. - Degrees equivalent to the input radians. - - - - Returns -1 if the value is negative and 1 otherwise. - - Value to compute the sign of. - -1 if the input is negative, and 1 otherwise. - - - - Computes an approximation of cosine. Maximum error a little above 3e-6. - - Value to take the cosine of. - Approximate cosine of the input value. - - - - Computes an approximation of sine. Maximum error a little above 3e-6. - - Value to take the sine of. - Approximate sine of the input value. - - - - Computes an approximation of cosine. Maximum error a little above 3e-6. - - Values to take the cosine of. - Approximate cosine of the input values. - - - - Computes an approximation of sine. Maximum error a little above 3e-6. - - Value to take the sine of. - Approximate sine of the input value. - - - - Computes an approximation of arccos. Maximum error less than 6.8e-5. - - Input value to the arccos function. - Result of the arccos function. - - - - Gets the change in angle from a to b as a signed value from -pi to pi. - - Source angle. - Target angle. - Difference between a and b, expressed as a value from -pi to pi. - - - - Provides SIMD-aware 4x4 matrix math. - - - All functions assume row vectors. - - - - - Row 1 of the matrix. - - - - - Row 2 of the matrix. - - - - - Row 3 of the matrix. - - - - - Row 4 of the matrix. - - - - - Transforms a vector with a transposed matrix. - - Row vector to transform. - Matrix whose transpose will be applied to the vector. - Transformed vector. - - - - Transforms a vector with a matrix. - - Row vector to transform. - Matrix to apply to the vector. - Transformed vector. - - - - Transforms a vector with a matrix. Implicitly uses 1 as the fourth component of the input vector. - - Row vector to transform. - Matrix to apply to the vector. - Transformed vector. - - - - Multiplies a matrix by another matrix. - - First matrix. - Second matrix. - Result of the matrix multiplication. - - - - Concatenates two matrices. - - First input matrix. - Second input matrix. - Concatenated transformation of the form m1 * m2. - - - - Creates a right-handed perspective matrix. - - Vertical field of view of the perspective in radians. - Width of the viewport over the height of the viewport. - Near clip plane of the perspective. - Far clip plane of the perspective. - Resulting perspective matrix. - - - - Creates a left-handed perspective matrix. - - Vertical field of view of the perspective in radians. - Width of the viewport over the height of the viewport. - Near clip plane of the perspective. - Far clip plane of the perspective. - Resulting perspective matrix. - - - - Creates a right-handed perspective matrix. - - Vertical field of view of the perspective in radians. - Horizontal field of view of the perspective in radians. - Near clip plane of the perspective. - Far clip plane of the perspective. - Resulting perspective matrix. - - - - Creates a right-handed perspective matrix. - - Vertical field of view of the perspective in radians. - Horizontal field of view of the perspective in radians. - Near clip plane of the perspective. - Far clip plane of the perspective. - Resulting perspective matrix. - - - - Creates a right-handed perspective matrix. - - Vertical field of view of the perspective in radians. - Width of the viewport over the height of the viewport. - Near clip plane of the perspective. - Far clip plane of the perspective. - Resulting perspective matrix. - - - - Creates a right handed orthographic projection. - - Leftmost coordinate of the projected area. - Rightmost coordinate of the projected area. - Bottom coordinate of the projected area. - Top coordinate of the projected area. - Near plane of the projection. - Far plane of the projection. - The resulting orthographic projection matrix. - - - - Inverts the matrix. - - Matrix to invert. - Inverted version of the matrix. - - - - Inverts the matrix. - - Matrix to invert. - Inverted version of the matrix. - - - - Creates a view matrix pointing from a position to a target with the given up vector. - - Position of the camera. - Target of the camera. - Up vector of the camera. - Look at matrix. - - - - Creates a view matrix pointing from a position to a target with the given up vector. - - Position of the camera. - Target of the camera. - Up vector of the camera. - Look at matrix. - - - - Creates a view matrix pointing in a direction with a given up vector. - - Position of the camera. - Forward direction of the camera. - Up vector of the camera. - Look at matrix. - - - - Creates a view matrix pointing looking in a direction with a given up vector. - - Position of the camera. - Forward direction of the camera. - Up vector of the camera. - Look at matrix. - - - - Creates a rigid world matrix from a rotation and position. - - Rotation of the transform. - Position of the transform. - 4x4 matrix representing the combined transform. - - - - Creates a rigid world matrix from a rotation and position. - - Rotation of the transform. - Position of the transform. - 4x4 matrix representing the combined transform. - - - - Creates a 4x4 matrix from a 3x3 matrix. All extra columns and rows filled with 0 except the W.W, which is set to 1. - - Smaller matrix to base the larger matrix on. - Larger matrix that has the smaller matrix as a submatrix. - - - - Creates a 4x4 matrix from a 3x3 matrix. All extra columns and rows filled with 0 except the W.W, which is set to 1. - - Smaller matrix to base the larger matrix on. - Larger matrix that has the smaller matrix as a submatrix. - - - - First row of the matrix. - - - - - Second row of the matrix. - - - - - Multiplies a matrix by another matrix, where the second matrix is sampled as if it were transposed: result = a * transpose(b). - - First matrix in the pair. - Matrix to be sampled as if it were transposed when multiplied with the first matrix. - Result of the multiplication a * transpose(b). - - - - Multiplies every component in the matrix by the given scalar value. - - Matrix to scale. - Scaling value to apply to the matrix's components. - Resulting matrix with scaled components. - - - - Adds the components of one matrix to another. - - First matrix to add. - Second matrix to add. - Sum of the two given matrices. - - - - Subtracts the components of one matrix from another. - - Matrix to be subtracted from.. - Matrix to subtract from the other. - Result of the subtraction. - - - - Inverts the given matix. - - Matrix to be inverted. - Inverted matrix. - - - - First row of the matrix. - - - - - Second row of the matrix. - - - - - Multiplies a matrix by another matrix, where the first matrix is sampled as if it were transposed: result = transpose(a) * b. - - Matrix to be sampled as if it were transposed when multiplied with the second matrix. - Second matrix in the pair. - Result of the multiplication transpose(a) * b. - - - - Multiplies a matrix by another matrix, where the second matrix is sampled as if it were transposed: result = a * transpose(b). - - First matrix in the pair. - Matrix to be sampled as if it were transposed when multiplied with the first matrix. - Result of the multiplication a * transpose(b). - - - - Multiplies every component in the matrix by the given scalar value. - - Matrix to scale. - Scaling value to apply to the matrix's components. - Resulting matrix with scaled components. - - - - 3 row, 3 column matrix. - - - - - Gets the 3x3 identity matrix. - - - - - Adds the components of two matrices together. - - First matrix to add. - Second matrix to add. - Sum of the two input matrices. - - - - Scales the components of a matrix by a scalar. - - Matrix to scale. - Scale to apply to the matrix's components. - Scaled matrix. - - - - Subtracts the components of one matrix from another. - - Matrix to be subtracted from. - Matrix to subtract from a. - Difference of the two input matrices. - - - - Computes the transposed matrix of a matrix. - - Matrix to transpose. - Transposed matrix. - - - - Calculates the determinant of the matrix. - - The matrix's determinant. - - - - Inverts the given matix. - - Matrix to be inverted. - Inverted matrix. - - - - Inverts the given matix. - - Matrix to be inverted. - Inverted matrix. - - - - Transforms the vector by the matrix. - - Vector3 to transform. - Matrix to use as the transformation. - Product of the transformation. - - - - Transforms the vector by the matrix's transpose. - - Vector3 to transform. - Matrix to use as the transformation transpose. - Product of the transformation. - - - - Multiplies the two matrices. - - First matrix to multiply. - Second matrix to multiply. - Product of the multiplication. - - - - Multiplies the two matrices, where a is treated as transposed: result = transpose(a) * b - - First matrix to multiply that will be transposed. - Second matrix to multiply. - Product of the multiplication. - - - - Creates a 3x3 matrix representing the given scale along its local axes. - - Scale to represent. - Matrix representing a scale. - - - - Creates a matrix representing a rotation derived from an axis and angle. - - Axis of the rotation. - Angle of the rotation. - Resulting rotation matrix. - - - - Creates a matrix representing a rotation derived from an axis and angle. - - Axis of the rotation. - Angle of the rotation. - Resulting rotation matrix. - - - - Creates a matrix such that a x v = a * result. - - Vector to build the skew symmetric matrix from. - Skew symmetric matrix representing the cross product. - - - - Concatenates two matrices. - - First input matrix. - Second input matrix. - Concatenated transformation of the form m1 * m2. - - - - First row of the matrix. - - - - - Second row of the matrix. - - - - - Third row of the matrix. - - - - - Multiplies a matrix by another matrix, where the first matrix is sampled as if it were transposed: result = transpose(a) * b. - - Matrix to be sampled as if it were transposed when multiplied with the second matrix. - Second matrix in the pair. - Result of the multiplication transpose(a) * b. - - - - Multiplies a matrix by another matrix, where the second matrix is sampled as if it were transposed: result = a * transpose(b). - - First matrix in the pair. - Matrix to be sampled as if it were transposed when multiplied with the first matrix. - Result of the multiplication a * transpose(b). - - - - Negates the components of a matrix. - - Matrix to negate. - Negated result matrix. - - - - Multiplies every component in the matrix by the given scalar value. - - Matrix to scale. - Scaling value to apply to the matrix's components. - Resulting matrix with scaled components. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Non-SIMD type to store the lane in. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Index of the lane within the wide representation to read. - Non-SIMD type to store the lane in. - - - - Represents a chunk of abstract memory supporting allocations and deallocations. - Never moves any memory. - - Uses an extremely simple ring buffer that makes no attempt to skip groups of allocations. Not particularly efficient. - - - - Gets or sets the capacity of the allocator. - - - - - Index in allocations that we should start at during the next allocation attempt. - - - - - Creates a new allocator. - - Size of the memory handled by the allocator in elements. - Estimated number of allocations to allocate room for in the internal structures. - Pool to pull internal resources from. - - - - Checks if the id is currently allocated. - - Id to check for. - True if the id is present in the allocations set, false otherwise. - - - - Gets the allocation region associated with the given allocation id if it is present. - - Allocation id to look up the allocation for. - Allocation associated with the id, if present. - True if the allocationId was present in the allocator, false otherwise. - - - - Checks if a block of memory can fit into the current state of the allocator. - - Size of the memory to test. - Ids of allocations to treat as nonexistent for the purposes of the test. - True if the size could fit, false if out of memory or if memory was too fragmented to find a spot. - - - - Checks if a block of memory can fit into the current state of the allocator. - - Size of the memory to test. - True if the size could fit, false if out of memory or if memory was too fragmented to find a spot. - - - - Attempts to allocate a range of memory. - - Unique id of the memory to allocate. - Size of the memory to allocate. - Starting index of the allocated memory, if successful. - True if the allocation succeeded, false if out of memory or if memory was too fragmented to find a spot. - - - - Removes the memory associated with the id from the pool. - - Id to remove. - True of the id was found, false otherwise. - - - - Gets the size of the largest contiguous area and the total free space in the allocator. - Not very efficient; runs in linear time for the number of allocations. - - Largest contiguous region in the allocator. The allocator can hold an allocation up to this size. - Total free space in the allocator. - - - - Finds the first allocation with empty space before it and pulls it forward to close the gap. Assumes the ability to perform synchronous reallocation. - - Id of the allocation to be moved, if any. - Size of the moved allocation. - Old starting location of the allocation. - New starting location of the allocation. - True if a compaction was performed, false otherwise. - - - - Attempts to resize a given allocation to a new size. If the new size is smaller, the start index remains unchanged. - - Id of the allocation to resize. - New desired size of the allocation. - Old start location of the allocation. - New start location of the allocation. - True if the resize was successful. False if there was insufficient room for the larger allocation. - - - - Span over an unmanaged memory region. - - Type of the memory exposed by the span. - - - - Implementation specific identifier of the raw buffer set by its source. If taken from a BufferPool, Id represents the index in the power pool from which it was taken. - - - - - Gets a reference to the element at the given index. - - Index of the element to grab a reference of. - Reference to the element at the given index. - - - - Gets a pointer to the element at the given index. - - Index of the element to retrieve a pointer for. - Pointer to the element at the given index. - - - - Creates a view of a subset of the buffer's memory. - - Index at which to start the sliced buffer. - Number of elements to include in the sliced buffer. - Buffer spanning the specified subset of the original buffer. - - - - Creates a view of a subset of the buffer's memory, starting from the first index. - - Number of elements to include in the sliced buffer. - Buffer spanning the specified subset of the original buffer. - - - - Creates a view of a subset of the buffer's memory. - - Index at which to start the sliced buffer. - Number of elements to include in the sliced buffer. - Buffer spanning the specified subset of the original buffer. - - - - Creates a view of a subset of the buffer's memory, starting from the first index. - - Number of elements to include in the sliced buffer. - Buffer spanning the specified subset of the original buffer. - - - - Gets the length of the buffer in typed elements. - - - - - Gets whether the buffer references non-null memory. - - - - - Zeroes out the buffer's memory. - - Start location in the buffer. - Number of elements to clear beyond the start index. - - - - Copies buffer data into another buffer. - - Start index in the source buffer. - Target buffer to copy into. - Start index in the target buffer. - Number of elements to copy from the source buffer into the target buffer. - - - - Copies buffer data into another buffer. - - Start index in the source buffer. - Target buffer to copy into. - Start index in the target buffer. - Number of elements to copy from the source buffer into the target buffer. - - - - Copies span data into this buffer. - - Source span to copy from. - Start index in the source buffer. - Start index in the target buffer. - Number of elements to copy from the source buffer into the target buffer. - - - - Copies span data into this buffer. - - Source span to copy from. - Start index in the source buffer. - Start index in the target buffer. - Number of elements to copy from the source buffer into the target buffer. - - - - Gets the index of an element in the buffer using the type's default comparer. - - Element to look for in the buffer. - Start index at which to begin the search. - Number of elements to scan beyond the start index. - Index of the element in the buffer if found, -1 otherwise. - - - - Gets the index of an element in the buffer using the type's default comparer. - - Element to look for in the buffer. - Start index at which to begin the search. - Number of elements to scan beyond the start index. - Index of the element in the buffer if found, -1 otherwise. - - - - Gets the index of the first element that matches a provided predicate. - - Predicate to test each element with. - Start index at which to begin the search. - Number of elements to scan beyond the start index. - Index of the first matching element in the buffer if any, -1 otherwise. - - - - Creates an untyped buffer containing the same data as the Buffer. - - Untyped buffer containing the same data as the source buffer. - - - - Unmanaged memory pool that creates pinned blocks of memory for use in spans. - - This currently works by allocating large managed arrays and pinning them under the assumption that they'll end up in the large object heap. - - - - Unpins and drops the reference to the underlying array. - - - - - Pool of slots available to this power level. - - - - - Creates a new buffer pool. - - Minimum size of individual block allocations. Must be a power of 2. - Pools with single allocations larger than the minimum will use the minimum value necessary to hold one element. - Buffers will be suballocated from blocks. - Use a value larger than the large object heap cutoff (85000 bytes as of this writing in the microsoft runtime) - to avoid interfering with generational garbage collection. - Number of suballocations to preallocate reference space for. - This does not preallocate actual blocks, just the space to hold references that are waiting in the pool. - - - - Ensures that the pool associated with a given power has at least a certain amount of capacity, measured in bytes. - - Minimum number of bytes to require for the power pool. - Power associated with the pool to check. - - - - Gets the capacity allocated for a power. - - Power to check. - Allocated capacity for the given power. - - - - Takes a buffer large enough to contain a number of bytes. Capacity may be larger than requested. - - Desired minimum capacity of the buffer in bytes. - Buffer that can hold the bytes. - - - - Takes a buffer of the requested size from the pool. - - Desired capacity of the buffer in bytes. - Buffer of the requested size. - - - - Takes a buffer large enough to contain a number of elements of a given type. Capacity may be larger than requested. - - Type of the elements in the buffer. - Desired minimum capacity of the buffer in typed elements. - Buffer large enough to contain the requested number of elements. - - - - Takes a typed buffer of the requested size from the pool. - - Type of the instances in the buffer. - Desired capacity of the buffer in typed elements. - Typed buffer of the requested size. - - - - Takes a buffer large enough to contain a number of bytes given by a power, where the number of bytes is 2^power. - - Number of bytes that should fit within the buffer as an exponent, where the number of bytes is 2^power. - Buffer that can hold the bytes. - - - - Returns a buffer to the pool by id. - - Buffer to return to the pool. - Typed buffer pools zero out the passed-in buffer by convention. - This costs very little and avoids a wide variety of bugs (either directly or by forcing fast failure). For consistency, BufferPool.Return does the same thing. - This "Unsafe" overload should be used only in cases where there's a reason to bypass the clear; the naming is intended to dissuade casual use. - - - - Returns a buffer to the pool. - - Buffer to return to the pool. - - - - Returns a buffer to the pool. - - Buffer to return to the pool. - - - - Resizes a buffer to the smallest size available in the pool which contains the target size. Copies a subset of elements into the new buffer. - Final buffer size is at least as large as the target size and may be larger. - - Buffer reference to resize. - Number of bytes to resize the buffer for. - Number of bytes to copy into the new buffer from the old buffer. - - - - Resizes a buffer to the target size. Copies a subset of elements into the new buffer. - - Buffer reference to resize. - Number of bytes to resize the buffer for. - Number of bytes to copy into the new buffer from the old buffer. - - - - Resizes a typed buffer to the smallest size available in the pool which contains the target size. Copies a subset of elements into the new buffer. - Final buffer size is at least as large as the target size and may be larger. - - Type of the buffer to resize. - Buffer reference to resize. - Number of elements to resize the buffer for. - Number of elements to copy into the new buffer from the old buffer. - - - - Resizes a buffer to the target size. Copies a subset of elements into the new buffer. - - Type of the buffer to resize. - Buffer reference to resize. - Number of elements to resize the buffer for. - Number of elements to copy into the new buffer from the old buffer. - - - - Gets or sets whether the BufferPool's backing resources are pinned. If no blocks are allocated internally, this returns true. - Setting this to false invalidates all outstanding pointers, and any attempt to take or return buffers while unpinned will fail (though not necessarily immediately). - The only valid operations while unpinned are setting Pinned to true and clearing the pool. - - - - - Unpins and drops reference to all memory. Any outstanding buffers will be invalidated silently. - - - - - Manages a pool of identifier values. Grabbing an id from the pool picks a number that has been picked and returned before, - or if none of those are available, the minimum value greater than any existing id. - - - - - Gets the highest value which any index claimed thus far could possibly have. - This is not necessarily the current highest claimed index; this value may represent an earlier claim that has already been released. - -1 if nothing has ever been claimed. - - - - - Gets the number of previously returned ids waiting in the pool. - - - - - Gets whether the id pool has backing resources allocated to it and is ready to use. - - - - - Returns an id to the pool without checking if a resize is required on the available id stack. - - Id to return. - - - - Resets the IdPool. - - - - - Ensures that the underlying id queue can hold at least a certain number of ids. - - Number of elements to preallocate space for in the available ids queue. - Pool to pull resized spans from. - - - - Shrinks the available ids queue to the smallest size that can fit the given count and the current available id count. - - Number of elements to guarantee space for in the available ids queue. - - - - Resizes the underlying buffer to the smallest size required to hold the given count and the current available id count. - - Number of elements to guarantee space for in the available ids queue. - - - - Returns underlying memory to the pool. - - The IdPool can be reused only if EnsureCapacity or Resize is called. - - - - Defines a type that is capable of pooling blocks of unmanaged memory. - - - - - Takes a buffer large enough to contain a number of elements of a given type. Capacity may be larger than requested. - - Type of the elements in the buffer. - Desired minimum capacity of the buffer in typed elements. - Buffer large enough to contain the requested number of elements. - - - - Takes a typed buffer of the requested size from the pool. - - Type of the instances in the buffer. - Desired capacity of the buffer in typed elements. - Typed buffer of the requested size. - - - - Returns a buffer to the pool. - - Type of the buffer's elements. - Buffer to return to the pool. - - - - Gets the capacity of a buffer that would be returned by the pool if a given element count was requested from TakeAtLeast. - - Type of the elements being requested. - Number of elements to request. - Capacity of a buffer that would be returned if the given element count was requested. - - - - Manages a pool of identifier values. Grabbing an id from the pool picks a number that has been picked and returned before, - or if none of those are available, the minimum value greater than any existing id. - - This contrasts with the IdPool which operates on unmanaged memory. This version only exists to support use cases where the unmanaged version can't be used- - for example, in the BufferPool. While the implementation can be shared, doing so involves creating enough supporting infrastructure that it's simpler to have a managed-only version. - - - - Gets the highest value which any index claimed thus far could possibly have. - This is not necessarily the current highest claimed index; this value may represent an earlier claim that has already been released. - -1 if nothing has ever been claimed. - - - - - Gets the number of previously returned ids waiting in the pool. - - - - - Gets the capacity of the id pool for returned ids. - - public int Capacity => availableIds.Length; - - - - Returns an id to the pool without checking if a resize is required on the available id stack. - - Id to return. - - - - Resets the IdPool. - - - - - Ensures that the underlying id queue can hold at least a certain number of ids. - - Number of elements to preallocate space for in the available ids queue. - - - - Shrinks the available ids queue to the smallest size that can fit the given count and the current available id count. - - Number of elements to guarantee space for in the available ids queue. - - - - Resizes the underlying buffer to the smallest size required to hold the given count and the current available id count. - - Number of elements to guarantee space for in the available ids queue. - - - - Manages a cache of a type of resource. - - Type of object to pool. - - - - Gets the number of existing elements in the pool. This number of elements can be requested without creating any new ones. - - - Does not do any locking. Should not be used while elements may still be getting added to or removed from the pool. - - - - - Gets or sets the function used to create new objects when the pool has no existing objects available. - - - - - Gets or sets the function used to initialize objects taken from the pool. Runs even if the object was just created by the Creator delegate. - - - - - Gets or sets the action applied to an element when it is returned to the pool. - - - - - Clears all elements from the pool. - - - - - Takes an element from the pool. If the pool is empty, a new resource is created and returned. - - Element from the pool. - - - - Returns the specified item to the pool. If a cleaner delegate is set, the item is cleaned. - - Item to give back to the pool. - - - - Raw byte buffer with some helpers for interoperating with typed spans. - - - - - Implementation specific identifier of the raw buffer set by its source. If taken from a BufferPool, Id represents the packed power and internal power pool index from which it was taken. - - - - - Interprets the bytes at the memory location as a given type. - - Type to interpret the memory as. - Memory location to interpret. - Reference to the memory as a given type. - - - - Takes a region of the raw buffer as a typed buffer. - - Type to interpret the region as. - Start of the region in terms of the type's size. - Number of elements in the region in terms of the type. - A typed buffer. - - - - Creates a typed region from the raw buffer with the largest capacity that can fit within the allocated bytes. - - Type of the buffer. - Typed buffer of maximum extent within the current raw buffer. - - - - The highest size span exponent. The largest span is 2^MaximumSpanSizePower. This avoids overflow. - - - - - Computes the largest integer N such that 2^N is less than or equal to i. - - Integer to compute the power of. - Lowest integer N such that 2^N is less than or equal to i. - - - - Computes the lowest integer N such that 2^N >= i. - - Integer to compute the power of. - Lowest integer N such that 2^N >= i. - - - - Tests if a generic parameter is primitive. Fast path; specialized compilation. - - Type to check for primitiveness. - True if the type is one of the primitive types, false otherwise. - - - - - Copies data from one buffer to another. - - Type of element being copied. - Source buffer to pull elements from. - Index in the buffer to start pulling elements from. - Target buffer to set values. - Index in the buffer to start putting elements into. - Number of elements to copy. - - - - Copies data from a buffer to a span. - - Type of element being copied. - Source buffer to pull elements from. - Index in the buffer to start pulling elements from. - Target span to set values. - Index in the span to start putting elements into. - Number of elements to copy. - - - - Copies data from a span to a buffer. - - Type of element being copied. - Source span to pull elements from. - Index in the span to start pulling elements from. - Target buffer to set values into. - Index in the buffer to start putting elements into. - Number of elements to copy. - - - - Copies data from a span to a buffer. - - Type of element being copied. - Source span to pull elements from. - Index in the span to start pulling elements from. - Target buffer to set values into. - Index in the buffer to start putting elements into. - Number of elements to copy. - - - - Provides additional functionality and some lower overhead function variants for Quaternions. - - - - - Adds two quaternions together. - - First quaternion to add. - Second quaternion to add. - Sum of the addition. - - - - Scales a quaternion. - - Quaternion to multiply. - Amount to multiply each component of the quaternion by. - Scaled quaternion. - - - - Concatenates the transforms of two quaternions together such that the resulting quaternion, applied as an orientation to a vector v, is equivalent to - transformed = (v * a) * b. - Assumes that neither input parameter overlaps the output parameter. - - First quaternion to concatenate. - Second quaternion to concatenate. - Product of the concatenation. - - - - Concatenates the transforms of two quaternions together such that the resulting quaternion, applied as an orientation to a vector v, is equivalent to - transformed = (v * a) * b. - - First quaternion to concatenate. - Second quaternion to concatenate. - Product of the concatenation. - - - - Concatenates the transforms of two quaternions together such that the resulting quaternion, applied as an orientation to a vector v, is equivalent to - transformed = (v * a) * b. - - First quaternion to multiply. - Second quaternion to multiply. - Product of the multiplication. - - - - Quaternion representing the identity transform. - - - - - Constructs a quaternion from a rotation matrix. - - Rotation matrix to create the quaternion from. - Quaternion based on the rotation matrix. - - - - Creates a quaternion from a rotation matrix. - - Rotation matrix used to create a new quaternion. - Quaternion representing the same rotation as the matrix. - - - - Constructs a quaternion from a rotation matrix. - - Rotation matrix to create the quaternion from. - Quaternion based on the rotation matrix. - - - - Constructs a quaternion from a rotation matrix. - - Rotation matrix to create the quaternion from. - Quaternion based on the rotation matrix. - - - - Ensures the quaternion has unit length. - - Quaternion to normalize. - - - - Computes the squared length of the quaternion. - - Squared length of the quaternion. - - - - Computes the length of the quaternion. - - Length of the quaternion. - - - - Blends two quaternions together to get an intermediate state. - - Starting point of the interpolation. - Ending point of the interpolation. - Amount of the end point to use. - Interpolated intermediate quaternion. - - - - Blends two quaternions together to get an intermediate state. - - Starting point of the interpolation. - Ending point of the interpolation. - Amount of the end point to use. - Interpolated intermediate quaternion. - - - - Computes the conjugate of the quaternion. - - Quaternion to conjugate. - Conjugated quaternion. - - - - Computes the conjugate of the quaternion. - - Quaternion to conjugate. - Conjugated quaternion. - - - - Computes the inverse of the quaternion. - - Quaternion to invert. - Result of the inversion. - - - - Computes the inverse of the quaternion. - - Quaternion to invert. - Result of the inversion. - - - - Negates the components of a quaternion. - - Quaternion to negate. - Negated result. - - - - Negates the components of a quaternion. - - Quaternion to negate. - Negated result. - - - - Transforms the vector using a quaternion, assuming that the output does not alias with the input. - - Vector to transform. - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the vector using a quaternion. - - Vector to transform. - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the vector using a quaternion. - - Vector to transform. - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit X direction using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit Y vector using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit Z vector using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Creates a quaternion from an axis and angle. - - Axis of rotation. - Angle to rotate around the axis. - Quaternion representing the axis and angle rotation. - - - - Creates a quaternion from an axis and angle. - - Axis of rotation. - Angle to rotate around the axis. - Quaternion representing the axis and angle rotation. - - - - Constructs a quaternion from yaw, pitch, and roll. - - Yaw of the rotation. - Pitch of the rotation. - Roll of the rotation. - Quaternion representing the yaw, pitch, and roll. - - - - Constructs a quaternion from yaw, pitch, and roll. - - Yaw of the rotation. - Pitch of the rotation. - Roll of the rotation. - Quaternion representing the yaw, pitch, and roll. - - - - Computes the angle change represented by a normalized quaternion. - - Quaternion to be converted. - Angle around the axis represented by the quaternion. - - - - Computes the axis angle representation of a normalized quaternion. - - Quaternion to be converted. - Axis represented by the quaternion. - Angle around the axis represented by the quaternion. - - - - Computes the quaternion rotation between two normalized vectors. - - First unit-length vector. - Second unit-length vector. - Quaternion representing the rotation from v1 to v2. - - - - Computes the rotation from the start orientation to the end orientation such that end = Quaternion.Concatenate(start, relative). - Assumes that neither input parameter overlaps with the output parameter. - - Starting orientation. - Ending orientation. - Relative rotation from the start to the end orientation. - - - - Transforms the rotation into the local space of the target basis such that rotation = Quaternion.Concatenate(localRotation, targetBasis) - Assumes that neither input parameter overlaps with the output parameter. - - Rotation in the original frame of reference. - Basis in the original frame of reference to transform the rotation into. - Rotation in the local space of the target basis. - - - - Takes a slot from the source quaternion and broadcasts it into all slots of the target quaternion. - - Quaternion to pull values from. - Slot in the source vectors to pull values from. - Target quaternion to be filled with the selected data. - - - - Constructs a quaternion from a rotation matrix. - - Rotation matrix to create the quaternion from. - Quaternion based on the rotation matrix. - - - - Adds the components of two quaternions together. - - First quaternion to add. - Second quaternion to add. - Sum of the two input quaternions. - - - - Computes the quaternion rotation between two normalized vectors. - - First unit-length vector. - Second unit-length vector. - Quaternion representing the rotation from v1 to v2. - - - - Gets an axis and angle representation of the rotation stored in a quaternion. Angle is approximated. - - Quaternion to extract an axis-angle representation from. - Axis of rotation extracted from the quaternion. - Approximated angle of rotation extracted from the quaternion. - - - - Transforms the vector using a quaternion. Assumes that the memory backing the input and output do not overlap. - - Vector to transform. - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the vector using a quaternion. - - Vector to transform. - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit X direction using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit Y vector using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit Z vector using a quaternion. - - Rotation to apply to the vector. - Transformed vector. - - - - Transforms the unit X and unit Y direction using a quaternion. - - Rotation to apply to the vectors. - Transformed unit X vector. - Transformed unit Y vector. - - - - Transforms the unit X and unit Z direction using a quaternion. - - Rotation to apply to the vectors. - Transformed unit X vector. - Transformed unit Z vector. - - - - Concatenates the transforms of two quaternions together such that the resulting quaternion, applied as an orientation to a vector v, is equivalent to - transformed = (v * a) * b. Assumes that the memory backing the input and output do not overlap. - - First quaternion to concatenate. - Second quaternion to concatenate. - Product of the concatenation. - - - - Concatenates the transforms of two quaternions together such that the resulting quaternion, applied as an orientation to a vector v, is equivalent to - transformed = (v * a) * b. - - First quaternion to concatenate. - Second quaternion to concatenate. - Product of the concatenation. - - - - Computes the conjugate of the quaternion. - - Quaternion to conjugate. - Conjugated quaternion. - - - - Gathers values from the first slot of a wide quaternion and puts them into a narrow representation. - - Wide quaternion to copy values from. - Narrow quaternion to place values into. - - - - Gathers values from a quaternion and places them into the first indices of the target wide quaternion. - - Quaternion to copy values from. - Wide quaternion to place values into. - - - - Stores the lower left triangle (including diagonal) of a 2x2 matrix. - - - - - Computes m * scale * mT. - - Matrix to sandwich the scale with. - Scale to be sandwiched. - Result of m * scale * mT. - This is a peculiar operation, but it's useful for computing linear effective mass contributions in 2DOF constraints. - - - - Computes result = transpose(transpose(a) * b), assuming b is symmetric. - - Matrix to be transposed and multiplied. - Symmetric matrix to multiply. - Result of transpose(transpose(a) * b). - - - - Computes a * transpose(b), assuming a = b * M for some symmetric matrix M. This is conceptually the second half of Triangular3x3Wide.MatrixSandwich. - - First matrix to multiply. Must be of the form a = b * M for some symmetric matrix M. - Matrix to be transaposed and multiplied with a.. - Symmetric result of a * transpose(b), assuming a = b * M. - - - - Lower left triangle (including diagonal) of a symmetric 3x3 matrix. - - - - - First row, first column of the matrix. - - - - - Second row, first column of the matrix. - - - - - Second row, second column of the matrix. - - - - - Third row, first column of the matrix. - - - - - Third row, second column of the matrix. - - - - - Third row, third column of the matrix. - - - - - Computes rT * m * r for a symmetric matrix m and a rotation matrix R. - - Rotation matrix to use as the sandwich bread. - Succulent interior symmetric matrix. - Result of v * m * transpose(v) for a symmetric matrix m. - - - - Computes the determinant of a symmetric matrix. - - Matrix to intepret as symmetric. - Determinant of the matrix interpreted as symmetric. - - - - Inverts the given matix. - - Matrix to be inverted. - Inverted matrix. - - - - Adds the components of two matrices together. - - First matrix to add. - Second matrix to add. - Matrix with components equal to the components of the two input matrices added together. - - - - Subtracts the components of b from a. - - Matrix to be subtracted from. - Matrix to subtract from the first matrix.. - Matrix with subtracted components. - - - - Adds the components of two matrices together. - - First matrix to add. - Second matrix to add. - Matrix with components equal to the components of the two input matrices added together. - - - - Subtracts the components of one matrix from another. - - Matrix to be subtracted from. - Matrix to subtract from the first matrix. - Matrix with components equal to the difference of the two input matrices. - - - - Multiplies every component in the matrix by the given scale. - - Matrix to be scaled. - Scale to apply to every component of the original matrix. - Scaled result. - - - - Multiplies the two matrices as if they were symmetric. - - First matrix to multiply. - Second matrix to multiply. - Product of the multiplication. - - - - Multiplies the two matrices. - - First matrix to multiply. - Second matrix to multiply. - Product of the multiplication. - - - - Transforms a vector by a symmetric matrix. - - Vector to transform. - Matrix to interpret as symmetric transform. - Result of transforming the vector by the given symmetric matrix. - - - - Stores the lower left triangle (including diagonal) of a 3x3 matrix. Useful for symmetric matrices (and sometimes antisymmetric matrices). - - - - - First row, first column of the matrix. - - - - - Second row, first column of the matrix. - - - - - Second row, second column of the matrix. - - - - - Third row, first column of the matrix. - - - - - Third row, second column of the matrix. - - - - - Third row, third column of the matrix. - - - - - Inverts the matrix as if it is a symmetric matrix where M32 == M23, M13 == M31, and M21 == M12. - - Symmetric matrix to invert. - Inverse of the symmetric matrix. - - - - Adds the components of two symmetric matrices together. - - First matrix to add. - Second matrix to add. - Sum of the two input matrices. - - - - Subtracts one symmetric matrix's components from another. - - Matrix to be subtracted from. - Matrix to subtract from the first matrix. - Result of a - b. - - - - Computes skewSymmetric(v) * m * transpose(skewSymmetric(v)) for a symmetric matrix m. Assumes that the input and output matrices do not overlap. - - Symmetric matrix. - Vector to create the skew symmetric matrix from to act as the sandwich bread. - Result of skewSymmetric(v) * m * transpose(skewSymmetric(v)). - This operation might have a formal name that isn't skew sandwich. But that's okay, its real name is skew sandwich. - - - - Computes v * m * transpose(v) for a symmetric matrix m. Assumes that the input and output do not overlap. - - Vector acting as the sandwich bread. - Succulent interior symmetric matrix. - Result of v * m * transpose(v) for a symmetric matrix m. - Since I called the other one a skew sandwich, I really don't have a choice in the naming convention anymore. - - - - Computes rT * m * r for a symmetric matrix m and a rotation matrix R. - - Rotation matrix to use as the sandwich bread. - Succulent interior symmetric matrix. - Result of v * m * transpose(v) for a symmetric matrix m. - - - - Computes result = a * b, assuming that b represents a symmetric 3x3 matrix. Assumes that input parameters and output result do not overlap. - - First matrix of the pair to multiply. - Matrix to be reinterpreted as symmetric for the multiply. - Result of multiplying a * b. - - - - Computes result = a * b, assuming that b represents a symmetric 3x3 matrix. Assumes that input parameters and output result do not overlap. - - First matrix of the pair to multiply. - Matrix to be reinterpreted as symmetric for the multiply. - Result of multiplying a * b. - - - - Computes result = a * b, assuming that a represents a symmetric 3x3 matrix. Assumes that input parameters and output result do not overlap. - - Matrix to be reinterpreted as symmetric for the multiply. - Second matrix of the pair to multiply. - Result of multiplying a * b. - - - - Computes result = a * transpose(b). - - Matrix to multiply with the transposed matrix. - Matrix to transpose and concatenate with the first matrix. - Result of a * transpose(b). - - - - Computes result = transpose(a * transpose(b)). - - Matrix to multiply with the transposed matrix. - Matrix to transpose and concatenate with the first matrix. - Result of transpose(a * transpose(b)). - - - - Computes m * t * mT for a symmetric matrix t and a matrix m. - - Matrix to use as the sandwich bread. - Succulent interior symmetric matrix. - Result of m * t * mT for a symmetric matrix t. - - - - Computes result = a * b, where a = transpose(b) * M for some symmetric matrix M. - - Some matrix equal to transpose(b) * M for some symmetric matrix M. - Matrix used to sandwich the original matrix M. - Complete result of transpose(b) * M * b. - - - - Computes result = tranpose(a) * b, where a = transpose(transpose(b) * M) for some symmetric matrix M. In other words, we're just treating matrix a as a 3x2 matrix. - - Some matrix equal to transpose(b) * M for some symmetric matrix M. - Matrix used to sandwich the original matrix M. - Complete result of transpose(b) * M * b. - - - - Computes result = a * transpose(b), where a = b * M for some symmetric matrix M. - - Some matrix equal to b * M for some symmetric matrix M. - Matrix used to sandwich the original matrix M, to be transposed. - Complete result of b * M * transpose(b). - - - - Computes result = transpose(a) * b, where b = M * a for some symmetric matrix M. - - Matrix used to sandwich the original matrix M. - Some matrix equal to M * a for some symmetric matrix M. - Complete result of transpose(a) * M * a. - - - - Returns a reference to the upper left 3x3 block of the matrix. - - Matrix to pull a block from. - Reference to the requested block. - - - - Returns a reference to the upper right 3x1 (or lower left 1x3) block of the matrix. - - Matrix to pull a block from. - Reference to the requested block. - - - - Scales each component of m by the given scale. - - Matrix to scale. - Scale to apply to the components of m. - Result of scaling each component of m by scale. - - - - Computes result = v * m. - - Vector to transform. - Matrix to transform with. - Result of the transform. - - - - Upper left 3x3 block of the matrix. - - - - - Lower left 2x3 block of the matrix. - - - - - Lower right 2x2 block of the matrix. - - - - - Scales each component of m by the given scale. - - Matrix to scale. - Scale to apply to the components of m. - Result of scaling each component of m by scale. - - - - Computes result = v * m, where v and result are 1x5 vectors which are split into two subvectors. - - First half of the a vector. - Second half of the a vector. - Matrix to transform with. - First half of the result. - Second half of the result. - - - - Scales each component of m by the given scale. - - Matrix to scale. - Scale to apply to the components of m. - Result of scaling each component of m by scale. - - - - Computes result = v * m, where v and result are 1x6 vectors which are split into two 1x3 values. - - First half of the a vector. - Second half of the a vector. - Matrix to transform with. - First half of the result. - Second half of the result. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Non-SIMD type to store the lane in. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Index of the lane within the wide representation to read. - Non-SIMD type to store the lane in. - - - - Gathers values from a vector and places them into the first indices of the target vector. - - Vector to copy values from. - Wide vectorto place values into. - - - - Writes a value into a slot of the target bundle. - - Source of the value to write. - Index of the slot to write into. - Bundle to write the value into. - - - - Finds the result of adding a scalar to every component of a vector. - - Vector to add to. - Scalar to add to every component of the vector. - Vector with components equal to the input vector added to the input scalar. - - - - Finds the result of subtracting a scalar from every component of a vector. - - Vector to subtract from. - Scalar to subtract from every component of the vector. - Vector with components equal the input scalar subtracted from the input vector. - - - - Finds the result of subtracting the components of a vector from a scalar. - - Vector to subtract from the scalar. - Scalar to subtract from. - Vector with components equal the input vector subtracted from the input scalar. - - - - Computes the per-component minimum between a scalar value and the components of a vector. - - Scalar to compare to each vector component. - Vector whose components will be compared. - Vector with components matching the smaller of the scalar value and the input vector. - - - - Computes the per-component minimum of two vectors. - - First vector whose components will be compared. - Second vector whose components will be compared. - Vector with components matching the smaller of the two input vectors. - - - - Computes the per-component maximum between a scalar value and the components of a vector. - - Scalar to compare to each vector component. - Vector whose components will be compared. - Vector with components matching the larger of the scalar value and the input vector. - - - - Computes the per-component maximum of two vectors. - - First vector whose components will be compared. - Second vector whose components will be compared. - Vector with components matching the larger of the two input vectors. - - - - Multiplies the components of one vector with another. - - First vector to multiply. - Second vector to multiply. - Result of the multiplication. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Index of the lane within the wide representation to read. - Non-SIMD type to store the lane in. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Non-SIMD type to store the lane in. - - - - Gathers values from a vector and places them into the first indices of the target vector. - - Vector to copy values from. - Wide vectorto place values into. - - - - Writes a value into a slot of the target bundle. - - Source of the value to write. - Index of the slot to write into. - Bundle to write the value into. - - - - Expands each scalar value to every slot of the bundle. - - Source value to write to every bundle slot. - Bundle containing the source's components in every slot. - - - - Takes a slot from the source vector and broadcasts it into all slots of the target vector. - - Vector to pull values from. - Slot in the source vectors to pull values from. - Target vector to be filled with the selected data. - - - - Takes a slot from the source vector and places it into a slot of the target. - - Vector to pull values from. - Slot in the source vectors to pull values from. - Target vector whose slot will be filled with the selected data. - Slot in the target vectors to write values into. - - - - Computes the per-component minimum of two vectors. - - First vector whose components will be compared. - Second vector whose components will be compared. - Vector with components matching the smaller of the two input vectors. - - - - Computes the per-component maximum of two vectors. - - First vector whose components will be compared. - Second vector whose components will be compared. - Vector with components matching the larger of the two input vectors. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Index of the lane within the wide representation to read. - Non-SIMD type to store the lane in. - - - - Pulls one lane out of the wide representation. - - Source of the lane. - Non-SIMD type to store the lane in. - - - - Gathers values from a vector and places them into the first indices of the target vector. - - Vector to copy values from. - Wide vectorto place values into. - - - diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.xml.meta b/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.xml.meta deleted file mode 100644 index 2eea9435..00000000 --- a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0/BepuUtilities.xml.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 91b96c1f3174bf941aaf8a5b5f4f0375 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8.meta similarity index 77% rename from JNFrame/Assets/Packages/BepuUtilities.2.3.4.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8.meta index 3f06bbef..3c398c34 100644 --- a/JNFrame/Assets/Packages/BepuUtilities.2.3.4.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 197f2d43e882aab4f83df3217ea82ddd +guid: 493c09310ff451340b7e086ead8d82e7 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/.signature.p7s similarity index 56% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/.signature.p7s index 2a015f966a69f29ae7ad9536a621550dd06064cf..9022ef6e9399872b1746eaaa08d208ec32ee7eb8 100644 GIT binary patch delta 4421 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 delta 2566 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 ZmI&a(;W_1USEcBYl=5v9-6lu{@gKh@Y*hdN diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec similarity index 91% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec index 5aeb86cb..377b49cb 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec @@ -2,8 +2,9 @@ Google.Protobuf - 3.19.6 + 3.15.8 Google Inc. + Google Inc. false https://github.com/protocolbuffers/protobuf/blob/master/LICENSE https://github.com/protocolbuffers/protobuf @@ -11,7 +12,7 @@ C# proto3 support Copyright 2015, Google Inc. Protocol Buffers Binary Serialization Format Google proto proto3 - + @@ -20,7 +21,6 @@ - diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec.meta similarity index 74% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec.meta index b72caacd..77ce6a3f 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/Google.Protobuf.nuspec.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/Google.Protobuf.nuspec.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 66ffca8e6eba18445955c2a0c86d52b2 +guid: fbb30486f2784ad458315380fbedf266 DefaultImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib.meta similarity index 77% rename from JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib.meta index ac76b1e5..7ff2e05a 100644 --- a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8a743569fbf019e4c9a2d497d9c4e5c1 +guid: 99219b7a183ea9f40a4e45a294161971 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0.meta similarity index 77% rename from JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0.meta index c1304045..a62cb404 100644 --- a/JNFrame/Assets/Packages/BepuUtilities.2.3.4/lib/netstandard2.0.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 229b1ad6a9780414ca0ff9a52499207d +guid: 7c4eefcc5aa635c45a33cea61f5ced01 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll new file mode 100644 index 0000000000000000000000000000000000000000..207a7fca06612e54991c716cf1f5897cb1b2230b GIT binary patch literal 390248 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
w^Hsu06d4iOxgmT3GSs5zfgC}pyz`&T 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

YQ&u0Y$IZ9pLZbKRpg6XUJvg22Z5tE}+<;6~W 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è!0h%#M1{|G>GXve*S$7b%(_}Ioqc#mON?5yy}7&=k5%d;9Iu2jd5D5J?FjT z$)YeVDlQe&H)WnxTdBKfGHAh%(k>r(Aau=L5z|+1)x%?)HY>)dy`6hj9p)Nvv1Up( zgxj(jNlIsxf2Q9V84 zoB{H~lzkExn^}G&;BQPy5+LO^CXCjhx3T$K%n51#Sxaw!hsXL(@lP6$V*~rI*Wyy| z9n=>ztmad1VWd{xhhh4obN&xayMVFkjH&2~bHf)Kt#(~VY203C*nM{>fTqU*K_)dT zwo~TQqr4gMlPjlA%MPZ!f2*QO#c@15w@aj!;`5L z&N87`+U`%LZI|fv-(I72bsWU=GQmCZu5Ma%HwNUSO=>VhnZAftO@2PWwC=+pbBCh6 z)Q^@Y->JShr(?EkbH>0zKqw*vGm0Bi(OFIu7Rev>JW`ti4+*@AM)cfx_Qks0e!77>ghdC_?SZUwT3Y-R`IK9I_taIm*O#DniOa(^7>$+$t(gSENKJ zV#J51haQppXD_p=ONHmNgwTY5>Ui5lJ&TBI(~ik^rcT(yux;dJw*)aRyG5? z{Qhbi(`pa@X@h;ddwC_wHL}!`o=@k+=%R5DaQ+{%Hvj*-qS6mEf-r66RY{{#Pzu1Y zX~Dr{1pCfrgVAU+{7|CdYxDCY))?4B@@EJGnhW3n!1-Y)VyG8)Z78mR;P`MyTvb73 zVjh1Q@uwWc8F@YDfYYQ~Ql3vVoQx2AsBR_W=AsOymT0aDy#>UQYRY6XkZNE)6 z)Uu5KNn$OKit*M_$96rkl>88h+hKXMGq7JbFhQ6}1p6|SvalirVL@;WXNf~3<4Oa| v?z5aU%sx>F$z5ty({mD0Qj{zkQK@2s1)n**v-IhxD~puyF}Ya5vjYDDNb5#5 literal 0 HcmV?d00001 diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.dll.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll.meta similarity index 91% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.dll.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll.meta index c1de356f..511afa15 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.dll.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 02ba77c2d4f4ba041bd724e22db3c563 +guid: e92b813382a013145bc964e4403a02e4 labels: - NuGetForUnity PluginImporter: diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml similarity index 99% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml index df15caed..ba87ed87 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml @@ -3134,13 +3134,6 @@ The message to merge the data into. Stream containing the data to merge, which must be protobuf-encoded binary data. - -

- Merges data from the given span into an existing message. - - The message to merge the data into. - Span containing the data to merge, which must be protobuf-encoded binary data. - Merges length-delimited data from the given stream into an existing message. @@ -3250,13 +3243,6 @@ The data to parse. The parsed message. - - - Parses a message from the given span. - - The data to parse. - The parsed message. - Parses a length-delimited message from the given stream. @@ -3369,13 +3355,6 @@ The data to parse. The parsed message. - - - Parses a message from the given span. - - The data to parse. - The parsed message. - Parses a length-delimited message from the given stream. @@ -3431,17 +3410,6 @@ users should never invoke them directly. - - - Initialize a , building all from defaults and - the given . - - - - - Initialize a using existing , e.g. from . - - Creates a ParseContext instance from CodedInputStream. @@ -4696,11 +4664,11 @@ - Controls the name of the wrapper Java class generated for the .proto file. - That class will always contain the .proto file's getDescriptor() method as - well as any top-level extensions defined in the .proto file. - If java_multiple_files is disabled, then all the other classes from the - .proto file will be nested inside the single wrapper outer class. + If set, all the classes from the .proto file are wrapped in a single + outer class with the given name. This applies to both Proto1 + (equivalent to the old "--one_java_file" option) and Proto2 (where + a .proto always translates to a single class, but you may want to + explicitly choose the class name). @@ -4714,10 +4682,10 @@ - If enabled, then the Java code generator will generate a separate .java + If set true, then the Java code generator will generate a separate .java file for each top-level message, enum, and service defined in the .proto - file. Thus, these types will *not* be nested inside the wrapper class - named by java_outer_classname. However, the wrapper class will still be + file. Thus, these types will *not* be nested inside the outer class + named by java_outer_classname. However, the outer class will still be generated to contain the file's getDescriptor() method as well as any top-level extensions defined in the file. @@ -6108,7 +6076,7 @@ Returns a readonly list of all the extensions define in this type that extend - the provided descriptor type in ascending field order + the provided descriptor type in accending field order @@ -6143,11 +6111,6 @@ but can be overridden using the json_name option in the .proto file. - - - The name of the property in the ContainingType.ClrType class. - - Indicates whether this field supports presence, either implicitly (e.g. due to it being a message @@ -8675,8 +8638,8 @@ `Value` represents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a - list of values. A producer of value is expected to set one of these - variants. Absence of any variant indicates an error. + list of values. A producer of value is expected to set one of that + variants, absence of any variant indicates an error. The JSON representation for `Value` is JSON value. @@ -9985,13 +9948,6 @@ The data is length-prefixed. - - - Given a QWORD which represents a buffer of 4 ASCII chars in machine-endian order, - narrows each WORD to a BYTE, then writes the 4-byte result to the output buffer - also in machine-endian order. - - Write a byte string, without a tag, to the stream. diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml.meta similarity index 75% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml.meta rename to JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml.meta index c741f8b9..c9a20880 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0/Google.Protobuf.xml.meta +++ b/JNFrame/Assets/Packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 45a49e59c21fb9e43bb9f3fcb737331d +guid: 585dd49269e021e45a176ec8139da556 TextScriptImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6.meta b/JNFrame/Assets/Packages/Google.Protobuf.3.19.6.meta deleted file mode 100644 index c543cc93..00000000 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 621e5ee96da4ca042858639794f2cb6b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/.signature.p7s b/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/.signature.p7s deleted file mode 100644 index d27f63c40b7f111c49667ce6ff7fc2f94ad8358c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22398 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

Urd~~}ykS+|h*jPQRo<{F>?4BR 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 diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2.meta new file mode 100644 index 00000000..cae84ae6 --- /dev/null +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 506d2a2f92063a642b3d66de2af86954 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s new file mode 100644 index 0000000000000000000000000000000000000000..a7fbb7345d4637e6451f79984453106e7600fc77 GIT binary patch literal 22354 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 + + + System.Runtime.CompilerServices.Unsafe + 4.5.2 + System.Runtime.CompilerServices.Unsafe + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +02b11eeee1fbc5f3ef43a1452fe07efd25fa1715 +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + \ No newline at end of file diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.nuspec.meta similarity index 74% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.nuspec.meta index 1a6c0c09..98e4023c 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.nuspec.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5cdca09920d14404fad09bd3b9048dd3 +guid: 608a549709bc22640a9b4e1eec824ae1 DefaultImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT new file mode 100644 index 00000000..db542ca2 --- /dev/null +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT @@ -0,0 +1,309 @@ +.NET Core uses third-party libraries or other resources that may be +distributed under licenses different than the .NET Core software. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + dotnet@microsoft.com + +The attached notices are provided for information only. + +License notice for Slicing-by-8 +------------------------------- + +http://sourceforge.net/projects/slicing-by-8/ + +Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + + +This software program is licensed subject to the BSD License, available at +http://www.opensource.org/licenses/bsd-license.html. + + +License notice for Unicode data +------------------------------- + +http://www.unicode.org/copyright.html#License + +Copyright © 1991-2017 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +License notice for Zlib +----------------------- + +https://github.com/madler/zlib +http://zlib.net/zlib_license.html + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ + +License notice for Mono +------------------------------- + +http://www.mono-project.com/docs/about-mono/ + +Copyright (c) .NET Foundation Contributors + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the Software), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for International Organization for Standardization +----------------------------------------------------------------- + +Portions (C) International Organization for Standardization 1986: + Permission to copy in any form is granted for use with + conforming SGML systems and applications as defined in + ISO 8879, provided this notice is included in all copies. + +License notice for Intel +------------------------ + +"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for Xamarin and Novell +------------------------------------- + +Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Copyright (c) 2011 Novell, Inc (http://www.novell.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Third party notice for W3C +-------------------------- + +"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE +Status: This license takes effect 13 May, 2015. +This work is being provided by the copyright holders under the following license. +License +By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. +Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: +The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. +Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. +Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." +Disclaimers +THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." + +License notice for Bit Twiddling Hacks +-------------------------------------- + +Bit Twiddling Hacks + +By Sean Eron Anderson +seander@cs.stanford.edu + +Individually, the code snippets here are in the public domain (unless otherwise +noted) — feel free to use them however you please. The aggregate collection and +descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are +distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and +without even the implied warranty of merchantability or fitness for a particular +purpose. + +License notice for Brotli +-------------------------------------- + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +compress_fragment.c: +Copyright (c) 2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +decode_fuzzer.c: +Copyright (c) 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT.meta similarity index 75% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT.meta index 70fe96eb..81501faa 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ea4fcbd60d6e4f243aa4a62f64e4a3d0 +guid: 6ca11e2b8583f1c49a47f9c05935675c TextScriptImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib.meta similarity index 77% rename from JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib.meta index 31ddfaf8..82df3e18 100644 --- a/JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ad185d9a7ed824e4aa1843a512e11ba1 +guid: 0ebb141f1e61aa440990bca6d0fa94d7 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0.meta similarity index 77% rename from JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0.meta index a3f1705e..b5c15949 100644 --- a/JNFrame/Assets/Packages/Google.Protobuf.3.19.6/lib/netstandard2.0.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d8eac19c5a49aae429c569c8796182a8 +guid: e2b1a09eb18086a4ba98324ef8a67c16 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000000000000000000000000000000000000..3156239266db9cceede249731f00c3822e479a1f GIT binary patch literal 23600 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 OyIXQg_#$)@0sTLk9O=pc literal 0 HcmV?d00001 diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta similarity index 91% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta index e7068d17..48ab5d6d 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b29c0fb409eb0924b954a11e415c7194 +guid: 0ecdbe25686e19c41928916d45c20672 labels: - NuGetForUnity PluginImporter: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml similarity index 55% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml index 9d794922..6a7cfcff 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml @@ -1,5 +1,4 @@ - - + System.Runtime.CompilerServices.Unsafe @@ -21,20 +20,6 @@ The type of reference. A new reference that reflects the addition of offset to pointer. - -

Adds an element offset to the given reference. - The reference to add the offset to. - The offset to add. - The type of reference. - A new reference that reflects the addition of offset to pointer. - - - Adds an element offset to the given void pointer. - The void pointer to add the offset to. - The offset to add. - The type of void pointer. - A new void pointer that reflects the addition of offset to the specified pointer. - Adds a byte offset to the given reference. The reference to add the offset to. @@ -42,20 +27,12 @@ The type of reference. A new reference that reflects the addition of byte offset to pointer. - - Adds a byte offset to the given reference. - The reference to add the offset to. - The offset to add. - The type of reference. - A new reference that reflects the addition of byte offset to pointer. - Determines whether the specified references point to the same location. The first reference to compare. The second reference to compare. The type of reference. - - if and point to the same location; otherwise, . + true if left and right point to the same location; otherwise, false. Casts the given object to the specified type. @@ -64,11 +41,11 @@ The original object, casted to the given type. - Reinterprets the given reference as a reference to a value of type . + Reinterprets the given reference as a reference to a value of type TTo. The reference to reinterpret. - The type of reference to reinterpret. + The type of reference to reinterpret.. The desired type of the reference. - A reference to a value of type . + A reference to a value of type TTo. Returns a pointer to the given by-ref parameter. @@ -76,37 +53,31 @@ The type of object. A pointer to the given value. - - Reinterprets the given read-only reference as a reference. - The read-only reference to reinterpret. - The type of reference. - A reference to a value of type . - - Reinterprets the given location as a reference to a value of type . + Reinterprets the given location as a reference to a value of type T. The location of the value to reference. The type of the interpreted location. - A reference to a value of type . + A reference to a value of type T. Determines the byte offset from origin to target from the given references. The reference to origin. The reference to target. The type of reference. - Byte offset from origin to target i.e. - . - - - Copies a value of type to the given location. - The location to copy to. - A pointer to the value to copy. - The type of value to copy. + Byte offset from origin to target i.e. target - origin. - Copies a value of type to the given location. + Copies a value of type T to the given location. The location to copy to. A reference to the value to copy. The type of value to copy. + + Copies a value of type T to the given location. + The location to copy to. + A pointer to the value to copy. + The type of value to copy. + Copies bytes from the source address to the destination address. The destination address to copy to. @@ -119,14 +90,16 @@ The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. @@ -144,145 +117,81 @@ The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - - Returns a value that indicates whether a specified reference is greater than another specified reference. - The first value to compare. - The second value to compare. - The type of the reference. - - if is greater than ; otherwise, . - - - Returns a value that indicates whether a specified reference is less than another specified reference. - The first value to compare. - The second value to compare. - The type of the reference. - - if is less than ; otherwise, . - - - Determines if a given reference to a value of type is a null reference. - The reference to check. - The type of the reference. - - if is a null reference; otherwise, . - - - Returns a reference to a value of type that is a null reference. - The type of the reference. - A reference to a value of type that is a null reference. - - Reads a value of type from the given location. + Reads a value of type T from the given location. The location to read from. The type to read. - An object of type read from the given location. + An object of type T read from the given location. - Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. + Reads a value of type T from the given location +without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type read from the given location. + An object of type T read from the given location. - Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. + Reads a value of type T from the given location +without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type read from the given location. + An object of type T read from the given location. Returns the size of an object of the given type parameter. The type of object whose size is retrieved. - The size of an object of type . - - - Bypasses definite assignment rules for a given value. - The uninitialized object. - The type of the uninitialized object. + The size of an object of type T. Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subtraction of offset from pointer. + A new reference that reflects the subraction of offset from pointer. - Subtracts an element offset from the given reference. - The reference to subtract the offset from. - The offset to subtract. - The type of reference. - A new reference that reflects the subtraction of offset from pointer. - - Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. A new reference that reflects the subraction of offset from pointer. - - Subtracts an element offset from the given void pointer. - The void pointer to subtract the offset from. - The offset to subtract. - The type of the void pointer. - A new void pointer that reflects the subtraction of offset from the specified pointer. - Subtracts a byte offset from the given reference. The reference to subtract the offset from. - The offset to subtract. - The type of reference. - A new reference that reflects the subtraction of byte offset from pointer. - - - Subtracts a byte offset from the given reference. - The reference to subtract the offset from. - The offset to subtract. + The type of reference. A new reference that reflects the subraction of byte offset from pointer. - - Returns a to a boxed value. - The value to unbox. - The type to be unboxed. - - is , and is a non-nullable value type. - - is not a boxed value type. - --or- - - is not a boxed . - - cannot be found. - A to the boxed value . - - Writes a value of type to the given location. + Writes a value of type T to the given location. The location to write to. The value to write. The type of value to write. - Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. + Writes a value of type T to the given location +without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. - Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. + Writes a value of type T to the given location +without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta similarity index 75% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta index 2641446b..39fcfc90 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: cb36e62886c4d824496d9c809cf06491 +guid: 684fdd8432ab63b4da520783a8337c17 TextScriptImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt similarity index 100% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt.meta similarity index 75% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt.meta index 471f33ef..a9463cbd 100644 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 130ffb8196621b640bd6373840a172ea +guid: 1f10cd0c2cc32ea45abdd225b9771708 TextScriptImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt new file mode 100644 index 00000000..69308609 --- /dev/null +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt @@ -0,0 +1 @@ +02b11eeee1fbc5f3ef43a1452fe07efd25fa1715 diff --git a/JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.xml.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt.meta similarity index 75% rename from JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.xml.meta rename to JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt.meta index 6e0cc271..6e945c6f 100644 --- a/JNFrame/Assets/Packages/BepuPhysics.2.3.4/lib/netstandard2.0/BepuPhysics.xml.meta +++ b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 998c2d4c4a1b1f94eb0ba1573b8f7c64 +guid: 830ec1d9db6c1594ea62530aecdd821e TextScriptImporter: externalObjects: {} userData: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0.meta deleted file mode 100644 index 5c1c54d6..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 40d60631611f025478821fa08409cd8c -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png deleted file mode 100644 index a0f1fdbf4d5eae0e561018cccee74f6a454cdb9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7006 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 diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta deleted file mode 100644 index 81793ddc..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta +++ /dev/null @@ -1,127 +0,0 @@ -fileFormatVersion: 2 -guid: 0e3d51ee714483b4296ed3f345349d94 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - flipGreenChannel: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMipmapLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 0 - wrapV: 0 - wrapW: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - swizzle: 50462976 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Server - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - ignorePlatformSupport: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - mipmapLimitGroupName: - pSDRemoveMatte: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec deleted file mode 100644 index d6590a91..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec +++ /dev/null @@ -1,29 +0,0 @@ - - - - System.Runtime.CompilerServices.Unsafe - 6.0.0 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. - -Commonly Used Types: -System.Runtime.CompilerServices.Unsafe - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - \ No newline at end of file diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT deleted file mode 100644 index 89c59b21..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT +++ /dev/null @@ -1,939 +0,0 @@ -.NET Runtime uses third-party libraries or other resources that may be -distributed under licenses different than the .NET Runtime software. - -In the event that we accidentally failed to list a required notice, please -bring it to our attention. Post an issue or email us: - - dotnet@microsoft.com - -The attached notices are provided for information only. - -License notice for ASP.NET -------------------------------- - -Copyright (c) .NET Foundation. All rights reserved. -Licensed under the Apache License, Version 2.0. - -Available at -https://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt - -License notice for Slicing-by-8 -------------------------------- - -http://sourceforge.net/projects/slicing-by-8/ - -Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved - - -This software program is licensed subject to the BSD License, available at -http://www.opensource.org/licenses/bsd-license.html. - - -License notice for Unicode data -------------------------------- - -https://www.unicode.org/license.html - -Copyright © 1991-2020 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. - -License notice for Zlib ------------------------ - -https://github.com/madler/zlib -http://zlib.net/zlib_license.html - -/* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.11, January 15th, 2017 - - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - -*/ - -License notice for Mono -------------------------------- - -http://www.mono-project.com/docs/about-mono/ - -Copyright (c) .NET Foundation Contributors - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the Software), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License notice for International Organization for Standardization ------------------------------------------------------------------ - -Portions (C) International Organization for Standardization 1986: - Permission to copy in any form is granted for use with - conforming SGML systems and applications as defined in - ISO 8879, provided this notice is included in all copies. - -License notice for Intel ------------------------- - -"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for Xamarin and Novell -------------------------------------- - -Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -Copyright (c) 2011 Novell, Inc (http://www.novell.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -Third party notice for W3C --------------------------- - -"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE -Status: This license takes effect 13 May, 2015. -This work is being provided by the copyright holders under the following license. -License -By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. -Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: -The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. -Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. -Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." -Disclaimers -THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." - -License notice for Bit Twiddling Hacks --------------------------------------- - -Bit Twiddling Hacks - -By Sean Eron Anderson -seander@cs.stanford.edu - -Individually, the code snippets here are in the public domain (unless otherwise -noted) — feel free to use them however you please. The aggregate collection and -descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are -distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and -without even the implied warranty of merchantability or fitness for a particular -purpose. - -License notice for Brotli --------------------------------------- - -Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -compress_fragment.c: -Copyright (c) 2011, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -decode_fuzzer.c: -Copyright (c) 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." - -License notice for Json.NET -------------------------------- - -https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md - -The MIT License (MIT) - -Copyright (c) 2007 James Newton-King - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License notice for vectorized base64 encoding / decoding --------------------------------------------------------- - -Copyright (c) 2005-2007, Nick Galbreath -Copyright (c) 2013-2017, Alfred Klomp -Copyright (c) 2015-2017, Wojciech Mula -Copyright (c) 2016-2017, Matthieu Darbois -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - -- Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for RFC 3492 ---------------------------- - -The punycode implementation is based on the sample code in RFC 3492 - -Copyright (C) The Internet Society (2003). All Rights Reserved. - -This document and translations of it may be copied and furnished to -others, and derivative works that comment on or otherwise explain it -or assist in its implementation may be prepared, copied, published -and distributed, in whole or in part, without restriction of any -kind, provided that the above copyright notice and this paragraph are -included on all such copies and derivative works. However, this -document itself may not be modified in any way, such as by removing -the copyright notice or references to the Internet Society or other -Internet organizations, except as needed for the purpose of -developing Internet standards in which case the procedures for -copyrights defined in the Internet Standards process must be -followed, or as required to translate it into languages other than -English. - -The limited permissions granted above are perpetual and will not be -revoked by the Internet Society or its successors or assigns. - -This document and the information contained herein is provided on an -"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -License notice for Algorithm from Internet Draft document "UUIDs and GUIDs" ---------------------------------------------------------------------------- - -Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. -Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & -Digital Equipment Corporation, Maynard, Mass. -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: permission to use, copy, -modify, and distribute this file for any purpose is hereby -granted without fee, provided that the above copyright notices and -this notice appears in all source code copies, and that none of -the names of Open Software Foundation, Inc., Hewlett-Packard -Company, or Digital Equipment Corporation be used in advertising -or publicity pertaining to distribution of the software without -specific, written prior permission. Neither Open Software -Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital Equipment -Corporation makes any representations about the suitability of -this software for any purpose. - -Copyright(C) The Internet Society 1997. All Rights Reserved. - -This document and translations of it may be copied and furnished to others, -and derivative works that comment on or otherwise explain it or assist in -its implementation may be prepared, copied, published and distributed, in -whole or in part, without restriction of any kind, provided that the above -copyright notice and this paragraph are included on all such copies and -derivative works.However, this document itself may not be modified in any -way, such as by removing the copyright notice or references to the Internet -Society or other Internet organizations, except as needed for the purpose of -developing Internet standards in which case the procedures for copyrights -defined in the Internet Standards process must be followed, or as required -to translate it into languages other than English. - -The limited permissions granted above are perpetual and will not be revoked -by the Internet Society or its successors or assigns. - -This document and the information contained herein is provided on an "AS IS" -basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE -DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY -RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A -PARTICULAR PURPOSE. - -License notice for Algorithm from RFC 4122 - -A Universally Unique IDentifier (UUID) URN Namespace ----------------------------------------------------- - -Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. -Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & -Digital Equipment Corporation, Maynard, Mass. -Copyright (c) 1998 Microsoft. -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: permission to use, copy, -modify, and distribute this file for any purpose is hereby -granted without fee, provided that the above copyright notices and -this notice appears in all source code copies, and that none of -the names of Open Software Foundation, Inc., Hewlett-Packard -Company, Microsoft, or Digital Equipment Corporation be used in -advertising or publicity pertaining to distribution of the software -without specific, written prior permission. Neither Open Software -Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital -Equipment Corporation makes any representations about the -suitability of this software for any purpose." - -License notice for The LLVM Compiler Infrastructure ---------------------------------------------------- - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. - -License notice for Bob Jenkins ------------------------------- - -By Bob Jenkins, 1996. bob_jenkins@burtleburtle.net. You may use this -code any way you wish, private, educational, or commercial. It's free. - -License notice for Greg Parker ------------------------------- - -Greg Parker gparker@cs.stanford.edu December 2000 -This code is in the public domain and may be copied or modified without -permission. - -License notice for libunwind based code ----------------------------------------- - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License notice for Printing Floating-Point Numbers (Dragon4) ------------------------------------------------------------- - -/****************************************************************************** - Copyright (c) 2014 Ryan Juckett - http://www.ryanjuckett.com/ - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - - 3. This notice may not be removed or altered from any source - distribution. -******************************************************************************/ - -License notice for Printing Floating-point Numbers (Grisu3) ------------------------------------------------------------ - -Copyright 2012 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for xxHash -------------------------- - -xxHash Library -Copyright (c) 2012-2014, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for Berkeley SoftFloat Release 3e ------------------------------------------------- - -https://github.com/ucb-bar/berkeley-softfloat-3 -https://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt - -License for Berkeley SoftFloat Release 3e - -John R. Hauser -2018 January 20 - -The following applies to the whole of SoftFloat Release 3e as well as to -each source file individually. - -Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the -University of California. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions, and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE -DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for xoshiro RNGs --------------------------------- - -Written in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org) - -To the extent possible under law, the author has dedicated all copyright -and related and neighboring rights to this software to the public domain -worldwide. This software is distributed without any warranty. - -See . - -License for fastmod (https://github.com/lemire/fastmod) and ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data) --------------------------------------- - - Copyright 2018 Daniel Lemire - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -License notice for The C++ REST SDK ------------------------------------ - -C++ REST SDK - -The MIT License (MIT) - -Copyright (c) Microsoft Corporation - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -License notice for MessagePack-CSharp -------------------------------------- - -MessagePack for C# - -MIT License - -Copyright (c) 2017 Yoshifumi Kawai - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -License notice for lz4net -------------------------------------- - -lz4net - -Copyright (c) 2013-2017, Milosz Krajewski - -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License notice for Nerdbank.Streams ------------------------------------ - -The MIT License (MIT) - -Copyright (c) Andrew Arnott - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -License notice for RapidJSON ----------------------------- - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -Licensed under the MIT License (the "License"); you may not use this file except -in compliance with the License. You may obtain a copy of the License at - -http://opensource.org/licenses/MIT - -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. - -License notice for DirectX Math Library ---------------------------------------- - -https://github.com/microsoft/DirectXMath/blob/master/LICENSE - - The MIT License (MIT) - -Copyright (c) 2011-2020 Microsoft Corp - -Permission is hereby granted, free of charge, to any person obtaining a copy of this -software and associated documentation files (the "Software"), to deal in the Software -without restriction, including without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be included in all copies -or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF -CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License notice for ldap4net ---------------------------- - -The MIT License (MIT) - -Copyright (c) 2018 Alexander Chermyanin - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -License notice for vectorized sorting code ------------------------------------------- - -MIT License - -Copyright (c) 2020 Dan Shechter - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -License notice for musl ------------------------ - -musl as a whole is licensed under the following standard MIT license: - -Copyright © 2005-2020 Rich Felker, et al. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -License notice for "Faster Unsigned Division by Constants" ------------------------------- - -Reference implementations of computing and using the "magic number" approach to dividing -by constants, including codegen instructions. The unsigned division incorporates the -"round down" optimization per ridiculous_fish. - -This is free and unencumbered software. Any copyright is dedicated to the Public Domain. - - -License notice for mimalloc ------------------------------------ - -MIT License - -Copyright (c) 2019 Microsoft Corporation, Daan Leijen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive.meta deleted file mode 100644 index 16dfdfe9..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f4213adfea72d9240a09f40695da02e9 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0.meta deleted file mode 100644 index ce1a0aac..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d8739582cedf4f74da8a39231ff16e58 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets deleted file mode 100644 index 98eb1d3b..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets.meta deleted file mode 100644 index dfc49876..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 503a5ac04b691ab48b605122089a63f4 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1.meta deleted file mode 100644 index 1d9eb0fe..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 23320644219dec0458a5459a4dd27ef9 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._.meta deleted file mode 100644 index 56679ec7..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 852620e6ae9311740af3d7cdd082b899 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta deleted file mode 100644 index 29f4bca0..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4e171f328f7c83c4fae2179e09e4ae38 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta deleted file mode 100644 index 71f3bae4..00000000 --- a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0320b56f1a748e74daec15e95b977570 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 491a80a97880de93aa893f6974c5f76891d2de73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18024 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 - - - + - + \ No newline at end of file diff --git a/JNFrame/AstarPathfindingProject.csproj b/JNFrame/AstarPathfindingProject.csproj index 62cc7605..7a09c02a 100644 --- a/JNFrame/AstarPathfindingProject.csproj +++ b/JNFrame/AstarPathfindingProject.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\AstarPathfindingProject\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,179 +41,175 @@ false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -228,301 +224,289 @@ - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -530,389 +514,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/AstarPathfindingProjectEditor.csproj b/JNFrame/AstarPathfindingProjectEditor.csproj index 8594e172..47691c34 100644 --- a/JNFrame/AstarPathfindingProjectEditor.csproj +++ b/JNFrame/AstarPathfindingProjectEditor.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\AstarPathfindingProjectEditor\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;UNITY_EDITOR_ONLY_COMPILATION + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,343 +41,339 @@ false - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -385,401 +381,401 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll @@ -787,12 +783,12 @@ D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.UI.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.TestRunner.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll + diff --git a/JNFrame/BestHTTP.csproj b/JNFrame/BestHTTP.csproj index ab00b0b2..b68168d2 100644 --- a/JNFrame/BestHTTP.csproj +++ b/JNFrame/BestHTTP.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\BestHTTP\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,2007 +41,2003 @@ false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2051,301 +2047,289 @@ - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -2353,389 +2337,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/CaseSensitiveTest b/JNFrame/CaseSensitiveTest deleted file mode 100644 index e69de29b..00000000 diff --git a/JNFrame/JNFrame.sln b/JNFrame/JNFrame.sln index 0f86120b..366b0075 100644 --- a/JNFrame/JNFrame.sln +++ b/JNFrame/JNFrame.sln @@ -1,67 +1,67 @@  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JNGame", "JNGame.csproj", "{6daf7f60-fa83-da88-56be-04871b5df574}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask", "UniTask.csproj", "{39f5acb9-cdbb-9f48-497c-14159a0afd38}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BestHTTP", "BestHTTP.csproj", "{49f1e414-166b-61b7-ba11-ad89c8d920ee}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AstarPathfindingProject", "AstarPathfindingProject.csproj", "{01d387ea-c776-81ef-4b5e-bf013e2cd20f}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask", "UniTask.csproj", "{39f5acb9-cdbb-9f48-497c-14159a0afd38}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JNGame", "JNGame.csproj", "{6daf7f60-fa83-da88-56be-04871b5df574}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{3ca4410c-c33b-25ce-55bc-3a432b9830ed}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Linq", "UniTask.Linq.csproj", "{7f60f694-1f75-f2f0-5fde-36ccb7fd82d1}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Editor", "UniTask.Editor.csproj", "{295d565d-1437-bd18-5c54-a9d5211832bd}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Addressables", "UniTask.Addressables.csproj", "{6d8bd378-3e5b-6997-5e5e-288243f0f72b}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AstarPathfindingProjectEditor", "AstarPathfindingProjectEditor.csproj", "{c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App", "App.csproj", "{86f5a836-c92e-bcf7-bc96-4683fb573cb1}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.TextMeshPro", "UniTask.TextMeshPro.csproj", "{4b964c85-7c9d-2d07-a2e0-8595262e4e96}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PackageToolsEditor", "PackageToolsEditor.csproj", "{d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.DOTween", "UniTask.DOTween.csproj", "{99c4c7d2-ca96-1038-95e0-77e225df2b06}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{3ca4410c-c33b-25ce-55bc-3a432b9830ed}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App", "App.csproj", "{86f5a836-c92e-bcf7-bc96-4683fb573cb1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Addressables", "UniTask.Addressables.csproj", "{6d8bd378-3e5b-6997-5e5e-288243f0f72b}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.TextMeshPro", "UniTask.TextMeshPro.csproj", "{4b964c85-7c9d-2d07-a2e0-8595262e4e96}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AstarPathfindingProjectEditor", "AstarPathfindingProjectEditor.csproj", "{c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{520fb43a-8c94-8ecf-d51a-d5407030f9ec}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PackageToolsEditor", "PackageToolsEditor.csproj", "{d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Editor", "UniTask.Editor.csproj", "{295d565d-1437-bd18-5c54-a9d5211832bd}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6daf7f60-fa83-da88-56be-04871b5df574}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6daf7f60-fa83-da88-56be-04871b5df574}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39f5acb9-cdbb-9f48-497c-14159a0afd38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39f5acb9-cdbb-9f48-497c-14159a0afd38}.Debug|Any CPU.Build.0 = Debug|Any CPU {49f1e414-166b-61b7-ba11-ad89c8d920ee}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {49f1e414-166b-61b7-ba11-ad89c8d920ee}.Debug|Any CPU.Build.0 = Debug|Any CPU {01d387ea-c776-81ef-4b5e-bf013e2cd20f}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {01d387ea-c776-81ef-4b5e-bf013e2cd20f}.Debug|Any CPU.Build.0 = Debug|Any CPU - {39f5acb9-cdbb-9f48-497c-14159a0afd38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {39f5acb9-cdbb-9f48-497c-14159a0afd38}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6daf7f60-fa83-da88-56be-04871b5df574}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6daf7f60-fa83-da88-56be-04871b5df574}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3ca4410c-c33b-25ce-55bc-3a432b9830ed}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3ca4410c-c33b-25ce-55bc-3a432b9830ed}.Debug|Any CPU.Build.0 = Debug|Any CPU {7f60f694-1f75-f2f0-5fde-36ccb7fd82d1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7f60f694-1f75-f2f0-5fde-36ccb7fd82d1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {295d565d-1437-bd18-5c54-a9d5211832bd}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {295d565d-1437-bd18-5c54-a9d5211832bd}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6d8bd378-3e5b-6997-5e5e-288243f0f72b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6d8bd378-3e5b-6997-5e5e-288243f0f72b}.Debug|Any CPU.Build.0 = Debug|Any CPU - {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}.Debug|Any CPU.Build.0 = Debug|Any CPU - {86f5a836-c92e-bcf7-bc96-4683fb573cb1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {86f5a836-c92e-bcf7-bc96-4683fb573cb1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4b964c85-7c9d-2d07-a2e0-8595262e4e96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4b964c85-7c9d-2d07-a2e0-8595262e4e96}.Debug|Any CPU.Build.0 = Debug|Any CPU - {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}.Debug|Any CPU.Build.0 = Debug|Any CPU {99c4c7d2-ca96-1038-95e0-77e225df2b06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {99c4c7d2-ca96-1038-95e0-77e225df2b06}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3ca4410c-c33b-25ce-55bc-3a432b9830ed}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3ca4410c-c33b-25ce-55bc-3a432b9830ed}.Debug|Any CPU.Build.0 = Debug|Any CPU + {86f5a836-c92e-bcf7-bc96-4683fb573cb1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {86f5a836-c92e-bcf7-bc96-4683fb573cb1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6d8bd378-3e5b-6997-5e5e-288243f0f72b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6d8bd378-3e5b-6997-5e5e-288243f0f72b}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4b964c85-7c9d-2d07-a2e0-8595262e4e96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4b964c85-7c9d-2d07-a2e0-8595262e4e96}.Debug|Any CPU.Build.0 = Debug|Any CPU + {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {c006c4ab-5a1d-a86c-7397-6d5ecfbfd468}.Debug|Any CPU.Build.0 = Debug|Any CPU {520fb43a-8c94-8ecf-d51a-d5407030f9ec}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {520fb43a-8c94-8ecf-d51a-d5407030f9ec}.Debug|Any CPU.Build.0 = Debug|Any CPU + {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {d850d0b5-3d03-e2f4-ebd4-5c75d2c94d81}.Debug|Any CPU.Build.0 = Debug|Any CPU + {295d565d-1437-bd18-5c54-a9d5211832bd}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {295d565d-1437-bd18-5c54-a9d5211832bd}.Debug|Any CPU.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/JNFrame/JNGame.csproj b/JNFrame/JNGame.csproj index 5f285a95..be46be13 100644 --- a/JNFrame/JNGame.csproj +++ b/JNFrame/JNGame.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\JNGame\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,733 +41,725 @@ false - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -775,389 +767,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/Logs/AssetImportWorker0-prev.log b/JNFrame/Logs/AssetImportWorker0-prev.log index 45b0d4af..8a6e42a3 100644 --- a/JNFrame/Logs/AssetImportWorker0-prev.log +++ b/JNFrame/Logs/AssetImportWorker0-prev.log @@ -1,10 +1,10 @@ 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' +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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 +D:\Unity\2021.3.33f1c1\Editor\Unity.exe -adb2 -batchMode -noUpm @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker0.log -srvPort -58814 +61395 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -39,8 +39,6 @@ D:/myproject/JisolGame/JNFrame "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" @@ -49,15 +47,16 @@ 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 [33892] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 3279824385 [EditorId] 3279824385 [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 [33892] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 3279824385 [EditorId] 3279824385 [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. +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 231.58 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 +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: @@ -67,7 +66,6403 @@ Direct3D: 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,address=127.0.0.1:56484,server=n,suspend=y +Mono path[0] = 'D:/Unity/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56376 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.165117 seconds. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 539 ms +Refreshing native plugins compatible for Editor in 157.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 3.095 seconds +Domain Reload Profiling: + ReloadAssembly (3096ms) + BeginReloadAssembly (502ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (1561ms) + LoadAssemblies (495ms) + RebuildTransferFunctionScriptingTraits (1ms) + SetupTypeCache (497ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (25ms) + SetupLoadedEditorAssemblies (971ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (645ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (158ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (115ms) + ProcessInitializeOnLoadMethodAttributes (51ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.022063 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Package Manager log level set to [2] +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.954 seconds +Domain Reload Profiling: + ReloadAssembly (1955ms) + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (19ms) + EndReloadAssembly (1664ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (465ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (968ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (799ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6364. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 6.032700 ms (FindLiveObjects: 1.399400 ms CreateObjectMapping: 0.792300 ms MarkObjects: 3.654500 ms DeleteObjects: 0.184200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 24631.840284 seconds. + path: Assets/Game/Script/Main.cs + artifactKey: Guid(00b2d35a0698b224fa03e09bed92aac7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/Main.cs using Guid(00b2d35a0698b224fa03e09bed92aac7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88d2fb9a140276782a65f0e7fb3fd154') in 0.057334 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020510 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.845 seconds +Domain Reload Profiling: + ReloadAssembly (1846ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1546ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (560ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (721ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (579ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6367. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 3.089700 ms (FindLiveObjects: 0.519300 ms CreateObjectMapping: 0.266800 ms MarkObjects: 2.256600 ms DeleteObjects: 0.044900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021718 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.693 seconds +Domain Reload Profiling: + ReloadAssembly (2694ms) + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (2324ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (574ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (1364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (214ms) + ProcessInitializeOnLoadAttributes (907ms) + ProcessInitializeOnLoadMethodAttributes (162ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6370. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 317.389400 ms (FindLiveObjects: 150.342000 ms CreateObjectMapping: 28.770100 ms MarkObjects: 138.221400 ms DeleteObjects: 0.053400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021530 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.095 seconds +Domain Reload Profiling: + ReloadAssembly (2096ms) + BeginReloadAssembly (245ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1669ms) + LoadAssemblies (220ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (551ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (87ms) + SetupLoadedEditorAssemblies (791ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6373. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 10.084100 ms (FindLiveObjects: 0.691700 ms CreateObjectMapping: 0.316800 ms MarkObjects: 8.992100 ms DeleteObjects: 0.080100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 99.646763 seconds. + path: Assets/Game/Scenes/Mode/新建æè´¨.mat + artifactKey: Guid(fbe17d6d158cf0647b9ae4f0f92bb421) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/新建æè´¨.mat using Guid(fbe17d6d158cf0647b9ae4f0f92bb421) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d7fa87492cc29236264c229deac2522') in 0.141125 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000068 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Debris.prefab + artifactKey: Guid(d567323cfec0342498408fae5b4863e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Debris.prefab using Guid(d567323cfec0342498408fae5b4863e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88b9744538068c92bc0dd32b5a283f9e') in 0.073876 seconds +Number of asset objects unloaded after import = 12 +======================================================================== +Received Import Request. + Time since last request: 0.000095 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1 + artifactKey: Guid(4ae0808b880e7664e90f076b6643904e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1 using Guid(4ae0808b880e7664e90f076b6643904e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ce1d1ac383f2d7c7fc754774bd1c4b7') in 0.016148 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 3.726241 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '07f194ee313fe1a667a4ef8169d684f7') in 0.090723 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018731 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.928 seconds +Domain Reload Profiling: + ReloadAssembly (1928ms) + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1571ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (453ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (851ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (669ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6417. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 4.691400 ms (FindLiveObjects: 0.527600 ms CreateObjectMapping: 0.477500 ms MarkObjects: 3.621000 ms DeleteObjects: 0.062800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 16.590412 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '510475dfe51854ad3f8268113f730bea') in 0.146310 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 8.621225 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b5b2c251ae1aee48f0d03dc673bd2e49') in 0.049698 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025019 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.877 seconds +Domain Reload Profiling: + ReloadAssembly (1878ms) + BeginReloadAssembly (241ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (80ms) + EndReloadAssembly (1489ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (433ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (802ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (628ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6420. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 7.160400 ms (FindLiveObjects: 0.841100 ms CreateObjectMapping: 0.971000 ms MarkObjects: 5.261200 ms DeleteObjects: 0.083800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019854 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 3.015 seconds +Domain Reload Profiling: + ReloadAssembly (3016ms) + BeginReloadAssembly (463ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + EndReloadAssembly (2316ms) + LoadAssemblies (370ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (605ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (1204ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (46ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (173ms) + ProcessInitializeOnLoadAttributes (934ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6423. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 5.707000 ms (FindLiveObjects: 0.915400 ms CreateObjectMapping: 0.928600 ms MarkObjects: 3.770700 ms DeleteObjects: 0.088600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.053320 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.840 seconds +Domain Reload Profiling: + ReloadAssembly (1841ms) + BeginReloadAssembly (211ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1509ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (416ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (840ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (667ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6426. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 6.003700 ms (FindLiveObjects: 0.927100 ms CreateObjectMapping: 0.546000 ms MarkObjects: 4.440800 ms DeleteObjects: 0.086100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.029618 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.960 seconds +Domain Reload Profiling: + ReloadAssembly (1961ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1645ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (481ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (877ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (659ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6429. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 4.811000 ms (FindLiveObjects: 0.590200 ms CreateObjectMapping: 0.740100 ms MarkObjects: 3.429300 ms DeleteObjects: 0.049800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 244.887027 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f3905cd6a9c28fb9a56db70c225013e') in 0.019704 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.033306 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.514 seconds +Domain Reload Profiling: + ReloadAssembly (1514ms) + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (85ms) + EndReloadAssembly (1156ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (640ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 3.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6432. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 4.339700 ms (FindLiveObjects: 0.678400 ms CreateObjectMapping: 0.447100 ms MarkObjects: 3.144000 ms DeleteObjects: 0.068600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019855 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.584 seconds +Domain Reload Profiling: + ReloadAssembly (1585ms) + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1285ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (721ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6435. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.715100 ms (FindLiveObjects: 0.416400 ms CreateObjectMapping: 0.226200 ms MarkObjects: 2.049300 ms DeleteObjects: 0.022400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020284 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.490 seconds +Domain Reload Profiling: + ReloadAssembly (1491ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1232ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (691ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6438. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 4.604800 ms (FindLiveObjects: 0.893000 ms CreateObjectMapping: 1.149700 ms MarkObjects: 2.521800 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 95.941576 seconds. + path: Assets/Game/Scenes/Mode + artifactKey: Guid(7e4bbf503f03cf649bc465775f6572db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode using Guid(7e4bbf503f03cf649bc465775f6572db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f40f2c20ffd0f62167fcd2d508a6627f') in 0.017974 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.925095 seconds. + path: Assets/Game/Scenes/Mode/New Scene 2.unity + artifactKey: Guid(ea23ee7b15df68949a0ab7e5b4961b8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/New Scene 2.unity using Guid(ea23ee7b15df68949a0ab7e5b4961b8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43fe4bbe2add174b32238d8e4f022633') in 0.008560 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014810 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.546 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1281ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (723ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (579ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6441. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.884900 ms (FindLiveObjects: 0.373300 ms CreateObjectMapping: 0.198600 ms MarkObjects: 2.274200 ms DeleteObjects: 0.037300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019155 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.457 seconds +Domain Reload Profiling: + ReloadAssembly (1458ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1189ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (305ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (553ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6444. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.928500 ms (FindLiveObjects: 0.541500 ms CreateObjectMapping: 0.247900 ms MarkObjects: 2.097300 ms DeleteObjects: 0.040700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017441 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.487 seconds +Domain Reload Profiling: + ReloadAssembly (1488ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1202ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6447. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.492500 ms (FindLiveObjects: 0.555500 ms CreateObjectMapping: 0.319200 ms MarkObjects: 2.564300 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 53.893235 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4651c7a93c50895b646a414fa1f1343f') in 0.011578 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025219 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.564 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (250ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1197ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (685ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 3.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6450. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.165400 ms (FindLiveObjects: 0.433400 ms CreateObjectMapping: 0.208000 ms MarkObjects: 2.489500 ms DeleteObjects: 0.033400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014725 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.421 seconds +Domain Reload Profiling: + ReloadAssembly (1421ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1123ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (289ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6453. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 2.650900 ms (FindLiveObjects: 0.397900 ms CreateObjectMapping: 0.211900 ms MarkObjects: 2.011300 ms DeleteObjects: 0.028900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015259 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.571 seconds +Domain Reload Profiling: + ReloadAssembly (1571ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1279ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6456. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 4.114800 ms (FindLiveObjects: 0.714500 ms CreateObjectMapping: 0.421200 ms MarkObjects: 2.933000 ms DeleteObjects: 0.044200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017379 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1510ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1182ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (274ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (584ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6459. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.144200 ms (FindLiveObjects: 0.417300 ms CreateObjectMapping: 0.203800 ms MarkObjects: 2.482200 ms DeleteObjects: 0.039600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018927 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.396 seconds +Domain Reload Profiling: + ReloadAssembly (1397ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1119ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (295ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6462. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.131400 ms (FindLiveObjects: 0.628700 ms CreateObjectMapping: 0.335800 ms MarkObjects: 2.133700 ms DeleteObjects: 0.032200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016459 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.515 seconds +Domain Reload Profiling: + ReloadAssembly (1516ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1233ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (315ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (708ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (569ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6465. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.781200 ms (FindLiveObjects: 0.557500 ms CreateObjectMapping: 0.331700 ms MarkObjects: 2.844700 ms DeleteObjects: 0.046000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (23.0 KB). Loaded Objects now: 6465. +Memory consumption went from 95.2 MB to 95.1 MB. +Total: 3.304700 ms (FindLiveObjects: 0.599200 ms CreateObjectMapping: 0.281200 ms MarkObjects: 2.383800 ms DeleteObjects: 0.039300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6465. +Memory consumption went from 94.5 MB to 94.5 MB. +Total: 3.654800 ms (FindLiveObjects: 0.930700 ms CreateObjectMapping: 0.663200 ms MarkObjects: 2.030700 ms DeleteObjects: 0.028100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017154 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.473 seconds +Domain Reload Profiling: + ReloadAssembly (1474ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1155ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6468. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.541400 ms (FindLiveObjects: 0.375300 ms CreateObjectMapping: 0.188900 ms MarkObjects: 1.953900 ms DeleteObjects: 0.022200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 24.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6468. +Memory consumption went from 95.2 MB to 95.2 MB. +Total: 11.323000 ms (FindLiveObjects: 1.969600 ms CreateObjectMapping: 0.709600 ms MarkObjects: 8.569600 ms DeleteObjects: 0.070400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6468. +Memory consumption went from 94.8 MB to 94.8 MB. +Total: 3.530900 ms (FindLiveObjects: 0.705700 ms CreateObjectMapping: 0.254100 ms MarkObjects: 2.528700 ms DeleteObjects: 0.040600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6468. +Memory consumption went from 94.8 MB to 94.8 MB. +Total: 3.412000 ms (FindLiveObjects: 0.480400 ms CreateObjectMapping: 0.273200 ms MarkObjects: 2.617500 ms DeleteObjects: 0.039000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.031842 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 3.108 seconds +Domain Reload Profiling: + ReloadAssembly (3109ms) + BeginReloadAssembly (483ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (109ms) + EndReloadAssembly (2344ms) + LoadAssemblies (315ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (871ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (1019ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (163ms) + ProcessInitializeOnLoadAttributes (738ms) + ProcessInitializeOnLoadMethodAttributes (57ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6471. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 5.994900 ms (FindLiveObjects: 1.595600 ms CreateObjectMapping: 0.935900 ms MarkObjects: 3.392000 ms DeleteObjects: 0.068300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 12.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.9 KB). Loaded Objects now: 6471. +Memory consumption went from 95.5 MB to 95.5 MB. +Total: 4.635500 ms (FindLiveObjects: 0.866000 ms CreateObjectMapping: 0.383000 ms MarkObjects: 3.331400 ms DeleteObjects: 0.053100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 7.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6471. +Memory consumption went from 94.6 MB to 94.5 MB. +Total: 2.823400 ms (FindLiveObjects: 0.397800 ms CreateObjectMapping: 0.203800 ms MarkObjects: 2.197200 ms DeleteObjects: 0.023500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6471. +Memory consumption went from 94.6 MB to 94.5 MB. +Total: 2.385000 ms (FindLiveObjects: 0.386400 ms CreateObjectMapping: 0.229000 ms MarkObjects: 1.745700 ms DeleteObjects: 0.023300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016981 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1512ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1170ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (316ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6474. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 4.209000 ms (FindLiveObjects: 0.609200 ms CreateObjectMapping: 0.274900 ms MarkObjects: 3.253900 ms DeleteObjects: 0.069500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 691.785078 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc8fefa05e00bad12ede2ff8a7c077cf') in 0.014868 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 23.004021 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '796e79d5c11bb5988acd07528d4641be') in 0.212621 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 0.643948 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ade8077055ce2edb1d1635d084cf73a') in 0.012887 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014883 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.484 seconds +Domain Reload Profiling: + ReloadAssembly (1484ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1208ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (316ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (551ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6477. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.689300 ms (FindLiveObjects: 0.444800 ms CreateObjectMapping: 0.297500 ms MarkObjects: 1.920500 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 80.275917 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a545295172a1dc94fb1a7c0f74dcc4b') in 0.014259 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015929 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.515 seconds +Domain Reload Profiling: + ReloadAssembly (1516ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1245ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (564ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6480. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.760100 ms (FindLiveObjects: 0.448400 ms CreateObjectMapping: 0.302400 ms MarkObjects: 1.977300 ms DeleteObjects: 0.030500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 40.939814 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f4eb0e085151a8d514b3e4e2eee6bdd') in 0.078828 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016436 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.517 seconds +Domain Reload Profiling: + ReloadAssembly (1517ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1244ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (312ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (714ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (566ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6483. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.224700 ms (FindLiveObjects: 0.511500 ms CreateObjectMapping: 0.335400 ms MarkObjects: 2.346800 ms DeleteObjects: 0.029500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 8.048117 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c94174cd87b437edaaafef373639d2a0') in 0.094384 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014507 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.468 seconds +Domain Reload Profiling: + ReloadAssembly (1468ms) + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + EndReloadAssembly (1113ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6486. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.854000 ms (FindLiveObjects: 0.462900 ms CreateObjectMapping: 0.328300 ms MarkObjects: 2.031000 ms DeleteObjects: 0.030100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017927 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.381 seconds +Domain Reload Profiling: + ReloadAssembly (1381ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1092ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6489. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.059200 ms (FindLiveObjects: 0.403900 ms CreateObjectMapping: 0.223600 ms MarkObjects: 2.404600 ms DeleteObjects: 0.025900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018480 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.517 seconds +Domain Reload Profiling: + ReloadAssembly (1517ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1243ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (319ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (730ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (586ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6492. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.609100 ms (FindLiveObjects: 0.481000 ms CreateObjectMapping: 0.441100 ms MarkObjects: 2.574800 ms DeleteObjects: 0.110800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6492. +Memory consumption went from 95.3 MB to 95.3 MB. +Total: 3.810000 ms (FindLiveObjects: 0.574800 ms CreateObjectMapping: 0.437000 ms MarkObjects: 2.732400 ms DeleteObjects: 0.063900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 13.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6492. +Memory consumption went from 94.9 MB to 94.9 MB. +Total: 5.651800 ms (FindLiveObjects: 0.667400 ms CreateObjectMapping: 0.626100 ms MarkObjects: 4.285300 ms DeleteObjects: 0.070000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 12.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6492. +Memory consumption went from 94.9 MB to 94.9 MB. +Total: 6.974900 ms (FindLiveObjects: 1.515000 ms CreateObjectMapping: 1.137800 ms MarkObjects: 4.147600 ms DeleteObjects: 0.170100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 175.358788 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6755ac1219e7923f239c5f403d20462') in 0.231796 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018749 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.541 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1244ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (708ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (575ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6495. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.636100 ms (FindLiveObjects: 0.430900 ms CreateObjectMapping: 0.203700 ms MarkObjects: 1.972600 ms DeleteObjects: 0.027900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.1 KB). Loaded Objects now: 6495. +Memory consumption went from 95.6 MB to 95.5 MB. +Total: 6.180100 ms (FindLiveObjects: 1.053900 ms CreateObjectMapping: 0.855100 ms MarkObjects: 4.181800 ms DeleteObjects: 0.086700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 223.955254 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3de9db723a48ac98900cc1e0a1bc7f85') in 0.009415 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 12.499443 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5732562f845faeb11aef454f8da75008') in 0.001988 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015540 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.637 seconds +Domain Reload Profiling: + ReloadAssembly (1638ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1380ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (446ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (716ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6498. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.279800 ms (FindLiveObjects: 0.499500 ms CreateObjectMapping: 0.564000 ms MarkObjects: 2.176800 ms DeleteObjects: 0.038100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 170.290152 seconds. + path: Assets/Game/Script/UIMain.cs + artifactKey: Guid(b87c4476f7ad6954e91fa3172d2b723a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/UIMain.cs using Guid(b87c4476f7ad6954e91fa3172d2b723a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b829c0251f0b0a99ba9230fd91703c1') in 0.025346 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019007 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.901 seconds +Domain Reload Profiling: + ReloadAssembly (1902ms) + BeginReloadAssembly (215ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1538ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (510ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (801ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6501. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 5.016800 ms (FindLiveObjects: 0.652500 ms CreateObjectMapping: 0.591800 ms MarkObjects: 3.733300 ms DeleteObjects: 0.037200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021942 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.143 seconds +Domain Reload Profiling: + ReloadAssembly (2144ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1823ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1059ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (840ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (48ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 4.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6504. +Memory consumption went from 212.5 MB to 212.4 MB. +Total: 5.109200 ms (FindLiveObjects: 0.828900 ms CreateObjectMapping: 0.714900 ms MarkObjects: 3.496300 ms DeleteObjects: 0.066800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018630 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1269ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (696ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6507. +Memory consumption went from 212.5 MB to 212.4 MB. +Total: 2.767400 ms (FindLiveObjects: 0.484900 ms CreateObjectMapping: 0.270500 ms MarkObjects: 1.987000 ms DeleteObjects: 0.024300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015692 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1262ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (698ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6510. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 4.867000 ms (FindLiveObjects: 1.020000 ms CreateObjectMapping: 1.054200 ms MarkObjects: 2.716200 ms DeleteObjects: 0.072800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 279.792172 seconds. + path: Assets/Game/Scenes + artifactKey: Guid(9e21a189fdbf0f14e8006a71142ecb32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes using Guid(9e21a189fdbf0f14e8006a71142ecb32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '169ad6afa991ac4326aacaf9177b29b9') in 0.020231 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.576797 seconds. + path: Assets/Game/Scenes/UIScene.unity + artifactKey: Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/UIScene.unity using Guid(786aa53c6477525459c2f878d3c43a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '973f4944ed040da0540ad16fb0f3887e') in 0.002380 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 7.369281 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs + artifactKey: Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs using Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '144790add18cc860c5b5d1c755e8481f') in 0.007304 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 16.415855 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs + artifactKey: Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript/GWorldSync01UI.cs using Guid(e61b94b311b605b4195e022f5370e558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be2a8bf7d459e4550a218b4c6eb6e64c') in 0.002733 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021618 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.432 seconds +Domain Reload Profiling: + ReloadAssembly (1432ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1135ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (646ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6513. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.990800 ms (FindLiveObjects: 0.602300 ms CreateObjectMapping: 0.262600 ms MarkObjects: 3.075000 ms DeleteObjects: 0.049200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018459 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.458 seconds +Domain Reload Profiling: + ReloadAssembly (1459ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1173ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (516ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6516. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.578100 ms (FindLiveObjects: 0.380100 ms CreateObjectMapping: 0.195700 ms MarkObjects: 1.982300 ms DeleteObjects: 0.019400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015111 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1258ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (321ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (731ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (587ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6519. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.634300 ms (FindLiveObjects: 0.433600 ms CreateObjectMapping: 0.218900 ms MarkObjects: 1.949900 ms DeleteObjects: 0.031000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 7.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.1 KB). Loaded Objects now: 6519. +Memory consumption went from 95.4 MB to 95.4 MB. +Total: 2.831600 ms (FindLiveObjects: 0.371000 ms CreateObjectMapping: 0.201200 ms MarkObjects: 2.241700 ms DeleteObjects: 0.016900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 7.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6519. +Memory consumption went from 94.8 MB to 94.8 MB. +Total: 2.689400 ms (FindLiveObjects: 0.392000 ms CreateObjectMapping: 0.221200 ms MarkObjects: 2.042400 ms DeleteObjects: 0.032500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014308 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.580 seconds +Domain Reload Profiling: + ReloadAssembly (1581ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1252ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (331ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (560ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6522. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.995100 ms (FindLiveObjects: 0.407600 ms CreateObjectMapping: 0.211200 ms MarkObjects: 2.312100 ms DeleteObjects: 0.063100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6522. +Memory consumption went from 95.4 MB to 95.4 MB. +Total: 3.429500 ms (FindLiveObjects: 0.591200 ms CreateObjectMapping: 0.335700 ms MarkObjects: 2.431600 ms DeleteObjects: 0.068800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020867 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.244 seconds +Domain Reload Profiling: + ReloadAssembly (2245ms) + BeginReloadAssembly (329ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (82ms) + EndReloadAssembly (1784ms) + LoadAssemblies (237ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (1137ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (927ms) + ProcessInitializeOnLoadMethodAttributes (84ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6525. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 5.931500 ms (FindLiveObjects: 0.891200 ms CreateObjectMapping: 0.735600 ms MarkObjects: 4.245400 ms DeleteObjects: 0.056000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020350 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.096 seconds +Domain Reload Profiling: + ReloadAssembly (2096ms) + BeginReloadAssembly (275ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1684ms) + LoadAssemblies (207ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (694ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (762ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (607ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6528. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.288400 ms (FindLiveObjects: 0.703000 ms CreateObjectMapping: 0.295500 ms MarkObjects: 2.253400 ms DeleteObjects: 0.034500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.033257 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.920 seconds +Domain Reload Profiling: + ReloadAssembly (1921ms) + BeginReloadAssembly (275ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + EndReloadAssembly (1513ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (425ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (819ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (30ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6531. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.689000 ms (FindLiveObjects: 0.442900 ms CreateObjectMapping: 0.285600 ms MarkObjects: 2.922200 ms DeleteObjects: 0.036600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020726 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.936 seconds +Domain Reload Profiling: + ReloadAssembly (1937ms) + BeginReloadAssembly (306ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + EndReloadAssembly (1505ms) + LoadAssemblies (203ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (815ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (647ms) + ProcessInitializeOnLoadMethodAttributes (52ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6534. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.636500 ms (FindLiveObjects: 0.454200 ms CreateObjectMapping: 0.213000 ms MarkObjects: 1.943100 ms DeleteObjects: 0.025100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015259 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.082 seconds +Domain Reload Profiling: + ReloadAssembly (2083ms) + BeginReloadAssembly (298ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + EndReloadAssembly (1644ms) + LoadAssemblies (199ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (521ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (819ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (618ms) + ProcessInitializeOnLoadMethodAttributes (49ms) + AfterProcessingInitializeOnLoad (34ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6537. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 6.514200 ms (FindLiveObjects: 0.914900 ms CreateObjectMapping: 0.794200 ms MarkObjects: 4.721200 ms DeleteObjects: 0.081600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 759.979980 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'afde6878fb9eac6ed3e4a71ec610dda8') in 0.096641 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016815 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1509ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1245ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (707ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6540. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.250200 ms (FindLiveObjects: 0.675300 ms CreateObjectMapping: 0.369100 ms MarkObjects: 2.171000 ms DeleteObjects: 0.033300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 75.517199 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a888ba7203e551d7333b334e64cdd09') in 0.076031 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014620 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.582 seconds +Domain Reload Profiling: + ReloadAssembly (1583ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1267ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (396ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6543. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.597800 ms (FindLiveObjects: 0.472200 ms CreateObjectMapping: 0.201000 ms MarkObjects: 1.902900 ms DeleteObjects: 0.020800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014647 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.410 seconds +Domain Reload Profiling: + ReloadAssembly (1411ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1123ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (282ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6546. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.026200 ms (FindLiveObjects: 0.542900 ms CreateObjectMapping: 0.264100 ms MarkObjects: 2.193400 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014705 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.508 seconds +Domain Reload Profiling: + ReloadAssembly (1509ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1257ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6549. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.321700 ms (FindLiveObjects: 0.408700 ms CreateObjectMapping: 0.222000 ms MarkObjects: 2.634500 ms DeleteObjects: 0.054900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018357 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.475 seconds +Domain Reload Profiling: + ReloadAssembly (1476ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1215ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (323ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6552. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.375200 ms (FindLiveObjects: 0.687700 ms CreateObjectMapping: 0.244900 ms MarkObjects: 2.402500 ms DeleteObjects: 0.035800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019704 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.490 seconds +Domain Reload Profiling: + ReloadAssembly (1491ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1230ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (352ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (537ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6555. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.001600 ms (FindLiveObjects: 0.451400 ms CreateObjectMapping: 0.265400 ms MarkObjects: 2.239000 ms DeleteObjects: 0.044500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016020 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.414 seconds +Domain Reload Profiling: + ReloadAssembly (1415ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1116ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (655ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6558. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.568700 ms (FindLiveObjects: 0.408400 ms CreateObjectMapping: 0.399200 ms MarkObjects: 2.706500 ms DeleteObjects: 0.052900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 342.927674 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56caf9aec7937c02b0e2f41ec659898e') in 0.081919 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015701 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1587ms) + BeginReloadAssembly (262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1193ms) + LoadAssemblies (214ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6561. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.800600 ms (FindLiveObjects: 0.481500 ms CreateObjectMapping: 0.293100 ms MarkObjects: 1.995400 ms DeleteObjects: 0.029200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018128 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.492 seconds +Domain Reload Profiling: + ReloadAssembly (1493ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1212ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6564. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.591500 ms (FindLiveObjects: 0.392700 ms CreateObjectMapping: 0.615800 ms MarkObjects: 2.539500 ms DeleteObjects: 0.042300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021789 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.395 seconds +Domain Reload Profiling: + ReloadAssembly (1396ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1122ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6567. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.617400 ms (FindLiveObjects: 0.410700 ms CreateObjectMapping: 0.225500 ms MarkObjects: 1.952600 ms DeleteObjects: 0.027700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018378 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.415 seconds +Domain Reload Profiling: + ReloadAssembly (1416ms) + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1117ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6570. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 4.615700 ms (FindLiveObjects: 0.970600 ms CreateObjectMapping: 0.783100 ms MarkObjects: 2.812700 ms DeleteObjects: 0.046500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019623 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.602 seconds +Domain Reload Profiling: + ReloadAssembly (1603ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1314ms) + LoadAssemblies (183ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (667ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6573. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.566800 ms (FindLiveObjects: 0.382100 ms CreateObjectMapping: 0.202400 ms MarkObjects: 1.962600 ms DeleteObjects: 0.018800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022183 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.494 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1191ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (666ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (538ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6576. +Memory consumption went from 212.5 MB to 212.4 MB. +Total: 3.032200 ms (FindLiveObjects: 0.412200 ms CreateObjectMapping: 0.242200 ms MarkObjects: 2.352100 ms DeleteObjects: 0.024500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014944 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.489 seconds +Domain Reload Profiling: + ReloadAssembly (1489ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1224ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (731ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6579. +Memory consumption went from 212.5 MB to 212.4 MB. +Total: 2.792400 ms (FindLiveObjects: 0.507600 ms CreateObjectMapping: 0.322400 ms MarkObjects: 1.933200 ms DeleteObjects: 0.028100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019254 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.477 seconds +Domain Reload Profiling: + ReloadAssembly (1478ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1201ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (560ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6582. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.046500 ms (FindLiveObjects: 0.559000 ms CreateObjectMapping: 0.366200 ms MarkObjects: 2.083000 ms DeleteObjects: 0.036200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015619 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1453ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1155ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (282ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (62ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6585. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 5.845300 ms (FindLiveObjects: 1.068700 ms CreateObjectMapping: 0.882200 ms MarkObjects: 3.695800 ms DeleteObjects: 0.192900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019259 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.989 seconds +Domain Reload Profiling: + ReloadAssembly (1990ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1694ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (487ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (232ms) + SetupLoadedEditorAssemblies (795ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (627ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6588. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.231400 ms (FindLiveObjects: 0.484200 ms CreateObjectMapping: 0.286800 ms MarkObjects: 2.423300 ms DeleteObjects: 0.035000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.026187 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.460 seconds +Domain Reload Profiling: + ReloadAssembly (1461ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1166ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (325ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6591. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.400600 ms (FindLiveObjects: 0.410200 ms CreateObjectMapping: 0.208900 ms MarkObjects: 1.758500 ms DeleteObjects: 0.022100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018527 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.431 seconds +Domain Reload Profiling: + ReloadAssembly (1432ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1125ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (278ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (679ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6594. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 4.186700 ms (FindLiveObjects: 0.821400 ms CreateObjectMapping: 0.286400 ms MarkObjects: 3.031400 ms DeleteObjects: 0.046100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.032828 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1208ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6597. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.992800 ms (FindLiveObjects: 0.834200 ms CreateObjectMapping: 0.404300 ms MarkObjects: 2.710100 ms DeleteObjects: 0.040800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022180 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (276ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1189ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (303ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6600. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.364200 ms (FindLiveObjects: 0.713800 ms CreateObjectMapping: 0.344700 ms MarkObjects: 2.256400 ms DeleteObjects: 0.047400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014394 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.433 seconds +Domain Reload Profiling: + ReloadAssembly (1433ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1138ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6603. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 4.755700 ms (FindLiveObjects: 0.824100 ms CreateObjectMapping: 0.690600 ms MarkObjects: 3.183000 ms DeleteObjects: 0.055400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.028706 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.698 seconds +Domain Reload Profiling: + ReloadAssembly (1698ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1347ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (453ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (662ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6606. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 4.416200 ms (FindLiveObjects: 0.624400 ms CreateObjectMapping: 0.329200 ms MarkObjects: 3.405400 ms DeleteObjects: 0.054500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023083 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.375 seconds +Domain Reload Profiling: + ReloadAssembly (1376ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1077ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6609. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.691700 ms (FindLiveObjects: 0.462000 ms CreateObjectMapping: 0.212100 ms MarkObjects: 1.986400 ms DeleteObjects: 0.030200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015529 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1528ms) + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1205ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6612. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.860400 ms (FindLiveObjects: 0.964100 ms CreateObjectMapping: 0.396800 ms MarkObjects: 2.329100 ms DeleteObjects: 0.168200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019066 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.958 seconds +Domain Reload Profiling: + ReloadAssembly (1959ms) + BeginReloadAssembly (291ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (88ms) + EndReloadAssembly (1513ms) + LoadAssemblies (210ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (473ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (806ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (106ms) + AfterProcessingInitializeOnLoad (28ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6615. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 5.037100 ms (FindLiveObjects: 1.005300 ms CreateObjectMapping: 0.585000 ms MarkObjects: 3.369000 ms DeleteObjects: 0.075700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020817 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.494 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1191ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6618. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 4.589100 ms (FindLiveObjects: 0.851100 ms CreateObjectMapping: 0.887800 ms MarkObjects: 2.802400 ms DeleteObjects: 0.046200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017615 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.698 seconds +Domain Reload Profiling: + ReloadAssembly (1699ms) + BeginReloadAssembly (307ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (95ms) + EndReloadAssembly (1234ms) + LoadAssemblies (208ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (724ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (48ms) + AfterProcessingInitializeOnLoad (30ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6621. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 3.455900 ms (FindLiveObjects: 0.621400 ms CreateObjectMapping: 0.244100 ms MarkObjects: 2.526500 ms DeleteObjects: 0.061800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023057 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.480 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1182ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (730ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (581ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6624. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.553800 ms (FindLiveObjects: 0.434100 ms CreateObjectMapping: 0.219600 ms MarkObjects: 1.875600 ms DeleteObjects: 0.023800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.026435 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.459 seconds +Domain Reload Profiling: + ReloadAssembly (1459ms) + BeginReloadAssembly (207ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1115ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6627. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.474300 ms (FindLiveObjects: 0.401800 ms CreateObjectMapping: 0.200200 ms MarkObjects: 1.843000 ms DeleteObjects: 0.028000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018799 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.857 seconds +Domain Reload Profiling: + ReloadAssembly (1858ms) + BeginReloadAssembly (272ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + EndReloadAssembly (1421ms) + LoadAssemblies (225ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (762ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (625ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6630. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 4.160300 ms (FindLiveObjects: 0.451900 ms CreateObjectMapping: 0.221800 ms MarkObjects: 3.418200 ms DeleteObjects: 0.066300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014844 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.524 seconds +Domain Reload Profiling: + ReloadAssembly (1524ms) + BeginReloadAssembly (227ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1170ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6633. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.736800 ms (FindLiveObjects: 0.520300 ms CreateObjectMapping: 0.285900 ms MarkObjects: 1.894700 ms DeleteObjects: 0.034900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016954 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.623 seconds +Domain Reload Profiling: + ReloadAssembly (1624ms) + BeginReloadAssembly (265ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1245ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (688ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6636. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 4.367500 ms (FindLiveObjects: 0.502900 ms CreateObjectMapping: 0.201900 ms MarkObjects: 3.469300 ms DeleteObjects: 0.191300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019952 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.418 seconds +Domain Reload Profiling: + ReloadAssembly (1419ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1118ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (270ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6639. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.930600 ms (FindLiveObjects: 0.433200 ms CreateObjectMapping: 0.202700 ms MarkObjects: 2.096600 ms DeleteObjects: 0.196900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021506 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.375 seconds +Domain Reload Profiling: + ReloadAssembly (1375ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1088ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6642. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.702300 ms (FindLiveObjects: 0.429800 ms CreateObjectMapping: 0.214700 ms MarkObjects: 2.032200 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.031077 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.441 seconds +Domain Reload Profiling: + ReloadAssembly (1441ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1130ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (619ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (507ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6645. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.615000 ms (FindLiveObjects: 0.424500 ms CreateObjectMapping: 0.208800 ms MarkObjects: 1.948600 ms DeleteObjects: 0.032400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017304 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1286ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (711ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (573ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6648. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 4.070700 ms (FindLiveObjects: 0.640800 ms CreateObjectMapping: 0.312000 ms MarkObjects: 3.062500 ms DeleteObjects: 0.053600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021286 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.911 seconds +Domain Reload Profiling: + ReloadAssembly (2912ms) + BeginReloadAssembly (372ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (2ms) + CreateAndSetChildDomain (136ms) + EndReloadAssembly (2380ms) + LoadAssemblies (210ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (522ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (32ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (282ms) + ProcessInitializeOnLoadAttributes (973ms) + ProcessInitializeOnLoadMethodAttributes (49ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6651. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 5.638700 ms (FindLiveObjects: 0.981200 ms CreateObjectMapping: 0.572600 ms MarkObjects: 3.978200 ms DeleteObjects: 0.101700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018356 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.425 seconds +Domain Reload Profiling: + ReloadAssembly (1426ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1090ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6654. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.027200 ms (FindLiveObjects: 0.574400 ms CreateObjectMapping: 0.271000 ms MarkObjects: 2.143000 ms DeleteObjects: 0.037200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020452 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.410 seconds +Domain Reload Profiling: + ReloadAssembly (1411ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1120ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6657. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.552000 ms (FindLiveObjects: 0.393300 ms CreateObjectMapping: 0.191900 ms MarkObjects: 2.940500 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020061 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.472 seconds +Domain Reload Profiling: + ReloadAssembly (1473ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1149ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6660. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 2.739400 ms (FindLiveObjects: 0.435300 ms CreateObjectMapping: 0.221700 ms MarkObjects: 2.044700 ms DeleteObjects: 0.036600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023212 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.525 seconds +Domain Reload Profiling: + ReloadAssembly (1526ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1241ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (330ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6663. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.990400 ms (FindLiveObjects: 0.475400 ms CreateObjectMapping: 0.269000 ms MarkObjects: 3.182700 ms DeleteObjects: 0.062000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022090 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1172ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6666. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 4.038000 ms (FindLiveObjects: 0.444000 ms CreateObjectMapping: 0.269800 ms MarkObjects: 3.285900 ms DeleteObjects: 0.036100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017184 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.491 seconds +Domain Reload Profiling: + ReloadAssembly (1491ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1219ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (320ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (684ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6669. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.982400 ms (FindLiveObjects: 0.843800 ms CreateObjectMapping: 0.449200 ms MarkObjects: 2.616100 ms DeleteObjects: 0.070600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014591 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.526 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1253ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (565ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6672. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 4.424100 ms (FindLiveObjects: 0.679800 ms CreateObjectMapping: 0.272200 ms MarkObjects: 3.411500 ms DeleteObjects: 0.058000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021973 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.395 seconds +Domain Reload Profiling: + ReloadAssembly (1395ms) + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1083ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (646ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6675. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.560400 ms (FindLiveObjects: 0.571400 ms CreateObjectMapping: 0.315400 ms MarkObjects: 2.634400 ms DeleteObjects: 0.037600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016696 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.595 seconds +Domain Reload Profiling: + ReloadAssembly (1595ms) + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1233ms) + LoadAssemblies (187ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (650ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6678. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.437900 ms (FindLiveObjects: 0.451700 ms CreateObjectMapping: 0.264400 ms MarkObjects: 2.694300 ms DeleteObjects: 0.026000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016023 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.417 seconds +Domain Reload Profiling: + ReloadAssembly (1417ms) + BeginReloadAssembly (208ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1091ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (274ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6681. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 4.146400 ms (FindLiveObjects: 0.797200 ms CreateObjectMapping: 0.313100 ms MarkObjects: 2.992900 ms DeleteObjects: 0.042100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020437 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.448 seconds +Domain Reload Profiling: + ReloadAssembly (1449ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1154ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (301ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6684. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.093300 ms (FindLiveObjects: 0.419500 ms CreateObjectMapping: 0.196200 ms MarkObjects: 2.433200 ms DeleteObjects: 0.042900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015200 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1566ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1282ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (700ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6687. +Memory consumption went from 212.8 MB to 212.7 MB. +Total: 2.986900 ms (FindLiveObjects: 0.506300 ms CreateObjectMapping: 0.263100 ms MarkObjects: 2.176400 ms DeleteObjects: 0.039800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6687. +Memory consumption went from 95.9 MB to 95.9 MB. +Total: 4.830300 ms (FindLiveObjects: 0.985100 ms CreateObjectMapping: 0.487400 ms MarkObjects: 3.313700 ms DeleteObjects: 0.042200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021356 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.772 seconds +Domain Reload Profiling: + ReloadAssembly (1773ms) + BeginReloadAssembly (208ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1410ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (789ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (599ms) + ProcessInitializeOnLoadMethodAttributes (65ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6690. +Memory consumption went from 212.8 MB to 212.7 MB. +Total: 5.025500 ms (FindLiveObjects: 0.486700 ms CreateObjectMapping: 0.429000 ms MarkObjects: 4.020700 ms DeleteObjects: 0.087000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4944.818417 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37c3fcafc37d67f708a2bb192f6efd62') in 0.112878 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 2.704080 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Materials + artifactKey: Guid(1d1def42bbba7814387887589b60c608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Materials using Guid(1d1def42bbba7814387887589b60c608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7191f7c382c6666671092c934a9a3500') in 0.008560 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.250023 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity + artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05b55ad0816dc7c21abdc9df1f04b623') in 0.009395 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.462931 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01_1.unity + artifactKey: Guid(b678704b40de4ea4eaa9bc391ff5f803) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01_1.unity using Guid(b678704b40de4ea4eaa9bc391ff5f803) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bbf5c162fd6bd089c5ab3fa4df58f68') in 0.008567 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016540 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.625 seconds +Domain Reload Profiling: + ReloadAssembly (1626ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1296ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6693. +Memory consumption went from 212.8 MB to 212.7 MB. +Total: 4.376500 ms (FindLiveObjects: 0.707300 ms CreateObjectMapping: 0.488600 ms MarkObjects: 3.120100 ms DeleteObjects: 0.058400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 53697.252438 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/line.psd + artifactKey: Guid(1fd067e7239c544ba838a59762daa0de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/line.psd using Guid(1fd067e7239c544ba838a59762daa0de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f3d90c3c67f68a7e3602d9e9058f15b') in 0.686330 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 1.171658 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/Arrow.mat + artifactKey: Guid(6ac95c099f0e2ad4d90aa8dbf92a6f5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/Arrow.mat using Guid(6ac95c099f0e2ad4d90aa8dbf92a6f5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab7a821d1f78005e3db058afb9e20165') in 0.085328 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/selectionBox.psd + artifactKey: Guid(92aac0fea0f5e43e1a179927f0f9d953) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/selectionBox.psd using Guid(92aac0fea0f5e43e1a179927f0f9d953) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa5b3db06188d26c4fc79dd22866da7c') in 0.038254 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 1.743810 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/RVO.unity + artifactKey: Guid(a72d110e16b2e46b58db5ecb9717f37f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/RVO.unity using Guid(a72d110e16b2e46b58db5ecb9717f37f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c330b97806eb69d8a1d0636f673c878') in 0.010982 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 7.124657 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D/grid_tile.psd + artifactKey: Guid(fa35a77503f6a45eea6c469775ee446e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D/grid_tile.psd using Guid(fa35a77503f6a45eea6c469775ee446e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad4a1d31644b0a98f87a26f07fdd6111') in 0.047786 seconds +Number of asset objects unloaded after import = 3 diff --git a/JNFrame/Logs/AssetImportWorker0.log b/JNFrame/Logs/AssetImportWorker0.log index b5b99a24..74c32e49 100644 --- a/JNFrame/Logs/AssetImportWorker0.log +++ b/JNFrame/Logs/AssetImportWorker0.log @@ -1,10 +1,10 @@ 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' +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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 +D:\Unity\2021.3.33f1c1\Editor\Unity.exe -adb2 -batchMode -noUpm @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker0.log -srvPort -49487 +53942 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -39,8 +39,6 @@ D:/myproject/JisolGame/JNFrame "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" @@ -49,15 +47,16 @@ 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 [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 [8656] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 238545331 [EditorId] 238545331 [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 alternative multi-casting on [225.0.0.222:34997]... +Player connection [8656] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 238545331 [EditorId] 238545331 [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 48.13 ms, found 3 plugins. +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 114.38 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 +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: @@ -67,1687 +66,226 @@ Direct3D: 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:56264 +Mono path[0] = 'D:/Unity/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56256 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 +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.004904 seconds. Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 653 ms +Android Extension - Scanning For ADB Devices 226 ms +Refreshing native plugins compatible for Editor in 109.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 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 +- Completed reload, in 0.910 seconds +Domain Reload Profiling: + ReloadAssembly (910ms) + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (716ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (106ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (23ms) + SetupLoadedEditorAssemblies (547ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (307ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (109ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (89ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.016220 seconds. 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 +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.464 seconds +Domain Reload Profiling: + ReloadAssembly (1465ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (18ms) + EndReloadAssembly (1242ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (303ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (757ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (604ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.78 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) +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6365. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 2.896800 ms (FindLiveObjects: 0.371900 ms CreateObjectMapping: 0.208100 ms MarkObjects: 2.233600 ms DeleteObjects: 0.082300 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-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 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 -> + Time since last request: 87254.237689 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab + artifactKey: Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab using Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '188d0733a7b605c5c244c2713792c50c') in 0.120968 seconds +Number of asset objects unloaded after import = 12 ======================================================================== 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. + Time since last request: 82.482220 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbc05e0164bb49e8377382eb0b8978a0') in 0.091846 seconds Number of asset objects unloaded after import = 175 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021779 seconds. 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 +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.401 seconds +Domain Reload Profiling: + ReloadAssembly (1402ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1128ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6376. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 2.861300 ms (FindLiveObjects: 0.516600 ms CreateObjectMapping: 0.268300 ms MarkObjects: 2.043300 ms DeleteObjects: 0.031400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 35.157481 seconds. + Time since last request: 67.120579 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/DynamicObstacle.prefab + artifactKey: Guid(4267c4f7628024c018e8bd0acd298526) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/DynamicObstacle.prefab using Guid(4267c4f7628024c018e8bd0acd298526) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c9b5d69cb590c963087995a556eef3f') in 0.094452 seconds +Number of asset objects unloaded after import = 13 +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/TargetReachedEffect.prefab + artifactKey: Guid(441e67a4721e749f0bca9581956f2729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/TargetReachedEffect.prefab using Guid(441e67a4721e749f0bca9581956f2729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73e635369411bf4feb3b4eac55d1498e') in 0.019201 seconds +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 15.103803 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot.FBX using Guid(caeffedc34d9f4161b7694ad0d84bbd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '752ac829284be3ddaedb241e5e097713') in 0.114297 seconds Number of asset objects unloaded after import = 58 ======================================================================== Received Import Request. - Time since last request: 0.000043 seconds. + Time since last request: 0.000053 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@back.FBX using Guid(a13fed205b1fa3942abfab7ba21463ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '852a68c8a5765d31340d9f811566c9de') in 0.127409 seconds 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 + Time since last request: 0.000064 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@forward.FBX + artifactKey: Guid(1da85f72a7a82bc4eabdbd8f0683bde2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@forward.FBX using Guid(1da85f72a7a82bc4eabdbd8f0683bde2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12d5cffcc8d6cacc3e98c948fe1cab70') in 0.095982 seconds +Number of asset objects unloaded after import = 57 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 2bcb2f90..8dd546bc 100644 --- a/JNFrame/Logs/AssetImportWorker1-prev.log +++ b/JNFrame/Logs/AssetImportWorker1-prev.log @@ -1,10 +1,10 @@ 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' +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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 +D:\Unity\2021.3.33f1c1\Editor\Unity.exe -adb2 -batchMode -noUpm @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker1.log -srvPort -58814 +61395 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -39,8 +39,6 @@ D:/myproject/JisolGame/JNFrame "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" @@ -49,15 +47,16 @@ 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 [26776] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 1726714488 [EditorId] 1726714488 [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 [26776] Host "[IP] 192.168.0.157 [Port] 0 [Flags] 2 [Guid] 1726714488 [EditorId] 1726714488 [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. +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 198.28 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 +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: @@ -67,7 +66,6171 @@ Direct3D: 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,address=127.0.0.1:56484,server=n,suspend=y +Mono path[0] = 'D:/Unity/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56416 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.052914 seconds. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 514 ms +Refreshing native plugins compatible for Editor in 133.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.875 seconds +Domain Reload Profiling: + ReloadAssembly (2875ms) + BeginReloadAssembly (842ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (1216ms) + LoadAssemblies (831ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (161ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (944ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (631ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (134ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (115ms) + ProcessInitializeOnLoadMethodAttributes (63ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.016789 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Package Manager log level set to [2] +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.993 seconds +Domain Reload Profiling: + ReloadAssembly (1995ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (1707ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (477ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (1007ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (838ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6364. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.000000 ms (FindLiveObjects: 0.483300 ms CreateObjectMapping: 0.239400 ms MarkObjects: 2.179300 ms DeleteObjects: 0.096800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022176 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 3.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.143 seconds +Domain Reload Profiling: + ReloadAssembly (2144ms) + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1855ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (584ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (1049ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (857ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6367. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 2.945500 ms (FindLiveObjects: 0.535800 ms CreateObjectMapping: 0.252700 ms MarkObjects: 2.033400 ms DeleteObjects: 0.122200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023340 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.868 seconds +Domain Reload Profiling: + ReloadAssembly (2870ms) + BeginReloadAssembly (266ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (2460ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (616ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (308ms) + SetupLoadedEditorAssemblies (1322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (292ms) + ProcessInitializeOnLoadAttributes (928ms) + ProcessInitializeOnLoadMethodAttributes (57ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6370. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 4.311000 ms (FindLiveObjects: 0.739200 ms CreateObjectMapping: 0.328500 ms MarkObjects: 3.122100 ms DeleteObjects: 0.116400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022581 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.090 seconds +Domain Reload Profiling: + ReloadAssembly (2091ms) + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1687ms) + LoadAssemblies (236ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (554ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (86ms) + SetupLoadedEditorAssemblies (795ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (627ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6373. +Memory consumption went from 211.7 MB to 211.7 MB. +Total: 3.668700 ms (FindLiveObjects: 0.943200 ms CreateObjectMapping: 0.447700 ms MarkObjects: 2.240200 ms DeleteObjects: 0.036000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 24731.476379 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f72e191297b2f96d21ac84b2d391804') in 0.294996 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020155 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.921 seconds +Domain Reload Profiling: + ReloadAssembly (1923ms) + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1553ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (464ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (846ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (651ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6383. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 4.238200 ms (FindLiveObjects: 0.705900 ms CreateObjectMapping: 0.661700 ms MarkObjects: 2.818600 ms DeleteObjects: 0.050200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.026673 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.890 seconds +Domain Reload Profiling: + ReloadAssembly (1896ms) + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1509ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (419ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (85ms) + SetupLoadedEditorAssemblies (815ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (648ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6386. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 6.465300 ms (FindLiveObjects: 1.146300 ms CreateObjectMapping: 1.135100 ms MarkObjects: 4.069500 ms DeleteObjects: 0.111900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.030241 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 3.097 seconds +Domain Reload Profiling: + ReloadAssembly (3099ms) + BeginReloadAssembly (458ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (104ms) + EndReloadAssembly (2393ms) + LoadAssemblies (390ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (643ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (94ms) + SetupLoadedEditorAssemblies (1206ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (157ms) + ProcessInitializeOnLoadAttributes (946ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6389. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 4.317700 ms (FindLiveObjects: 0.614400 ms CreateObjectMapping: 0.501000 ms MarkObjects: 3.144800 ms DeleteObjects: 0.054100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.046385 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.832 seconds +Domain Reload Profiling: + ReloadAssembly (1832ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1515ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (430ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (824ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (668ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6392. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.248700 ms (FindLiveObjects: 0.683500 ms CreateObjectMapping: 0.283900 ms MarkObjects: 2.246600 ms DeleteObjects: 0.032800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025512 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.968 seconds +Domain Reload Profiling: + ReloadAssembly (1969ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1660ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (482ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (891ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (663ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6395. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 4.551000 ms (FindLiveObjects: 0.906800 ms CreateObjectMapping: 0.611600 ms MarkObjects: 2.983400 ms DeleteObjects: 0.047100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.031909 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.522 seconds +Domain Reload Profiling: + ReloadAssembly (1523ms) + BeginReloadAssembly (239ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (93ms) + EndReloadAssembly (1160ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (646ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6398. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 5.619700 ms (FindLiveObjects: 0.599500 ms CreateObjectMapping: 0.461800 ms MarkObjects: 4.456000 ms DeleteObjects: 0.098400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018020 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.588 seconds +Domain Reload Profiling: + ReloadAssembly (1589ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1293ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (717ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6401. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.470100 ms (FindLiveObjects: 0.360500 ms CreateObjectMapping: 0.196800 ms MarkObjects: 1.893200 ms DeleteObjects: 0.018700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020191 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1247ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (354ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (696ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (553ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6404. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.695900 ms (FindLiveObjects: 0.464300 ms CreateObjectMapping: 0.298000 ms MarkObjects: 1.900400 ms DeleteObjects: 0.031800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014853 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.539 seconds +Domain Reload Profiling: + ReloadAssembly (1539ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1257ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (719ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (577ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6407. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.896300 ms (FindLiveObjects: 0.492300 ms CreateObjectMapping: 0.255800 ms MarkObjects: 2.104300 ms DeleteObjects: 0.043000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023966 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.456 seconds +Domain Reload Profiling: + ReloadAssembly (1457ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1175ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (679ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6410. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.869800 ms (FindLiveObjects: 0.482600 ms CreateObjectMapping: 0.286900 ms MarkObjects: 2.063100 ms DeleteObjects: 0.036000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015289 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.487 seconds +Domain Reload Profiling: + ReloadAssembly (1488ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1201ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (306ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6413. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.862300 ms (FindLiveObjects: 0.501200 ms CreateObjectMapping: 0.299400 ms MarkObjects: 2.028100 ms DeleteObjects: 0.032400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.032210 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.572 seconds +Domain Reload Profiling: + ReloadAssembly (1572ms) + BeginReloadAssembly (254ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (86ms) + EndReloadAssembly (1204ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (692ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6416. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.476800 ms (FindLiveObjects: 0.376300 ms CreateObjectMapping: 0.184400 ms MarkObjects: 1.884800 ms DeleteObjects: 0.030200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016779 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.417 seconds +Domain Reload Profiling: + ReloadAssembly (1418ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1121ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (296ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (623ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6419. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.762400 ms (FindLiveObjects: 0.371800 ms CreateObjectMapping: 0.197200 ms MarkObjects: 2.162600 ms DeleteObjects: 0.030100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014599 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.542 seconds +Domain Reload Profiling: + ReloadAssembly (1543ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1239ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 3.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6422. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 4.005600 ms (FindLiveObjects: 0.620200 ms CreateObjectMapping: 0.273400 ms MarkObjects: 3.050400 ms DeleteObjects: 0.058900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.024598 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1132ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (269ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (573ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6425. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.742600 ms (FindLiveObjects: 0.430500 ms CreateObjectMapping: 0.227100 ms MarkObjects: 2.053500 ms DeleteObjects: 0.030500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018455 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.384 seconds +Domain Reload Profiling: + ReloadAssembly (1385ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1106ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (288ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6428. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 3.691000 ms (FindLiveObjects: 0.386700 ms CreateObjectMapping: 0.201600 ms MarkObjects: 3.044500 ms DeleteObjects: 0.056700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016937 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1238ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (700ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (565ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6431. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 3.535100 ms (FindLiveObjects: 0.717900 ms CreateObjectMapping: 0.446000 ms MarkObjects: 2.328000 ms DeleteObjects: 0.041300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6431. +Memory consumption went from 94.9 MB to 94.9 MB. +Total: 3.487300 ms (FindLiveObjects: 0.605400 ms CreateObjectMapping: 0.259600 ms MarkObjects: 2.557000 ms DeleteObjects: 0.061900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6431. +Memory consumption went from 94.3 MB to 94.3 MB. +Total: 2.576400 ms (FindLiveObjects: 0.460400 ms CreateObjectMapping: 0.223100 ms MarkObjects: 1.871200 ms DeleteObjects: 0.021100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015842 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.472 seconds +Domain Reload Profiling: + ReloadAssembly (1473ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1154ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (331ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (511ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6434. +Memory consumption went from 211.8 MB to 211.7 MB. +Total: 3.013700 ms (FindLiveObjects: 0.540400 ms CreateObjectMapping: 0.246000 ms MarkObjects: 2.192300 ms DeleteObjects: 0.033900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 21.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6434. +Memory consumption went from 94.9 MB to 94.9 MB. +Total: 9.250700 ms (FindLiveObjects: 0.528900 ms CreateObjectMapping: 0.440200 ms MarkObjects: 8.187200 ms DeleteObjects: 0.092600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 9.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6434. +Memory consumption went from 94.6 MB to 94.6 MB. +Total: 6.916200 ms (FindLiveObjects: 1.134200 ms CreateObjectMapping: 1.186400 ms MarkObjects: 4.513800 ms DeleteObjects: 0.078200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6434. +Memory consumption went from 94.6 MB to 94.6 MB. +Total: 4.768600 ms (FindLiveObjects: 0.731800 ms CreateObjectMapping: 0.684700 ms MarkObjects: 3.123500 ms DeleteObjects: 0.225900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.029689 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 3.154 seconds +Domain Reload Profiling: + ReloadAssembly (3155ms) + BeginReloadAssembly (475ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (33ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (122ms) + EndReloadAssembly (2420ms) + LoadAssemblies (340ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (928ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1063ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (153ms) + ProcessInitializeOnLoadAttributes (749ms) + ProcessInitializeOnLoadMethodAttributes (66ms) + AfterProcessingInitializeOnLoad (50ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6437. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 3.784500 ms (FindLiveObjects: 0.862800 ms CreateObjectMapping: 0.413200 ms MarkObjects: 2.447300 ms DeleteObjects: 0.059500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6437. +Memory consumption went from 95.2 MB to 95.2 MB. +Total: 3.508200 ms (FindLiveObjects: 0.445300 ms CreateObjectMapping: 0.241000 ms MarkObjects: 2.770300 ms DeleteObjects: 0.049900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6437. +Memory consumption went from 94.3 MB to 94.3 MB. +Total: 2.895200 ms (FindLiveObjects: 0.438200 ms CreateObjectMapping: 0.240900 ms MarkObjects: 2.185800 ms DeleteObjects: 0.029200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 7.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6437. +Memory consumption went from 94.3 MB to 94.3 MB. +Total: 3.029900 ms (FindLiveObjects: 0.544300 ms CreateObjectMapping: 0.240700 ms MarkObjects: 2.215000 ms DeleteObjects: 0.029000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015891 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.512 seconds +Domain Reload Profiling: + ReloadAssembly (1513ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1192ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6440. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 2.754900 ms (FindLiveObjects: 0.462700 ms CreateObjectMapping: 0.295600 ms MarkObjects: 1.963300 ms DeleteObjects: 0.032300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014850 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.466 seconds +Domain Reload Profiling: + ReloadAssembly (1467ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1198ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (302ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6443. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.880400 ms (FindLiveObjects: 0.887100 ms CreateObjectMapping: 0.425400 ms MarkObjects: 2.523100 ms DeleteObjects: 0.043000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015339 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1247ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (711ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (566ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6446. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.344600 ms (FindLiveObjects: 0.560800 ms CreateObjectMapping: 0.229100 ms MarkObjects: 2.490400 ms DeleteObjects: 0.062400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016746 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1271ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (587ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6449. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.036200 ms (FindLiveObjects: 0.483800 ms CreateObjectMapping: 0.292000 ms MarkObjects: 2.201600 ms DeleteObjects: 0.056600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017298 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.454 seconds +Domain Reload Profiling: + ReloadAssembly (1454ms) + BeginReloadAssembly (220ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1118ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (305ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6452. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.059400 ms (FindLiveObjects: 0.569400 ms CreateObjectMapping: 0.250700 ms MarkObjects: 2.193300 ms DeleteObjects: 0.044200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017852 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.404 seconds +Domain Reload Profiling: + ReloadAssembly (1405ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1102ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6455. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 2.617100 ms (FindLiveObjects: 0.433400 ms CreateObjectMapping: 0.222200 ms MarkObjects: 1.927100 ms DeleteObjects: 0.033500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014728 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.520 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1247ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (328ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (723ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (581ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6458. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.345200 ms (FindLiveObjects: 0.609600 ms CreateObjectMapping: 0.548500 ms MarkObjects: 2.153100 ms DeleteObjects: 0.032200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 9.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6458. +Memory consumption went from 95.0 MB to 95.0 MB. +Total: 3.453600 ms (FindLiveObjects: 0.662200 ms CreateObjectMapping: 0.368900 ms MarkObjects: 2.381400 ms DeleteObjects: 0.039500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 13.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6458. +Memory consumption went from 94.6 MB to 94.6 MB. +Total: 5.148200 ms (FindLiveObjects: 0.744000 ms CreateObjectMapping: 0.462800 ms MarkObjects: 3.844300 ms DeleteObjects: 0.095200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 11.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6458. +Memory consumption went from 94.6 MB to 94.6 MB. +Total: 5.699500 ms (FindLiveObjects: 0.957200 ms CreateObjectMapping: 0.647200 ms MarkObjects: 3.998500 ms DeleteObjects: 0.094200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017676 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.530 seconds +Domain Reload Profiling: + ReloadAssembly (1530ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1236ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (322ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (718ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (583ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6461. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.687900 ms (FindLiveObjects: 0.406400 ms CreateObjectMapping: 0.223000 ms MarkObjects: 2.007500 ms DeleteObjects: 0.049800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6461. +Memory consumption went from 95.3 MB to 95.2 MB. +Total: 4.604700 ms (FindLiveObjects: 0.547600 ms CreateObjectMapping: 0.250300 ms MarkObjects: 3.715400 ms DeleteObjects: 0.089100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016511 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.649 seconds +Domain Reload Profiling: + ReloadAssembly (1650ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1392ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (445ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (578ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6464. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 4.825900 ms (FindLiveObjects: 0.449800 ms CreateObjectMapping: 0.813700 ms MarkObjects: 3.444000 ms DeleteObjects: 0.115000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025840 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.878 seconds +Domain Reload Profiling: + ReloadAssembly (1879ms) + BeginReloadAssembly (220ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1500ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (484ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (774ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (609ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6467. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.538400 ms (FindLiveObjects: 0.780300 ms CreateObjectMapping: 0.407900 ms MarkObjects: 2.314600 ms DeleteObjects: 0.034400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020151 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.127 seconds +Domain Reload Profiling: + ReloadAssembly (2127ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1777ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (428ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (1063ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (847ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (41ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6470. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 4.344300 ms (FindLiveObjects: 0.764400 ms CreateObjectMapping: 0.501700 ms MarkObjects: 3.010800 ms DeleteObjects: 0.064300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015271 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.598 seconds +Domain Reload Profiling: + ReloadAssembly (1599ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1268ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6473. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 2.972900 ms (FindLiveObjects: 0.821200 ms CreateObjectMapping: 0.328800 ms MarkObjects: 1.798100 ms DeleteObjects: 0.023800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014845 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.523 seconds +Domain Reload Profiling: + ReloadAssembly (1524ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1246ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (688ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6476. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 3.493100 ms (FindLiveObjects: 0.701300 ms CreateObjectMapping: 0.303400 ms MarkObjects: 2.434700 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021886 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.428 seconds +Domain Reload Profiling: + ReloadAssembly (1429ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1130ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6479. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 4.343700 ms (FindLiveObjects: 0.581200 ms CreateObjectMapping: 0.316900 ms MarkObjects: 3.397700 ms DeleteObjects: 0.046400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015477 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1177ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6482. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 2.588400 ms (FindLiveObjects: 0.407200 ms CreateObjectMapping: 0.189900 ms MarkObjects: 1.959400 ms DeleteObjects: 0.031300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017700 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.548 seconds +Domain Reload Profiling: + ReloadAssembly (1549ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1258ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (320ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (728ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (584ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6485. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.617100 ms (FindLiveObjects: 0.458100 ms CreateObjectMapping: 0.223300 ms MarkObjects: 1.911700 ms DeleteObjects: 0.022700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (23.1 KB). Loaded Objects now: 6485. +Memory consumption went from 95.1 MB to 95.1 MB. +Total: 2.814700 ms (FindLiveObjects: 0.436200 ms CreateObjectMapping: 0.219400 ms MarkObjects: 2.133800 ms DeleteObjects: 0.024300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6485. +Memory consumption went from 94.4 MB to 94.4 MB. +Total: 2.906700 ms (FindLiveObjects: 0.449400 ms CreateObjectMapping: 0.235100 ms MarkObjects: 2.190900 ms DeleteObjects: 0.030400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014768 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.555 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1227ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (323ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (544ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6488. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 2.499300 ms (FindLiveObjects: 0.434900 ms CreateObjectMapping: 0.215400 ms MarkObjects: 1.823900 ms DeleteObjects: 0.023900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 9.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6488. +Memory consumption went from 95.1 MB to 95.1 MB. +Total: 2.344400 ms (FindLiveObjects: 0.380600 ms CreateObjectMapping: 0.199900 ms MarkObjects: 1.745000 ms DeleteObjects: 0.018300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020404 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.161 seconds +Domain Reload Profiling: + ReloadAssembly (2162ms) + BeginReloadAssembly (321ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + EndReloadAssembly (1706ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (987ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (39ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6491. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 81.479900 ms (FindLiveObjects: 0.562600 ms CreateObjectMapping: 0.583000 ms MarkObjects: 80.274000 ms DeleteObjects: 0.057300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023327 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.975 seconds +Domain Reload Profiling: + ReloadAssembly (1975ms) + BeginReloadAssembly (272ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1560ms) + LoadAssemblies (209ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (484ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (755ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6494. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 9.084200 ms (FindLiveObjects: 1.393000 ms CreateObjectMapping: 1.312800 ms MarkObjects: 6.297000 ms DeleteObjects: 0.076600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.028328 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 3.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.914 seconds +Domain Reload Profiling: + ReloadAssembly (1915ms) + BeginReloadAssembly (286ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (98ms) + EndReloadAssembly (1503ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (428ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (813ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (627ms) + ProcessInitializeOnLoadMethodAttributes (48ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6497. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 2.346600 ms (FindLiveObjects: 0.408500 ms CreateObjectMapping: 0.197000 ms MarkObjects: 1.719800 ms DeleteObjects: 0.020400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023228 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.952 seconds +Domain Reload Profiling: + ReloadAssembly (1953ms) + BeginReloadAssembly (321ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1496ms) + LoadAssemblies (233ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (447ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (793ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (609ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (29ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6500. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 3.127700 ms (FindLiveObjects: 0.584100 ms CreateObjectMapping: 0.476000 ms MarkObjects: 2.033800 ms DeleteObjects: 0.032600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016371 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.129 seconds +Domain Reload Profiling: + ReloadAssembly (2130ms) + BeginReloadAssembly (299ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (94ms) + EndReloadAssembly (1693ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (506ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (849ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (645ms) + ProcessInitializeOnLoadMethodAttributes (53ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6503. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 5.019800 ms (FindLiveObjects: 0.553300 ms CreateObjectMapping: 0.444600 ms MarkObjects: 3.958600 ms DeleteObjects: 0.061300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017793 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.493 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1232ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (700ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (557ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6506. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 3.271800 ms (FindLiveObjects: 0.594300 ms CreateObjectMapping: 0.232400 ms MarkObjects: 2.405000 ms DeleteObjects: 0.038600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021941 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.576 seconds +Domain Reload Profiling: + ReloadAssembly (1577ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1259ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (381ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6509. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.684100 ms (FindLiveObjects: 0.415900 ms CreateObjectMapping: 0.221200 ms MarkObjects: 2.015600 ms DeleteObjects: 0.029700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020388 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.408 seconds +Domain Reload Profiling: + ReloadAssembly (1408ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1118ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (278ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6512. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.951400 ms (FindLiveObjects: 0.469000 ms CreateObjectMapping: 0.264200 ms MarkObjects: 2.186100 ms DeleteObjects: 0.031100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020824 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.523 seconds +Domain Reload Profiling: + ReloadAssembly (1523ms) + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1264ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (704ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6515. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 3.821500 ms (FindLiveObjects: 0.525700 ms CreateObjectMapping: 0.229400 ms MarkObjects: 3.023200 ms DeleteObjects: 0.041500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018612 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.517 seconds +Domain Reload Profiling: + ReloadAssembly (1518ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1253ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (704ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6518. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 2.851400 ms (FindLiveObjects: 0.478900 ms CreateObjectMapping: 0.250200 ms MarkObjects: 2.082400 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019641 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.539 seconds +Domain Reload Profiling: + ReloadAssembly (1540ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1261ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (560ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 3.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6521. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 3.550600 ms (FindLiveObjects: 0.506300 ms CreateObjectMapping: 0.246800 ms MarkObjects: 2.729700 ms DeleteObjects: 0.065700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017140 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.398 seconds +Domain Reload Profiling: + ReloadAssembly (1399ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1096ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (641ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6524. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 3.152500 ms (FindLiveObjects: 0.452600 ms CreateObjectMapping: 0.253500 ms MarkObjects: 2.423500 ms DeleteObjects: 0.021900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019178 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.606 seconds +Domain Reload Profiling: + ReloadAssembly (1607ms) + BeginReloadAssembly (278ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1189ms) + LoadAssemblies (218ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6527. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 2.576500 ms (FindLiveObjects: 0.401300 ms CreateObjectMapping: 0.193900 ms MarkObjects: 1.954000 ms DeleteObjects: 0.025700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015515 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.499 seconds +Domain Reload Profiling: + ReloadAssembly (1500ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1211ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (298ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (684ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (560ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6530. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.113900 ms (FindLiveObjects: 0.433700 ms CreateObjectMapping: 0.220800 ms MarkObjects: 2.406300 ms DeleteObjects: 0.051600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021607 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.394 seconds +Domain Reload Profiling: + ReloadAssembly (1394ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1119ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (516ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6533. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.396200 ms (FindLiveObjects: 0.389200 ms CreateObjectMapping: 0.207400 ms MarkObjects: 1.777900 ms DeleteObjects: 0.020900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017557 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.428 seconds +Domain Reload Profiling: + ReloadAssembly (1428ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1124ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6536. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 5.924100 ms (FindLiveObjects: 1.153900 ms CreateObjectMapping: 1.184600 ms MarkObjects: 3.522300 ms DeleteObjects: 0.061100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021859 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.598 seconds +Domain Reload Profiling: + ReloadAssembly (1598ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1312ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (667ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6539. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.740900 ms (FindLiveObjects: 0.556000 ms CreateObjectMapping: 0.250600 ms MarkObjects: 1.911500 ms DeleteObjects: 0.021900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018121 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.490 seconds +Domain Reload Profiling: + ReloadAssembly (1490ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1192ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (654ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6542. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.773000 ms (FindLiveObjects: 0.411700 ms CreateObjectMapping: 0.181100 ms MarkObjects: 2.158000 ms DeleteObjects: 0.020600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015074 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 6.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1224ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (302ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (735ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6545. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.343700 ms (FindLiveObjects: 0.721900 ms CreateObjectMapping: 0.279300 ms MarkObjects: 2.302900 ms DeleteObjects: 0.037600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019367 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.456 seconds +Domain Reload Profiling: + ReloadAssembly (1457ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1184ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (297ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (695ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (553ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6548. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 4.331000 ms (FindLiveObjects: 0.551600 ms CreateObjectMapping: 0.287800 ms MarkObjects: 3.424200 ms DeleteObjects: 0.065000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019407 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1453ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1148ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6551. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 4.342900 ms (FindLiveObjects: 0.863200 ms CreateObjectMapping: 0.416300 ms MarkObjects: 2.947300 ms DeleteObjects: 0.112500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015499 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.016 seconds +Domain Reload Profiling: + ReloadAssembly (2017ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1716ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (490ms) + ReleaseScriptCaches (6ms) + RebuildScriptCaches (217ms) + SetupLoadedEditorAssemblies (807ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (643ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6554. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 3.358400 ms (FindLiveObjects: 0.635800 ms CreateObjectMapping: 0.257900 ms MarkObjects: 2.418800 ms DeleteObjects: 0.043600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017970 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1181ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (330ms) + ReleaseScriptCaches (5ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6557. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 3.190600 ms (FindLiveObjects: 0.803400 ms CreateObjectMapping: 0.326900 ms MarkObjects: 2.033400 ms DeleteObjects: 0.025600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017529 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.431 seconds +Domain Reload Profiling: + ReloadAssembly (1432ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1121ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (273ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (557ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6560. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.043400 ms (FindLiveObjects: 0.585300 ms CreateObjectMapping: 0.301400 ms MarkObjects: 2.108600 ms DeleteObjects: 0.046500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.032888 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.602 seconds +Domain Reload Profiling: + ReloadAssembly (1603ms) + BeginReloadAssembly (217ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1263ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6563. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.712800 ms (FindLiveObjects: 0.548400 ms CreateObjectMapping: 0.290500 ms MarkObjects: 2.815800 ms DeleteObjects: 0.055800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022632 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.579 seconds +Domain Reload Profiling: + ReloadAssembly (1580ms) + BeginReloadAssembly (279ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (2ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1179ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (671ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6566. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 8.180200 ms (FindLiveObjects: 0.696700 ms CreateObjectMapping: 0.402100 ms MarkObjects: 7.003900 ms DeleteObjects: 0.075700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016579 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.426 seconds +Domain Reload Profiling: + ReloadAssembly (1427ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1128ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (651ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6569. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.491900 ms (FindLiveObjects: 0.448200 ms CreateObjectMapping: 0.220300 ms MarkObjects: 2.764600 ms DeleteObjects: 0.057100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.027535 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.724 seconds +Domain Reload Profiling: + ReloadAssembly (1724ms) + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1349ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (484ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (656ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (541ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6572. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 4.478100 ms (FindLiveObjects: 1.116600 ms CreateObjectMapping: 0.850700 ms MarkObjects: 2.462600 ms DeleteObjects: 0.045900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019814 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.406 seconds +Domain Reload Profiling: + ReloadAssembly (1406ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1096ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6575. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.593200 ms (FindLiveObjects: 0.517800 ms CreateObjectMapping: 0.202100 ms MarkObjects: 1.845300 ms DeleteObjects: 0.027300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014280 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1519ms) + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1205ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6578. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.469500 ms (FindLiveObjects: 0.647300 ms CreateObjectMapping: 0.310500 ms MarkObjects: 2.466100 ms DeleteObjects: 0.040200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022651 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.938 seconds +Domain Reload Profiling: + ReloadAssembly (1939ms) + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + EndReloadAssembly (1494ms) + LoadAssemblies (228ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (469ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (723ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (72ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6581. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.805100 ms (FindLiveObjects: 0.539400 ms CreateObjectMapping: 0.224900 ms MarkObjects: 2.007000 ms DeleteObjects: 0.032000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021239 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.488 seconds +Domain Reload Profiling: + ReloadAssembly (1489ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1195ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6584. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 4.783400 ms (FindLiveObjects: 0.604800 ms CreateObjectMapping: 0.302200 ms MarkObjects: 3.789800 ms DeleteObjects: 0.083300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016621 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.726 seconds +Domain Reload Profiling: + ReloadAssembly (1727ms) + BeginReloadAssembly (315ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (99ms) + EndReloadAssembly (1246ms) + LoadAssemblies (219ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (299ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (735ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (591ms) + ProcessInitializeOnLoadMethodAttributes (56ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6587. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.078500 ms (FindLiveObjects: 0.468500 ms CreateObjectMapping: 0.248200 ms MarkObjects: 2.327400 ms DeleteObjects: 0.032400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017115 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.453 seconds +Domain Reload Profiling: + ReloadAssembly (1454ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1157ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (261ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (707ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (575ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6590. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.036500 ms (FindLiveObjects: 0.574800 ms CreateObjectMapping: 0.255800 ms MarkObjects: 2.152100 ms DeleteObjects: 0.052000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020024 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.465 seconds +Domain Reload Profiling: + ReloadAssembly (1466ms) + BeginReloadAssembly (208ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1125ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (286ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (650ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6593. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 3.029400 ms (FindLiveObjects: 0.454300 ms CreateObjectMapping: 0.207100 ms MarkObjects: 2.342300 ms DeleteObjects: 0.024500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018782 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.868 seconds +Domain Reload Profiling: + ReloadAssembly (1869ms) + BeginReloadAssembly (278ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (80ms) + EndReloadAssembly (1444ms) + LoadAssemblies (232ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (755ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (611ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6596. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 2.793000 ms (FindLiveObjects: 0.642800 ms CreateObjectMapping: 0.246500 ms MarkObjects: 1.876100 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016019 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1528ms) + BeginReloadAssembly (243ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1167ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6599. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.004300 ms (FindLiveObjects: 0.399700 ms CreateObjectMapping: 0.239200 ms MarkObjects: 2.337000 ms DeleteObjects: 0.027100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019057 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.622 seconds +Domain Reload Profiling: + ReloadAssembly (1623ms) + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1244ms) + LoadAssemblies (182ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (698ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6602. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 4.684700 ms (FindLiveObjects: 0.427800 ms CreateObjectMapping: 0.227200 ms MarkObjects: 3.966200 ms DeleteObjects: 0.061300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020925 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.421 seconds +Domain Reload Profiling: + ReloadAssembly (1422ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1114ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (673ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6605. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.638100 ms (FindLiveObjects: 0.445600 ms CreateObjectMapping: 0.255400 ms MarkObjects: 1.908100 ms DeleteObjects: 0.028200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023831 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.374 seconds +Domain Reload Profiling: + ReloadAssembly (1375ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1086ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (639ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6608. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.597200 ms (FindLiveObjects: 0.390200 ms CreateObjectMapping: 0.189900 ms MarkObjects: 1.990200 ms DeleteObjects: 0.026300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018289 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.455 seconds +Domain Reload Profiling: + ReloadAssembly (1456ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1135ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6611. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.234300 ms (FindLiveObjects: 0.704500 ms CreateObjectMapping: 0.323800 ms MarkObjects: 2.170600 ms DeleteObjects: 0.034900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017507 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1285ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (717ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (572ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6614. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.370000 ms (FindLiveObjects: 0.649100 ms CreateObjectMapping: 0.425900 ms MarkObjects: 2.253200 ms DeleteObjects: 0.039700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025271 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.892 seconds +Domain Reload Profiling: + ReloadAssembly (2893ms) + BeginReloadAssembly (371ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (141ms) + EndReloadAssembly (2368ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (512ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (1434ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (124ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (258ms) + ProcessInitializeOnLoadAttributes (979ms) + ProcessInitializeOnLoadMethodAttributes (43ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6617. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 4.132300 ms (FindLiveObjects: 1.005400 ms CreateObjectMapping: 0.473900 ms MarkObjects: 2.593600 ms DeleteObjects: 0.057700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020434 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.424 seconds +Domain Reload Profiling: + ReloadAssembly (1425ms) + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1084ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6620. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.715300 ms (FindLiveObjects: 0.799500 ms CreateObjectMapping: 0.336900 ms MarkObjects: 2.533400 ms DeleteObjects: 0.043600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021410 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.418 seconds +Domain Reload Profiling: + ReloadAssembly (1419ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1121ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (289ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (641ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6623. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.746900 ms (FindLiveObjects: 0.490500 ms CreateObjectMapping: 0.215400 ms MarkObjects: 2.019800 ms DeleteObjects: 0.019900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021154 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.494 seconds +Domain Reload Profiling: + ReloadAssembly (1495ms) + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1170ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (295ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6626. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.842800 ms (FindLiveObjects: 0.399300 ms CreateObjectMapping: 0.188200 ms MarkObjects: 2.232500 ms DeleteObjects: 0.021900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023287 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1244ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6629. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 3.665900 ms (FindLiveObjects: 0.928800 ms CreateObjectMapping: 0.311300 ms MarkObjects: 2.385800 ms DeleteObjects: 0.038500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021817 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.455 seconds +Domain Reload Profiling: + ReloadAssembly (1456ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1159ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (318ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6632. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 2.828000 ms (FindLiveObjects: 0.407700 ms CreateObjectMapping: 0.193300 ms MarkObjects: 2.203200 ms DeleteObjects: 0.022400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016905 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.501 seconds +Domain Reload Profiling: + ReloadAssembly (1502ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1233ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (688ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6635. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 4.129800 ms (FindLiveObjects: 0.771900 ms CreateObjectMapping: 0.436500 ms MarkObjects: 2.831300 ms DeleteObjects: 0.086600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015507 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1259ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (702ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6638. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.907400 ms (FindLiveObjects: 0.499300 ms CreateObjectMapping: 0.259000 ms MarkObjects: 2.116500 ms DeleteObjects: 0.031200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016787 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.407 seconds +Domain Reload Profiling: + ReloadAssembly (1407ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1095ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (650ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6641. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.507200 ms (FindLiveObjects: 0.546400 ms CreateObjectMapping: 0.250900 ms MarkObjects: 2.658000 ms DeleteObjects: 0.049700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022882 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.624 seconds +Domain Reload Profiling: + ReloadAssembly (1625ms) + BeginReloadAssembly (215ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1251ms) + LoadAssemblies (199ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (359ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (655ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6644. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.834200 ms (FindLiveObjects: 0.407400 ms CreateObjectMapping: 0.185100 ms MarkObjects: 2.203100 ms DeleteObjects: 0.037300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019693 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.421 seconds +Domain Reload Profiling: + ReloadAssembly (1422ms) + BeginReloadAssembly (211ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1088ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6647. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.846300 ms (FindLiveObjects: 0.590500 ms CreateObjectMapping: 0.289000 ms MarkObjects: 1.940300 ms DeleteObjects: 0.025300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018614 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.443 seconds +Domain Reload Profiling: + ReloadAssembly (1444ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1156ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (301ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6650. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.799700 ms (FindLiveObjects: 0.518100 ms CreateObjectMapping: 0.236800 ms MarkObjects: 2.005000 ms DeleteObjects: 0.038500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015010 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.575 seconds +Domain Reload Profiling: + ReloadAssembly (1576ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1294ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6653. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 4.289500 ms (FindLiveObjects: 0.664000 ms CreateObjectMapping: 0.755900 ms MarkObjects: 2.824600 ms DeleteObjects: 0.043700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 12.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.9 KB). Loaded Objects now: 6653. +Memory consumption went from 95.6 MB to 95.6 MB. +Total: 4.838300 ms (FindLiveObjects: 0.708300 ms CreateObjectMapping: 0.286500 ms MarkObjects: 3.768300 ms DeleteObjects: 0.073200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016331 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.772 seconds +Domain Reload Profiling: + ReloadAssembly (1773ms) + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1418ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (790ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (600ms) + ProcessInitializeOnLoadMethodAttributes (59ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6656. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 4.687700 ms (FindLiveObjects: 0.859400 ms CreateObjectMapping: 0.503500 ms MarkObjects: 3.273600 ms DeleteObjects: 0.048000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 8281.200428 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Debris.prefab + artifactKey: Guid(d567323cfec0342498408fae5b4863e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Debris.prefab using Guid(d567323cfec0342498408fae5b4863e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd26d5b2442a7b49e32299fe84e912c5') in 0.216005 seconds +Number of asset objects unloaded after import = 12 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018429 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.652 seconds +Domain Reload Profiling: + ReloadAssembly (1652ms) + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1314ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (708ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (566ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6660. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 5.192100 ms (FindLiveObjects: 0.903400 ms CreateObjectMapping: 0.844600 ms MarkObjects: 3.395300 ms DeleteObjects: 0.046900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 53701.604819 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathLine.mat + artifactKey: Guid(f5dc516bdbde84c5c97a6cf7a8daa61f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathLine.mat using Guid(f5dc516bdbde84c5c97a6cf7a8daa61f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a87e4ccd12125dcb5947da91df345f6') in 0.195154 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000054 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.mat + artifactKey: Guid(1c0721d430ad04938a36f5a1b677c1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.mat using Guid(1c0721d430ad04938a36f5a1b677c1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea917ad9cb3e4f2a976f9530a5713cb1') in 0.081726 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.psd + artifactKey: Guid(681ea79f1bae440be9dc0e8a746eaa8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.psd using Guid(681ea79f1bae440be9dc0e8a746eaa8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b48fda3be51e73cfd24134f48271d02') in 0.390823 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.prefab + artifactKey: Guid(539c01fc2687544cb8fb54e030a27f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example8_PathTypes/pathSquare.prefab using Guid(539c01fc2687544cb8fb54e030a27f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0b8a4b840a23268ccaed8c46b8cdd21') in 0.035203 seconds +Number of asset objects unloaded after import = 9 +======================================================================== +Received Import Request. + Time since last request: 1.143526 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/Arrow.psd + artifactKey: Guid(5de2706722ecf4e7797812f980546c1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/Arrow.psd using Guid(5de2706722ecf4e7797812f980546c1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47b8a4b5c3da6a1e2b53f8d681c8bcff') in 0.037212 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/RVOAgent.prefab + artifactKey: Guid(dbf1877db1c4f4ff3930d903c0f5bb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example11_RVO/RVOAgent.prefab using Guid(dbf1877db1c4f4ff3930d903c0f5bb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '723d54c7549c167f67b7351021f032e6') in 0.054935 seconds +Number of asset objects unloaded after import = 15 diff --git a/JNFrame/Logs/AssetImportWorker1.log b/JNFrame/Logs/AssetImportWorker1.log index 3415a231..6daa5fc3 100644 --- a/JNFrame/Logs/AssetImportWorker1.log +++ b/JNFrame/Logs/AssetImportWorker1.log @@ -1,10 +1,10 @@ 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' +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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 +D:\Unity\2021.3.33f1c1\Editor\Unity.exe -adb2 -batchMode -noUpm @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker1.log -srvPort -49487 +53942 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -39,8 +39,6 @@ D:/myproject/JisolGame/JNFrame "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" @@ -49,15 +47,16 @@ 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 [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 [17432] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 4159000133 [EditorId] 4159000133 [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 alternative multi-casting on [225.0.0.222:34997]... +Player connection [17432] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 4159000133 [EditorId] 4159000133 [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 38.91 ms, found 3 plugins. +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 131.27 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 +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: @@ -67,8679 +66,7403 @@ Direct3D: 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:56328 +Mono path[0] = 'D:/Unity/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56592 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 +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.004967 seconds. Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 1202 ms +Android Extension - Scanning For ADB Devices 222 ms +Refreshing native plugins compatible for Editor in 111.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 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 +- Completed reload, in 0.893 seconds +Domain Reload Profiling: + ReloadAssembly (893ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (706ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (88ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (22ms) + SetupLoadedEditorAssemblies (546ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (306ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (111ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (88ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.015913 seconds. 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 +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. Package Manager 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. +- Completed reload, in 1.456 seconds +Domain Reload Profiling: + ReloadAssembly (1457ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (18ms) + EndReloadAssembly (1231ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (758ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (586ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.76 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) +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6365. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 2.976700 ms (FindLiveObjects: 0.435200 ms CreateObjectMapping: 0.205000 ms MarkObjects: 2.256100 ms DeleteObjects: 0.079500 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-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.025532 seconds. 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 +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.399 seconds +Domain Reload Profiling: + ReloadAssembly (1399ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1136ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (30ms) + SetupLoadedEditorAssemblies (623ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6368. +Memory consumption went from 211.6 MB to 211.6 MB. +Total: 2.795400 ms (FindLiveObjects: 0.364500 ms CreateObjectMapping: 0.202700 ms MarkObjects: 2.197400 ms DeleteObjects: 0.029800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: 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. + Time since last request: 87404.066679 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/SomeBox.prefab + artifactKey: Guid(b1a1bb6d1bcc546df826488cc72438c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/SomeBox.prefab using Guid(b1a1bb6d1bcc546df826488cc72438c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bcf06121433098d20831f7213a78391e') in 0.115071 seconds +Number of asset objects unloaded after import = 9 +======================================================================== +Received Import Request. + Time since last request: 15.097714 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@awake.FBX using Guid(7e212db0aa2c00b448aa511ece336f20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4595f5e6d861a30b88500e2b24dbe5b7') in 0.120695 seconds Number of asset objects unloaded after import = 56 ======================================================================== Received Import Request. - Time since last request: 0.000064 seconds. + Time since last request: 0.000091 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 +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot_render.prefab using Guid(0b9c68ddd67ee5b9e8aeca86ac0fbc03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '884267d0bb88802d82b8a8ff61ac93cb') in 0.057738 seconds +Number of asset objects unloaded after import = 116 ======================================================================== 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 + Time since last request: 0.000031 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@right.FBX + artifactKey: Guid(f8136785e54fd1d459d2a3a0849fe770) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@right.FBX using Guid(f8136785e54fd1d459d2a3a0849fe770) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8124bd45063720903a3913f0627772cd') in 0.111297 seconds +Number of asset objects unloaded after import = 58 ======================================================================== Received Import Request. - Time since last request: 0.000020 seconds. + Time since last request: 0.000088 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Prefabs/MineBot/mine_bot@left.FBX using Guid(b667956babf1f0446a76fa8b99404ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5200b31770c260b45ab756b94027e2a') in 0.092681 seconds Number of asset objects unloaded after import = 58 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014713 seconds. 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 +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.449 seconds +Domain Reload Profiling: + ReloadAssembly (1450ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1190ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6382. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 2.715900 ms (FindLiveObjects: 0.413500 ms CreateObjectMapping: 0.231700 ms MarkObjects: 2.035700 ms DeleteObjects: 0.033900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015151 seconds. 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 +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.493 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1224ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (331ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6385. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 3.239000 ms (FindLiveObjects: 0.449100 ms CreateObjectMapping: 0.235400 ms MarkObjects: 2.514600 ms DeleteObjects: 0.038000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: 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 + Time since last request: 937.244266 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/JNWorldSync01.unity + artifactKey: Guid(e7793c2a31991de4ba4d03f36dc06366) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/JNWorldSync01.unity using Guid(e7793c2a31991de4ba4d03f36dc06366) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61ce9ab350622285e2cbf3a372d16065') in 0.025069 seconds Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018355 seconds. 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 +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1177ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6388. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 6.315800 ms (FindLiveObjects: 0.550700 ms CreateObjectMapping: 0.350900 ms MarkObjects: 5.323600 ms DeleteObjects: 0.087500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018570 seconds. 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 +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.526 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1238ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6391. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.355700 ms (FindLiveObjects: 0.506600 ms CreateObjectMapping: 0.298600 ms MarkObjects: 2.507900 ms DeleteObjects: 0.040800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015623 seconds. 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 +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1241ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6394. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.422300 ms (FindLiveObjects: 0.415000 ms CreateObjectMapping: 0.562100 ms MarkObjects: 2.404700 ms DeleteObjects: 0.038500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016503 seconds. 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 +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.574 seconds +Domain Reload Profiling: + ReloadAssembly (1575ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1297ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6397. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.538700 ms (FindLiveObjects: 0.770500 ms CreateObjectMapping: 0.284500 ms MarkObjects: 2.446800 ms DeleteObjects: 0.035000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016979 seconds. 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 +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1243ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6400. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.694700 ms (FindLiveObjects: 0.469400 ms CreateObjectMapping: 0.209800 ms MarkObjects: 1.980900 ms DeleteObjects: 0.033200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014247 seconds. 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 +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.599 seconds +Domain Reload Profiling: + ReloadAssembly (1599ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1296ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (709ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (564ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.95 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6403. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.662000 ms (FindLiveObjects: 0.472700 ms CreateObjectMapping: 0.234700 ms MarkObjects: 1.919100 ms DeleteObjects: 0.034100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014766 seconds. 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 +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1247ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (678ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6406. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.163900 ms (FindLiveObjects: 0.487000 ms CreateObjectMapping: 0.376200 ms MarkObjects: 2.254000 ms DeleteObjects: 0.045400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018422 seconds. 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 +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.528 seconds +Domain Reload Profiling: + ReloadAssembly (1528ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1184ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (306ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6409. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 4.849000 ms (FindLiveObjects: 0.412400 ms CreateObjectMapping: 0.268700 ms MarkObjects: 4.093600 ms DeleteObjects: 0.072200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018244 seconds. 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 +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.419 seconds +Domain Reload Profiling: + ReloadAssembly (1420ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1138ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (319ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (620ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (510ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6412. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.802300 ms (FindLiveObjects: 0.384800 ms CreateObjectMapping: 0.197000 ms MarkObjects: 2.188000 ms DeleteObjects: 0.031500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014901 seconds. 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 +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.573 seconds +Domain Reload Profiling: + ReloadAssembly (1574ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1313ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (704ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.42 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6415. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.982100 ms (FindLiveObjects: 0.701600 ms CreateObjectMapping: 0.320700 ms MarkObjects: 1.925400 ms DeleteObjects: 0.032500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020092 seconds. 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 +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.430 seconds +Domain Reload Profiling: + ReloadAssembly (1431ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1137ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (317ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (640ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6418. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 2.699600 ms (FindLiveObjects: 0.370400 ms CreateObjectMapping: 0.191200 ms MarkObjects: 2.114600 ms DeleteObjects: 0.022200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019819 seconds. 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 +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.338 seconds +Domain Reload Profiling: + ReloadAssembly (1338ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1059ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (260ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6422. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.920100 ms (FindLiveObjects: 0.419000 ms CreateObjectMapping: 0.211600 ms MarkObjects: 2.250900 ms DeleteObjects: 0.037000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015000 seconds. 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 +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.385 seconds +Domain Reload Profiling: + ReloadAssembly (1385ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1105ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (288ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (23.0 KB). Loaded Objects now: 6424. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 4.057300 ms (FindLiveObjects: 0.389500 ms CreateObjectMapping: 0.241500 ms MarkObjects: 3.356400 ms DeleteObjects: 0.068700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.126755 seconds. 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 +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.851 seconds +Domain Reload Profiling: + ReloadAssembly (1851ms) + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1507ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (620ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6428. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.862800 ms (FindLiveObjects: 0.406300 ms CreateObjectMapping: 0.235700 ms MarkObjects: 3.137100 ms DeleteObjects: 0.082500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014202 seconds. 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 +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.663 seconds +Domain Reload Profiling: + ReloadAssembly (1664ms) + BeginReloadAssembly (262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1255ms) + LoadAssemblies (195ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (667ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6431. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.655300 ms (FindLiveObjects: 0.428500 ms CreateObjectMapping: 0.194400 ms MarkObjects: 2.003900 ms DeleteObjects: 0.027000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015114 seconds. 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 +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.546 seconds +Domain Reload Profiling: + ReloadAssembly (1546ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1260ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6434. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.589300 ms (FindLiveObjects: 0.522000 ms CreateObjectMapping: 0.224200 ms MarkObjects: 1.814400 ms DeleteObjects: 0.027200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015010 seconds. 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 +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.445 seconds +Domain Reload Profiling: + ReloadAssembly (1445ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1192ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (317ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6437. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 3.352700 ms (FindLiveObjects: 0.625300 ms CreateObjectMapping: 0.257700 ms MarkObjects: 2.436600 ms DeleteObjects: 0.032300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.026904 seconds. 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 +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.795 seconds +Domain Reload Profiling: + ReloadAssembly (1795ms) + BeginReloadAssembly (312ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + EndReloadAssembly (1361ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (434ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (22.0 KB). Loaded Objects now: 6439. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.490900 ms (FindLiveObjects: 0.425900 ms CreateObjectMapping: 0.216900 ms MarkObjects: 1.822900 ms DeleteObjects: 0.024200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.035577 seconds. 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 +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.627 seconds +Domain Reload Profiling: + ReloadAssembly (1628ms) + BeginReloadAssembly (277ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1170ms) + LoadAssemblies (220ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (666ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (541ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6442. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.547600 ms (FindLiveObjects: 0.455400 ms CreateObjectMapping: 0.241000 ms MarkObjects: 1.825200 ms DeleteObjects: 0.024900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.028605 seconds. 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 +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 2.545 seconds +Domain Reload Profiling: + ReloadAssembly (2546ms) + BeginReloadAssembly (315ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (91ms) + EndReloadAssembly (2130ms) + LoadAssemblies (236ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (754ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (217ms) + SetupLoadedEditorAssemblies (917ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (46ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (723ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Script is not up to date after domain reload: guid(79d7cad08d874b6aba4388770d624c79) path("Assets/Game/Plugins/JNGame/Sync/Frame/AstarPath/JNAStarPath.cs") state(2) +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6445. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 2.696700 ms (FindLiveObjects: 0.411500 ms CreateObjectMapping: 0.209400 ms MarkObjects: 2.035400 ms DeleteObjects: 0.039300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.076141 seconds. 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 +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.424 seconds +Domain Reload Profiling: + ReloadAssembly (1424ms) + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + EndReloadAssembly (1107ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6449. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 4.132800 ms (FindLiveObjects: 0.963900 ms CreateObjectMapping: 0.692600 ms MarkObjects: 2.429900 ms DeleteObjects: 0.045100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.025196 seconds. 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 +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.946 seconds +Domain Reload Profiling: + ReloadAssembly (1946ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1661ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (729ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (679ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.81 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6452. +Memory consumption went from 212.3 MB to 212.2 MB. +Total: 3.691300 ms (FindLiveObjects: 0.757500 ms CreateObjectMapping: 0.504300 ms MarkObjects: 2.394100 ms DeleteObjects: 0.034500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020141 seconds. 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 +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.434 seconds +Domain Reload Profiling: + ReloadAssembly (1434ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1132ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (315ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6455. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.812800 ms (FindLiveObjects: 0.481100 ms CreateObjectMapping: 0.251900 ms MarkObjects: 2.053300 ms DeleteObjects: 0.025600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018441 seconds. 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 +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (88ms) + EndReloadAssembly (1136ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (662ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 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) +Unloading 5885 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6459. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 2.975100 ms (FindLiveObjects: 0.655600 ms CreateObjectMapping: 0.326700 ms MarkObjects: 1.960100 ms DeleteObjects: 0.031600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021535 seconds. 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 +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.396 seconds +Domain Reload Profiling: + ReloadAssembly (1397ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1067ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6463. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.524700 ms (FindLiveObjects: 0.823500 ms CreateObjectMapping: 0.374900 ms MarkObjects: 2.297100 ms DeleteObjects: 0.028200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014601 seconds. 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 +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 2.162 seconds +Domain Reload Profiling: + ReloadAssembly (2163ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1878ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (1356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (1150ms) + ProcessInitializeOnLoadMethodAttributes (76ms) + AfterProcessingInitializeOnLoad (31ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6466. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.709000 ms (FindLiveObjects: 0.716600 ms CreateObjectMapping: 0.457100 ms MarkObjects: 2.502700 ms DeleteObjects: 0.030200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018211 seconds. 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 +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.399 seconds +Domain Reload Profiling: + ReloadAssembly (1400ms) + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1049ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (617ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (508ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6469. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 4.051800 ms (FindLiveObjects: 0.777300 ms CreateObjectMapping: 0.664900 ms MarkObjects: 2.561900 ms DeleteObjects: 0.046600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016843 seconds. 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 +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.429 seconds +Domain Reload Profiling: + ReloadAssembly (1430ms) + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1086ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6472. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 2.536400 ms (FindLiveObjects: 0.379700 ms CreateObjectMapping: 0.208400 ms MarkObjects: 1.922000 ms DeleteObjects: 0.025600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017924 seconds. 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 +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.378 seconds +Domain Reload Profiling: + ReloadAssembly (1378ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1098ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6475. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 2.452600 ms (FindLiveObjects: 0.376100 ms CreateObjectMapping: 0.190100 ms MarkObjects: 1.865900 ms DeleteObjects: 0.019500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4008.170772 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/Arrow.psd + artifactKey: Guid(8870f714d433197499533cddcd1ceb23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/Arrow.psd using Guid(8870f714d433197499533cddcd1ceb23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d81b0ab317f2acb8e5a1af7df0e9519') in 0.063627 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/selectionBox.psd + artifactKey: Guid(6284f8fa221e3b549bfd87d14a98715f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/selectionBox.psd using Guid(6284f8fa221e3b549bfd87d14a98715f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f04c94c734456e3c26c11d1411fc7c58') in 0.025243 seconds +Number of asset objects unloaded after import = 2 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019946 seconds. 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 +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.388 seconds +Domain Reload Profiling: + ReloadAssembly (1389ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1113ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (296ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 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) +Unloading 5890 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6485. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.010300 ms (FindLiveObjects: 0.422600 ms CreateObjectMapping: 0.221700 ms MarkObjects: 2.308200 ms DeleteObjects: 0.056200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 7.571100 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVO.unity + artifactKey: Guid(f098cad60c0316a4e8a36644a48953fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVO.unity using Guid(f098cad60c0316a4e8a36644a48953fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36e972a9b95c5e066838f6b55d4b0f2d') in 0.022541 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016550 seconds. 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 +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.397 seconds +Domain Reload Profiling: + ReloadAssembly (1398ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1110ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (290ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (641ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 38 unused Assets / (23.0 KB). Loaded Objects now: 6484. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.956600 ms (FindLiveObjects: 0.545900 ms CreateObjectMapping: 0.267900 ms MarkObjects: 2.102400 ms DeleteObjects: 0.039000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019708 seconds. 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 +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.449 seconds +Domain Reload Profiling: + ReloadAssembly (1449ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1148ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (326ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6487. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.529000 ms (FindLiveObjects: 0.581400 ms CreateObjectMapping: 0.257300 ms MarkObjects: 2.646000 ms DeleteObjects: 0.043100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015190 seconds. 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 +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.532 seconds +Domain Reload Profiling: + ReloadAssembly (1533ms) + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1269ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (354ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6490. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.460200 ms (FindLiveObjects: 0.483800 ms CreateObjectMapping: 0.266700 ms MarkObjects: 2.653800 ms DeleteObjects: 0.054200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019666 seconds. 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 +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1511ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1242ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6493. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 4.023700 ms (FindLiveObjects: 0.451400 ms CreateObjectMapping: 0.253100 ms MarkObjects: 3.272500 ms DeleteObjects: 0.045000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.023589 seconds. 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 +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.534 seconds +Domain Reload Profiling: + ReloadAssembly (1535ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1258ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (692ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6496. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 3.146400 ms (FindLiveObjects: 0.711400 ms CreateObjectMapping: 0.406700 ms MarkObjects: 1.996600 ms DeleteObjects: 0.029500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016504 seconds. 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 +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1217ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (330ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6499. +Memory consumption went from 212.4 MB to 212.4 MB. +Total: 2.658100 ms (FindLiveObjects: 0.434000 ms CreateObjectMapping: 0.258500 ms MarkObjects: 1.933500 ms DeleteObjects: 0.030800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Refreshing native plugins compatible for Editor in 8.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6499. +Memory consumption went from 95.5 MB to 95.5 MB. +Total: 3.685600 ms (FindLiveObjects: 0.693400 ms CreateObjectMapping: 0.474400 ms MarkObjects: 2.488600 ms DeleteObjects: 0.028500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019487 seconds. 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 +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.740 seconds +Domain Reload Profiling: + ReloadAssembly (1740ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1414ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (406ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (748ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (578ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6502. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 9.912600 ms (FindLiveObjects: 1.114000 ms CreateObjectMapping: 1.660900 ms MarkObjects: 7.048500 ms DeleteObjects: 0.086300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021035 seconds. 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 +Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.645 seconds +Domain Reload Profiling: + ReloadAssembly (1646ms) + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (85ms) + EndReloadAssembly (1306ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (785ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (633ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5887 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6506. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.790800 ms (FindLiveObjects: 0.440900 ms CreateObjectMapping: 0.230200 ms MarkObjects: 3.091900 ms DeleteObjects: 0.026800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018646 seconds. 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 +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.463 seconds +Domain Reload Profiling: + ReloadAssembly (1464ms) + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1137ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (312ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 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) +Unloading 5887 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6509. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.670600 ms (FindLiveObjects: 0.381300 ms CreateObjectMapping: 0.202100 ms MarkObjects: 2.058500 ms DeleteObjects: 0.027900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.022955 seconds. 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 +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.710 seconds +Domain Reload Profiling: + ReloadAssembly (1712ms) + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (87ms) + EndReloadAssembly (1249ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (406ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6513. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 3.222400 ms (FindLiveObjects: 0.491500 ms CreateObjectMapping: 0.276600 ms MarkObjects: 2.429100 ms DeleteObjects: 0.024000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016550 seconds. 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 +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.460 seconds +Domain Reload Profiling: + ReloadAssembly (1461ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1159ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (305ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6516. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.710200 ms (FindLiveObjects: 0.386200 ms CreateObjectMapping: 0.199800 ms MarkObjects: 2.098700 ms DeleteObjects: 0.024600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.022829 seconds. 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 +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.847 seconds +Domain Reload Profiling: + ReloadAssembly (1847ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1537ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (600ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (636ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6519. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.931700 ms (FindLiveObjects: 0.451300 ms CreateObjectMapping: 0.229100 ms MarkObjects: 2.223400 ms DeleteObjects: 0.027000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017856 seconds. 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 +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.577 seconds +Domain Reload Profiling: + ReloadAssembly (1578ms) + BeginReloadAssembly (260ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1153ms) + LoadAssemblies (223ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (516ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6522. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.779900 ms (FindLiveObjects: 0.473800 ms CreateObjectMapping: 0.293400 ms MarkObjects: 1.986200 ms DeleteObjects: 0.025300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.036037 seconds. 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 +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.830 seconds +Domain Reload Profiling: + ReloadAssembly (1831ms) + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (1461ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (580ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (673ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.32 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6525. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.548900 ms (FindLiveObjects: 0.426100 ms CreateObjectMapping: 0.244300 ms MarkObjects: 1.850400 ms DeleteObjects: 0.027200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.025330 seconds. 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 +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1519ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1211ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (310ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6528. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.570100 ms (FindLiveObjects: 0.453100 ms CreateObjectMapping: 0.235100 ms MarkObjects: 1.852700 ms DeleteObjects: 0.028400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017485 seconds. 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 +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.472 seconds +Domain Reload Profiling: + ReloadAssembly (1473ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1184ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (322ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (538ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6531. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 3.145300 ms (FindLiveObjects: 0.420400 ms CreateObjectMapping: 0.218000 ms MarkObjects: 2.479600 ms DeleteObjects: 0.026200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019291 seconds. 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 +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 2.088 seconds +Domain Reload Profiling: + ReloadAssembly (2089ms) + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1776ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (260ms) + SetupLoadedEditorAssemblies (733ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (578ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6534. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.815000 ms (FindLiveObjects: 0.431400 ms CreateObjectMapping: 0.222100 ms MarkObjects: 2.126700 ms DeleteObjects: 0.033700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014853 seconds. 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 +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1528ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1243ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (325ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (722ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (581ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6537. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 3.087100 ms (FindLiveObjects: 0.585000 ms CreateObjectMapping: 0.253800 ms MarkObjects: 2.209600 ms DeleteObjects: 0.037400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.026502 seconds. 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 +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.442 seconds +Domain Reload Profiling: + ReloadAssembly (1443ms) + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1123ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (315ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (636ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6540. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.566300 ms (FindLiveObjects: 0.428800 ms CreateObjectMapping: 0.216100 ms MarkObjects: 1.895700 ms DeleteObjects: 0.024800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018172 seconds. 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 +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1512ms) + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1177ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.68 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6543. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.262000 ms (FindLiveObjects: 0.394400 ms CreateObjectMapping: 0.190700 ms MarkObjects: 2.611300 ms DeleteObjects: 0.064100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016371 seconds. 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 +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.478 seconds +Domain Reload Profiling: + ReloadAssembly (1479ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1166ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (305ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6546. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.210400 ms (FindLiveObjects: 0.529800 ms CreateObjectMapping: 0.319300 ms MarkObjects: 2.326300 ms DeleteObjects: 0.033500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021877 seconds. 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 +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.580 seconds +Domain Reload Profiling: + ReloadAssembly (1581ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1251ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (653ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (541ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6549. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.296100 ms (FindLiveObjects: 0.733700 ms CreateObjectMapping: 0.374700 ms MarkObjects: 2.137000 ms DeleteObjects: 0.048700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018182 seconds. 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 +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1223ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (541ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6552. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 4.295400 ms (FindLiveObjects: 1.546900 ms CreateObjectMapping: 0.549000 ms MarkObjects: 2.158000 ms DeleteObjects: 0.039200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021162 seconds. 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 +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.510 seconds +Domain Reload Profiling: + ReloadAssembly (1511ms) + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1139ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (297ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6555. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 2.805300 ms (FindLiveObjects: 0.425700 ms CreateObjectMapping: 0.203800 ms MarkObjects: 2.154400 ms DeleteObjects: 0.020200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020721 seconds. 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 +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1587ms) + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1193ms) + LoadAssemblies (195ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (305ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6558. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 2.959400 ms (FindLiveObjects: 0.422000 ms CreateObjectMapping: 0.207500 ms MarkObjects: 2.305600 ms DeleteObjects: 0.023400 ms) -========== OUTPUTTING STACK TRACE ================== +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.027090 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.700 seconds +Domain Reload Profiling: + ReloadAssembly (1701ms) + BeginReloadAssembly (322ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (126ms) + EndReloadAssembly (1271ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6564. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 5.185100 ms (FindLiveObjects: 1.238400 ms CreateObjectMapping: 0.424800 ms MarkObjects: 3.441700 ms DeleteObjects: 0.077000 ms) -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 +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016514 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1471ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1176ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (721ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (587ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6567. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 5.416500 ms (FindLiveObjects: 0.871000 ms CreateObjectMapping: 0.477700 ms MarkObjects: 3.982100 ms DeleteObjects: 0.083100 ms) -========== END OF STACKTRACE =========== +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020502 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.469 seconds +Domain Reload Profiling: + ReloadAssembly (1470ms) + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1149ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (619ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (504ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6570. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 2.721700 ms (FindLiveObjects: 0.391600 ms CreateObjectMapping: 0.190100 ms MarkObjects: 2.093400 ms DeleteObjects: 0.045400 ms) -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 +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018251 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.828 seconds +Domain Reload Profiling: + ReloadAssembly (1829ms) + BeginReloadAssembly (273ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + EndReloadAssembly (1313ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (437ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6574. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 3.241700 ms (FindLiveObjects: 0.436700 ms CreateObjectMapping: 0.264300 ms MarkObjects: 2.501300 ms DeleteObjects: 0.037500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016643 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.428 seconds +Domain Reload Profiling: + ReloadAssembly (1429ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1143ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6577. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 2.609000 ms (FindLiveObjects: 0.414800 ms CreateObjectMapping: 0.219300 ms MarkObjects: 1.954100 ms DeleteObjects: 0.020100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.027222 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.428 seconds +Domain Reload Profiling: + ReloadAssembly (1429ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1144ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (23.0 KB). Loaded Objects now: 6579. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 2.949300 ms (FindLiveObjects: 0.454500 ms CreateObjectMapping: 0.217100 ms MarkObjects: 2.252100 ms DeleteObjects: 0.024700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018843 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.984 seconds +Domain Reload Profiling: + ReloadAssembly (1985ms) + BeginReloadAssembly (388ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (105ms) + EndReloadAssembly (1448ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (513ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (650ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6583. +Memory consumption went from 213.0 MB to 212.9 MB. +Total: 4.603000 ms (FindLiveObjects: 1.646500 ms CreateObjectMapping: 0.573300 ms MarkObjects: 2.331800 ms DeleteObjects: 0.047900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014826 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.802 seconds +Domain Reload Profiling: + ReloadAssembly (1803ms) + BeginReloadAssembly (259ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1403ms) + LoadAssemblies (197ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (751ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (623ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6586. +Memory consumption went from 213.0 MB to 212.9 MB. +Total: 4.002900 ms (FindLiveObjects: 0.446300 ms CreateObjectMapping: 0.236100 ms MarkObjects: 3.175700 ms DeleteObjects: 0.142000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018132 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.467 seconds +Domain Reload Profiling: + ReloadAssembly (1467ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1174ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (651ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6589. +Memory consumption went from 213.0 MB to 212.9 MB. +Total: 5.726700 ms (FindLiveObjects: 0.982200 ms CreateObjectMapping: 0.669800 ms MarkObjects: 4.006000 ms DeleteObjects: 0.066600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022502 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.401 seconds +Domain Reload Profiling: + ReloadAssembly (1401ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1114ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (298ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6592. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.790900 ms (FindLiveObjects: 0.433600 ms CreateObjectMapping: 0.217600 ms MarkObjects: 2.106300 ms DeleteObjects: 0.032200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017832 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.382 seconds +Domain Reload Profiling: + ReloadAssembly (1383ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1092ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6595. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.512700 ms (FindLiveObjects: 0.384500 ms CreateObjectMapping: 0.198800 ms MarkObjects: 1.895400 ms DeleteObjects: 0.032800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018087 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.396 seconds +Domain Reload Profiling: + ReloadAssembly (1397ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1103ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6598. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 3.279400 ms (FindLiveObjects: 0.788500 ms CreateObjectMapping: 0.244700 ms MarkObjects: 2.219300 ms DeleteObjects: 0.025100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017517 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.341 seconds +Domain Reload Profiling: + ReloadAssembly (1341ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1064ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6601. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.814000 ms (FindLiveObjects: 0.418400 ms CreateObjectMapping: 0.222500 ms MarkObjects: 2.101000 ms DeleteObjects: 0.069900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015752 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.381 seconds +Domain Reload Profiling: + ReloadAssembly (1382ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1077ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (269ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6604. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 3.721900 ms (FindLiveObjects: 0.865600 ms CreateObjectMapping: 0.561600 ms MarkObjects: 2.261500 ms DeleteObjects: 0.030700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016420 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.377 seconds +Domain Reload Profiling: + ReloadAssembly (1377ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1096ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6608. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.906000 ms (FindLiveObjects: 0.441400 ms CreateObjectMapping: 0.242900 ms MarkObjects: 2.196200 ms DeleteObjects: 0.024100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022269 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.507 seconds +Domain Reload Profiling: + ReloadAssembly (1507ms) + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (73ms) + EndReloadAssembly (1181ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6611. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.979400 ms (FindLiveObjects: 0.387300 ms CreateObjectMapping: 0.245200 ms MarkObjects: 2.323500 ms DeleteObjects: 0.022500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019123 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.538 seconds +Domain Reload Profiling: + ReloadAssembly (1539ms) + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1222ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (282ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (727ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (593ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6614. +Memory consumption went from 213.1 MB to 213.0 MB. +Total: 6.337800 ms (FindLiveObjects: 0.746100 ms CreateObjectMapping: 1.313500 ms MarkObjects: 4.233600 ms DeleteObjects: 0.043200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020241 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.389 seconds +Domain Reload Profiling: + ReloadAssembly (1389ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1096ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (286ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6617. +Memory consumption went from 213.1 MB to 213.0 MB. +Total: 2.569900 ms (FindLiveObjects: 0.408300 ms CreateObjectMapping: 0.211900 ms MarkObjects: 1.929800 ms DeleteObjects: 0.018700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015596 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.558 seconds +Domain Reload Profiling: + ReloadAssembly (1559ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1288ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (717ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (573ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6620. +Memory consumption went from 213.1 MB to 213.0 MB. +Total: 2.737500 ms (FindLiveObjects: 0.418400 ms CreateObjectMapping: 0.255700 ms MarkObjects: 2.021600 ms DeleteObjects: 0.040400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014931 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1231ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6623. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.053800 ms (FindLiveObjects: 0.631900 ms CreateObjectMapping: 0.332800 ms MarkObjects: 2.057900 ms DeleteObjects: 0.029400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.029327 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.500 seconds +Domain Reload Profiling: + ReloadAssembly (1501ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1177ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (310ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (565ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6626. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.665300 ms (FindLiveObjects: 0.439300 ms CreateObjectMapping: 0.249100 ms MarkObjects: 1.939100 ms DeleteObjects: 0.036600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015968 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.522 seconds +Domain Reload Profiling: + ReloadAssembly (1523ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1233ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (351ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (679ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6629. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.945000 ms (FindLiveObjects: 0.737800 ms CreateObjectMapping: 0.306500 ms MarkObjects: 2.828600 ms DeleteObjects: 0.069600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013881 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.499 seconds +Domain Reload Profiling: + ReloadAssembly (1499ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1207ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6632. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.675700 ms (FindLiveObjects: 0.431100 ms CreateObjectMapping: 0.232700 ms MarkObjects: 1.977300 ms DeleteObjects: 0.033100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021093 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.569 seconds +Domain Reload Profiling: + ReloadAssembly (1570ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1290ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (537ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6635. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.913200 ms (FindLiveObjects: 0.433400 ms CreateObjectMapping: 0.208100 ms MarkObjects: 2.148400 ms DeleteObjects: 0.121700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018208 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1556ms) + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1146ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (298ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6638. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 4.444300 ms (FindLiveObjects: 0.974800 ms CreateObjectMapping: 0.738600 ms MarkObjects: 2.641000 ms DeleteObjects: 0.087900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023893 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.502 seconds +Domain Reload Profiling: + ReloadAssembly (1502ms) + BeginReloadAssembly (221ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1147ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6641. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.767400 ms (FindLiveObjects: 0.421700 ms CreateObjectMapping: 0.217600 ms MarkObjects: 2.093600 ms DeleteObjects: 0.033400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018214 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.578 seconds +Domain Reload Profiling: + ReloadAssembly (1578ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1307ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (408ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (692ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6644. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.580400 ms (FindLiveObjects: 0.915300 ms CreateObjectMapping: 0.293000 ms MarkObjects: 2.317500 ms DeleteObjects: 0.051700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018785 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.449 seconds +Domain Reload Profiling: + ReloadAssembly (1449ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1142ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (306ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (648ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6647. +Memory consumption went from 213.2 MB to 213.1 MB. +Total: 2.674300 ms (FindLiveObjects: 0.423200 ms CreateObjectMapping: 0.198900 ms MarkObjects: 2.020200 ms DeleteObjects: 0.031400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014345 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.571 seconds +Domain Reload Profiling: + ReloadAssembly (1572ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1281ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (710ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (564ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6650. +Memory consumption went from 213.2 MB to 213.1 MB. +Total: 2.783400 ms (FindLiveObjects: 0.430300 ms CreateObjectMapping: 0.218500 ms MarkObjects: 2.109000 ms DeleteObjects: 0.024600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017673 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.473 seconds +Domain Reload Profiling: + ReloadAssembly (1474ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1162ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6653. +Memory consumption went from 213.2 MB to 213.1 MB. +Total: 3.261800 ms (FindLiveObjects: 0.649300 ms CreateObjectMapping: 0.241500 ms MarkObjects: 2.336100 ms DeleteObjects: 0.034000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015865 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.573 seconds +Domain Reload Profiling: + ReloadAssembly (1574ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1277ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (352ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (715ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (573ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6656. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.843100 ms (FindLiveObjects: 0.550400 ms CreateObjectMapping: 0.247400 ms MarkObjects: 2.011500 ms DeleteObjects: 0.032600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014708 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.561 seconds +Domain Reload Profiling: + ReloadAssembly (1562ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1274ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (721ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6659. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.103600 ms (FindLiveObjects: 0.696200 ms CreateObjectMapping: 0.251200 ms MarkObjects: 2.118300 ms DeleteObjects: 0.036400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016247 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.518 seconds +Domain Reload Profiling: + ReloadAssembly (1519ms) + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1215ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6662. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.495100 ms (FindLiveObjects: 0.472800 ms CreateObjectMapping: 0.204200 ms MarkObjects: 1.798000 ms DeleteObjects: 0.019600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014594 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.714 seconds +Domain Reload Profiling: + ReloadAssembly (1715ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1429ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (446ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (736ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (583ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6665. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 4.125900 ms (FindLiveObjects: 0.755400 ms CreateObjectMapping: 0.627200 ms MarkObjects: 2.702100 ms DeleteObjects: 0.040100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6665. +Memory consumption went from 96.2 MB to 96.1 MB. +Total: 5.850700 ms (FindLiveObjects: 0.860900 ms CreateObjectMapping: 0.678300 ms MarkObjects: 4.247900 ms DeleteObjects: 0.060500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017913 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.618 seconds +Domain Reload Profiling: + ReloadAssembly (1619ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1323ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6668. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 4.378000 ms (FindLiveObjects: 0.680500 ms CreateObjectMapping: 0.317400 ms MarkObjects: 3.327000 ms DeleteObjects: 0.051000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015832 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.539 seconds +Domain Reload Profiling: + ReloadAssembly (1540ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1223ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (666ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6671. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.185400 ms (FindLiveObjects: 0.420600 ms CreateObjectMapping: 0.195500 ms MarkObjects: 2.525500 ms DeleteObjects: 0.042300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018536 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.520 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1222ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6674. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.812000 ms (FindLiveObjects: 0.421800 ms CreateObjectMapping: 0.324200 ms MarkObjects: 2.039400 ms DeleteObjects: 0.025200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 10.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6674. +Memory consumption went from 96.2 MB to 96.2 MB. +Total: 6.444300 ms (FindLiveObjects: 0.769000 ms CreateObjectMapping: 0.298300 ms MarkObjects: 5.261500 ms DeleteObjects: 0.111700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017563 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.795 seconds +Domain Reload Profiling: + ReloadAssembly (1796ms) + BeginReloadAssembly (231ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + EndReloadAssembly (1440ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (780ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (615ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6677. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 7.814100 ms (FindLiveObjects: 2.366400 ms CreateObjectMapping: 2.169600 ms MarkObjects: 3.232000 ms DeleteObjects: 0.042500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018950 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.564 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1243ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (352ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6680. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.731000 ms (FindLiveObjects: 0.533400 ms CreateObjectMapping: 0.249800 ms MarkObjects: 1.888000 ms DeleteObjects: 0.057600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.028238 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.596 seconds +Domain Reload Profiling: + ReloadAssembly (1597ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1261ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (685ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6683. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 3.440200 ms (FindLiveObjects: 0.691400 ms CreateObjectMapping: 0.344100 ms MarkObjects: 2.370200 ms DeleteObjects: 0.033200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018430 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.550 seconds +Domain Reload Profiling: + ReloadAssembly (1550ms) + BeginReloadAssembly (207ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1201ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6686. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 5.675800 ms (FindLiveObjects: 0.964900 ms CreateObjectMapping: 0.706100 ms MarkObjects: 3.776600 ms DeleteObjects: 0.223000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023307 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1183ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (318ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6689. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 3.418000 ms (FindLiveObjects: 0.598300 ms CreateObjectMapping: 0.217700 ms MarkObjects: 2.568600 ms DeleteObjects: 0.032300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015483 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.551 seconds +Domain Reload Profiling: + ReloadAssembly (1552ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1261ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (544ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6692. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.104200 ms (FindLiveObjects: 0.895900 ms CreateObjectMapping: 0.554100 ms MarkObjects: 2.610500 ms DeleteObjects: 0.042000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017590 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.440 seconds +Domain Reload Profiling: + ReloadAssembly (1441ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1160ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (507ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6695. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.142600 ms (FindLiveObjects: 0.480500 ms CreateObjectMapping: 0.257900 ms MarkObjects: 2.374600 ms DeleteObjects: 0.028400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017941 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.643 seconds +Domain Reload Profiling: + ReloadAssembly (1644ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1360ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (739ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6698. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.603900 ms (FindLiveObjects: 0.749200 ms CreateObjectMapping: 0.328700 ms MarkObjects: 2.483000 ms DeleteObjects: 0.041600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016197 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.574 seconds +Domain Reload Profiling: + ReloadAssembly (1575ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1260ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (537ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6701. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.722400 ms (FindLiveObjects: 0.791200 ms CreateObjectMapping: 0.462800 ms MarkObjects: 3.381200 ms DeleteObjects: 0.083600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014615 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.430 seconds +Domain Reload Profiling: + ReloadAssembly (1430ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1132ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (291ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6704. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.500800 ms (FindLiveObjects: 0.398100 ms CreateObjectMapping: 0.267000 ms MarkObjects: 2.780600 ms DeleteObjects: 0.053900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016103 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.613 seconds +Domain Reload Profiling: + ReloadAssembly (1614ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1318ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6707. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 2.464000 ms (FindLiveObjects: 0.404200 ms CreateObjectMapping: 0.193000 ms MarkObjects: 1.836100 ms DeleteObjects: 0.029300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016809 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.755 seconds +Domain Reload Profiling: + ReloadAssembly (1756ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1462ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (807ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (45ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (610ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6710. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 5.937800 ms (FindLiveObjects: 0.650500 ms CreateObjectMapping: 0.353300 ms MarkObjects: 4.820200 ms DeleteObjects: 0.111300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.026190 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.445 seconds +Domain Reload Profiling: + ReloadAssembly (1446ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1148ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (301ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (640ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (505ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6713. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.054800 ms (FindLiveObjects: 0.653400 ms CreateObjectMapping: 0.498100 ms MarkObjects: 2.861500 ms DeleteObjects: 0.040400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018072 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.576 seconds +Domain Reload Profiling: + ReloadAssembly (1577ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1290ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6716. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.027500 ms (FindLiveObjects: 0.571600 ms CreateObjectMapping: 0.330200 ms MarkObjects: 2.095200 ms DeleteObjects: 0.029200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021493 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.515 seconds +Domain Reload Profiling: + ReloadAssembly (1516ms) + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1154ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (315ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (508ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6719. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 10.838900 ms (FindLiveObjects: 1.337100 ms CreateObjectMapping: 2.317600 ms MarkObjects: 7.088200 ms DeleteObjects: 0.092600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.033634 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.500 seconds +Domain Reload Profiling: + ReloadAssembly (1501ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1186ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (619ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (501ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6722. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 5.274500 ms (FindLiveObjects: 2.111800 ms CreateObjectMapping: 0.591500 ms MarkObjects: 2.460600 ms DeleteObjects: 0.107700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016328 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.480 seconds +Domain Reload Profiling: + ReloadAssembly (1481ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1157ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (317ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (509ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6725. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 2.878100 ms (FindLiveObjects: 0.433700 ms CreateObjectMapping: 0.210900 ms MarkObjects: 2.198100 ms DeleteObjects: 0.034500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016913 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.469 seconds +Domain Reload Profiling: + ReloadAssembly (1470ms) + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1140ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (297ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (511ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6728. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 5.746900 ms (FindLiveObjects: 0.842500 ms CreateObjectMapping: 0.957800 ms MarkObjects: 3.816300 ms DeleteObjects: 0.127200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017363 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.616 seconds +Domain Reload Profiling: + ReloadAssembly (1618ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1319ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (378ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (717ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (568ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6731. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 4.201700 ms (FindLiveObjects: 0.654000 ms CreateObjectMapping: 0.492000 ms MarkObjects: 2.978000 ms DeleteObjects: 0.075000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017540 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.536 seconds +Domain Reload Profiling: + ReloadAssembly (1537ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1235ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (352ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6734. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.339800 ms (FindLiveObjects: 0.730700 ms CreateObjectMapping: 0.355900 ms MarkObjects: 2.201800 ms DeleteObjects: 0.049300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015798 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.422 seconds +Domain Reload Profiling: + ReloadAssembly (1422ms) + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1115ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6737. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.674700 ms (FindLiveObjects: 0.538000 ms CreateObjectMapping: 0.374300 ms MarkObjects: 2.722700 ms DeleteObjects: 0.038700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015329 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.403 seconds +Domain Reload Profiling: + ReloadAssembly (1404ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1111ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6740. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.246900 ms (FindLiveObjects: 0.484900 ms CreateObjectMapping: 0.225200 ms MarkObjects: 2.504000 ms DeleteObjects: 0.031700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014985 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.544 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1260ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (702ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6743. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.215300 ms (FindLiveObjects: 0.635500 ms CreateObjectMapping: 0.282500 ms MarkObjects: 2.193200 ms DeleteObjects: 0.102900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (22.0 KB). Loaded Objects now: 6743. +Memory consumption went from 96.4 MB to 96.4 MB. +Total: 3.379100 ms (FindLiveObjects: 0.738600 ms CreateObjectMapping: 0.311700 ms MarkObjects: 2.278900 ms DeleteObjects: 0.048600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023874 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.681 seconds +Domain Reload Profiling: + ReloadAssembly (1681ms) + BeginReloadAssembly (207ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1353ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (701ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6746. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.870300 ms (FindLiveObjects: 0.640300 ms CreateObjectMapping: 0.372600 ms MarkObjects: 2.792400 ms DeleteObjects: 0.063000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018893 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.579 seconds +Domain Reload Profiling: + ReloadAssembly (1580ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1298ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (715ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (568ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6749. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 5.795900 ms (FindLiveObjects: 0.843300 ms CreateObjectMapping: 0.885800 ms MarkObjects: 4.004100 ms DeleteObjects: 0.060300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015898 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.567 seconds +Domain Reload Profiling: + ReloadAssembly (1568ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1268ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (356ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (700ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6752. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.773400 ms (FindLiveObjects: 0.702900 ms CreateObjectMapping: 0.407700 ms MarkObjects: 2.566600 ms DeleteObjects: 0.094800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame/Logs/AssetImportWorker2-prev.log b/JNFrame/Logs/AssetImportWorker2-prev.log new file mode 100644 index 00000000..3b273872 --- /dev/null +++ b/JNFrame/Logs/AssetImportWorker2-prev.log @@ -0,0 +1,180 @@ +Using pre-set license +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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\2021.3.33f1c1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker2 +-projectPath +D:/myproject/JisolGame/JNFrame +-logFile +Logs/AssetImportWorker2.log +-srvPort +61395 +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-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 [26492] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 1275659174 [EditorId] 1275659174 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [26492] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 1275659174 [EditorId] 1275659174 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 111.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/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/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56680 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.004761 seconds. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 2266 ms +Refreshing native plugins compatible for Editor in 107.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 3.600 seconds +Domain Reload Profiling: + ReloadAssembly (3600ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (2923ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (230ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (22ms) + SetupLoadedEditorAssemblies (2630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (2393ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (108ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (86ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.015610 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Package Manager log level set to [2] +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.693 seconds +Domain Reload Profiling: + ReloadAssembly (1694ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (18ms) + EndReloadAssembly (1463ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (774ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6364. +Memory consumption went from 212.3 MB to 212.3 MB. +Total: 3.283600 ms (FindLiveObjects: 0.389600 ms CreateObjectMapping: 0.269700 ms MarkObjects: 2.541600 ms DeleteObjects: 0.081600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 86726.602110 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D/RVO 2D.unity + artifactKey: Guid(05f4cef9e16814ff3908457d37cdcb33) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D/RVO 2D.unity using Guid(05f4cef9e16814ff3908457d37cdcb33) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd2761d31c496bee54b5bdb249579624') in 0.021109 seconds +Number of asset objects unloaded after import = 0 diff --git a/JNFrame/Logs/AssetImportWorker2.log b/JNFrame/Logs/AssetImportWorker2.log index 6077f13c..0fae34a0 100644 --- a/JNFrame/Logs/AssetImportWorker2.log +++ b/JNFrame/Logs/AssetImportWorker2.log @@ -1,10 +1,10 @@ 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' +Built from '2021.3/china_unity/release' branch; Version is '2021.3.33f1c1 (682b9db7927c) revision 6826909'; 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 +D:\Unity\2021.3.33f1c1\Editor\Unity.exe -adb2 -batchMode -noUpm @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame -logFile Logs/AssetImportWorker2.log -srvPort -49487 +53942 Successfully changed project path to: D:/myproject/JisolGame/JNFrame D:/myproject/JisolGame/JNFrame [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -39,8 +39,6 @@ D:/myproject/JisolGame/JNFrame "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" @@ -49,15 +47,16 @@ 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 [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 [25516] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 3473178218 [EditorId] 3473178218 [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]... +Player connection [25516] Host "[IP] 192.168.0.116 [Port] 0 [Flags] 2 [Guid] 3473178218 [EditorId] 3473178218 [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. +AS: AutoStreaming module initializing. +[Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. +Refreshing native plugins compatible for Editor in 100.57 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 +Initialize engine version: 2021.3.33f1c1 (682b9db7927c) +[Subsystems] Discovering subsystems at path D:/Unity/2021.3.33f1c1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: @@ -67,8446 +66,7552 @@ Direct3D: 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 +Mono path[0] = 'D:/Unity/2021.3.33f1c1/Editor/Data/Managed' +Mono path[1] = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Unity/2021.3.33f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56540 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 +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.004882 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 +Android Extension - Scanning For ADB Devices 194 ms +Refreshing native plugins compatible for Editor in 97.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 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 +- Completed reload, in 0.792 seconds +Domain Reload Profiling: + ReloadAssembly (793ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (625ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (81ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (23ms) + SetupLoadedEditorAssemblies (482ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (267ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (98ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (80ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.014956 seconds. 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 +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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 -> +- Completed reload, in 1.360 seconds +Domain Reload Profiling: + ReloadAssembly (1361ms) + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (15ms) + EndReloadAssembly (1156ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (720ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (581ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping ======================================================================== -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. +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5896 Unused Serialized files (Serialized files now loaded: 0) +Unloading 39 unused Assets / (47.2 KB). Loaded Objects now: 6365. +Memory consumption went from 212.4 MB to 212.3 MB. +Total: 3.217800 ms (FindLiveObjects: 0.557100 ms CreateObjectMapping: 0.192500 ms MarkObjects: 2.397900 ms DeleteObjects: 0.068900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 5846.620347 seconds. + Time since last request: 87514.766704 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 updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dcb132609113266508f99c21fc67eb5d') in 0.100153 seconds 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 + Time since last request: 54.442341 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10ebf691c557c24909320cd840374b54') in 0.025323 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014803 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1212ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (322ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6375. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.143600 ms (FindLiveObjects: 0.503600 ms CreateObjectMapping: 0.352200 ms MarkObjects: 2.252600 ms DeleteObjects: 0.033800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013857 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1206ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6378. +Memory consumption went from 211.8 MB to 211.8 MB. +Total: 3.010600 ms (FindLiveObjects: 0.581300 ms CreateObjectMapping: 0.245900 ms MarkObjects: 2.122700 ms DeleteObjects: 0.059400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 87.314386 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4ee35a5c6b96584538e356886e8e5d5') in 0.079326 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 27.084166 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOController.cs + artifactKey: Guid(560112f876f5746c780eca0d404e7139) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOController.cs using Guid(560112f876f5746c780eca0d404e7139) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '628dbc7821a46365718ee5b947a1296d') in 0.017931 seconds 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 + Time since last request: 9.906980 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/RVO/RVONavmesh.cs + artifactKey: Guid(52e10183f1ec74d27ba5e19d5a2242c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/RVO/RVONavmesh.cs using Guid(52e10183f1ec74d27ba5e19d5a2242c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bffa6ab8bd387aa56750687020c28b9d') in 0.011722 seconds 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 + Time since last request: 41.555050 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOObstacle.cs + artifactKey: Guid(b5c46b71c11fa41a08c1d9b79aabd500) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOObstacle.cs using Guid(b5c46b71c11fa41a08c1d9b79aabd500) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca60909c2a2d19f31fff505b2e6023c7') in 0.011767 seconds 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 + Time since last request: 1.973534 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOSimulator.cs + artifactKey: Guid(1764de1de43cc4d19af52679d3eaae06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOSimulator.cs using Guid(1764de1de43cc4d19af52679d3eaae06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ccb3e70c324d0545cb7fd174e74d2f24') in 0.011508 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.675892 seconds. + path: Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOSquareObstacle.cs + artifactKey: Guid(21ffa94b775f54641bd8c73c930db320) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Plugins/AstarPathfindingProject/RVO/RVOSquareObstacle.cs using Guid(21ffa94b775f54641bd8c73c930db320) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a0a826e3d416e048e2eb8fdcb257ce3') in 0.012101 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 617.903660 seconds. + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab + artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5413d662f48a892278103b1604d7c206') in 0.038381 seconds +Number of asset objects unloaded after import = 175 +======================================================================== +Received Import Request. + Time since last request: 4.804170 seconds. + path: Assets/Game/Scenes/Mode/WorldSceneMode.unity + artifactKey: Guid(9249f4afb3db3c4489d1a29ea88a2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/WorldSceneMode.unity using Guid(9249f4afb3db3c4489d1a29ea88a2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad46f3b35807eda00ca066664d595db7') in 0.011385 seconds Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018170 seconds. 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 +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.475 seconds +Domain Reload Profiling: + ReloadAssembly (1475ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1168ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.22 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6381. +Memory consumption went from 211.9 MB to 211.8 MB. +Total: 2.991100 ms (FindLiveObjects: 0.496000 ms CreateObjectMapping: 0.262000 ms MarkObjects: 2.197800 ms DeleteObjects: 0.033400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018634 seconds. 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 +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.536 seconds +Domain Reload Profiling: + ReloadAssembly (1537ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1254ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (336ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (704ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (569ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.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 / (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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6384. +Memory consumption went from 211.9 MB to 211.8 MB. +Total: 5.069700 ms (FindLiveObjects: 1.043000 ms CreateObjectMapping: 0.938800 ms MarkObjects: 3.046000 ms DeleteObjects: 0.039900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017901 seconds. 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 +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.516 seconds +Domain Reload Profiling: + ReloadAssembly (1517ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1250ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6387. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.622000 ms (FindLiveObjects: 0.471400 ms CreateObjectMapping: 0.261600 ms MarkObjects: 2.852600 ms DeleteObjects: 0.034900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016259 seconds. 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 +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.524 seconds +Domain Reload Profiling: + ReloadAssembly (1525ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1248ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6390. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.190600 ms (FindLiveObjects: 0.479000 ms CreateObjectMapping: 0.293700 ms MarkObjects: 2.380500 ms DeleteObjects: 0.035600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014873 seconds. 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 +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.562 seconds +Domain Reload Profiling: + ReloadAssembly (1562ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1273ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (701ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (566ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6393. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.100400 ms (FindLiveObjects: 0.556900 ms CreateObjectMapping: 0.423500 ms MarkObjects: 2.083700 ms DeleteObjects: 0.035100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.013985 seconds. 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 +Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.588 seconds +Domain Reload Profiling: + ReloadAssembly (1589ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1303ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (719ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (564ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6396. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.031200 ms (FindLiveObjects: 0.484000 ms CreateObjectMapping: 0.418600 ms MarkObjects: 2.066300 ms DeleteObjects: 0.060700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015008 seconds. 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 +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.560 seconds +Domain Reload Profiling: + ReloadAssembly (1560ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1244ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (350ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6399. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 2.812200 ms (FindLiveObjects: 0.553500 ms CreateObjectMapping: 0.220700 ms MarkObjects: 2.008200 ms DeleteObjects: 0.028500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019711 seconds. 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 +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.526 seconds +Domain Reload Profiling: + ReloadAssembly (1526ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1192ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6402. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.301200 ms (FindLiveObjects: 0.572900 ms CreateObjectMapping: 0.226800 ms MarkObjects: 2.455700 ms DeleteObjects: 0.044200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018367 seconds. 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 +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.402 seconds +Domain Reload Profiling: + ReloadAssembly (1403ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1123ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6405. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 2.876000 ms (FindLiveObjects: 0.430700 ms CreateObjectMapping: 0.216500 ms MarkObjects: 2.201100 ms DeleteObjects: 0.026000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014874 seconds. 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 +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.562 seconds +Domain Reload Profiling: + ReloadAssembly (1563ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1296ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6408. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 3.151600 ms (FindLiveObjects: 0.458600 ms CreateObjectMapping: 0.322900 ms MarkObjects: 2.303900 ms DeleteObjects: 0.063300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017132 seconds. 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 +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.448 seconds +Domain Reload Profiling: + ReloadAssembly (1448ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1148ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (30ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6411. +Memory consumption went from 211.9 MB to 211.9 MB. +Total: 2.719800 ms (FindLiveObjects: 0.393200 ms CreateObjectMapping: 0.205700 ms MarkObjects: 2.092900 ms DeleteObjects: 0.026800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019744 seconds. 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 +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.346 seconds +Domain Reload Profiling: + ReloadAssembly (1347ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1074ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6415. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.842300 ms (FindLiveObjects: 0.370800 ms CreateObjectMapping: 0.186800 ms MarkObjects: 2.260300 ms DeleteObjects: 0.023400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014842 seconds. 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 +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.362 seconds +Domain Reload Profiling: + ReloadAssembly (1362ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1090ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (22.0 KB). Loaded Objects now: 6417. +Memory consumption went from 212.0 MB to 211.9 MB. +Total: 2.969200 ms (FindLiveObjects: 0.484800 ms CreateObjectMapping: 0.191600 ms MarkObjects: 2.270600 ms DeleteObjects: 0.021300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.057220 seconds. 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 +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.837 seconds +Domain Reload Profiling: + ReloadAssembly (1838ms) + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1489ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (598ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6421. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 3.495100 ms (FindLiveObjects: 0.387200 ms CreateObjectMapping: 0.182800 ms MarkObjects: 2.892000 ms DeleteObjects: 0.031900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021001 seconds. 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 +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.656 seconds +Domain Reload Profiling: + ReloadAssembly (1657ms) + BeginReloadAssembly (229ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1255ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6424. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.745000 ms (FindLiveObjects: 0.504700 ms CreateObjectMapping: 0.243300 ms MarkObjects: 1.963900 ms DeleteObjects: 0.031400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016225 seconds. 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 +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1563ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1286ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (695ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.86 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6427. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.591300 ms (FindLiveObjects: 0.394300 ms CreateObjectMapping: 0.219000 ms MarkObjects: 1.948500 ms DeleteObjects: 0.028500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.013815 seconds. 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 +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.437 seconds +Domain Reload Profiling: + ReloadAssembly (1437ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1186ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6430. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 3.044900 ms (FindLiveObjects: 0.556500 ms CreateObjectMapping: 0.285900 ms MarkObjects: 2.176200 ms DeleteObjects: 0.025200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.022857 seconds. 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 +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.827 seconds +Domain Reload Profiling: + ReloadAssembly (1828ms) + BeginReloadAssembly (348ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (131ms) + EndReloadAssembly (1353ms) + LoadAssemblies (201ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (428ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (696ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (22.0 KB). Loaded Objects now: 6432. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.954300 ms (FindLiveObjects: 0.615200 ms CreateObjectMapping: 0.238500 ms MarkObjects: 2.068500 ms DeleteObjects: 0.030900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.042300 seconds. 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 +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.605 seconds +Domain Reload Profiling: + ReloadAssembly (1605ms) + BeginReloadAssembly (245ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1166ms) + LoadAssemblies (213ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (544ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6435. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.634200 ms (FindLiveObjects: 0.457700 ms CreateObjectMapping: 0.337800 ms MarkObjects: 1.812900 ms DeleteObjects: 0.024800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.031752 seconds. 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 +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 2.556 seconds +Domain Reload Profiling: + ReloadAssembly (2556ms) + BeginReloadAssembly (313ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (90ms) + EndReloadAssembly (2132ms) + LoadAssemblies (239ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (750ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (144ms) + SetupLoadedEditorAssemblies (956ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (749ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Script is not up to date after domain reload: guid(79d7cad08d874b6aba4388770d624c79) path("Assets/Game/Plugins/JNGame/Sync/Frame/AstarPath/JNAStarPath.cs") state(2) +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5883 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6438. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.559200 ms (FindLiveObjects: 0.439400 ms CreateObjectMapping: 0.218400 ms MarkObjects: 1.881800 ms DeleteObjects: 0.018800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.026914 seconds. 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 +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.428 seconds +Domain Reload Profiling: + ReloadAssembly (1429ms) + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (1112ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (283ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6442. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 4.364800 ms (FindLiveObjects: 0.965700 ms CreateObjectMapping: 0.636900 ms MarkObjects: 2.698200 ms DeleteObjects: 0.060800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.023209 seconds. 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 +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.910 seconds +Domain Reload Profiling: + ReloadAssembly (1911ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1631ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (728ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (544ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6445. +Memory consumption went from 212.0 MB to 212.0 MB. +Total: 2.708100 ms (FindLiveObjects: 0.409200 ms CreateObjectMapping: 0.242700 ms MarkObjects: 2.031800 ms DeleteObjects: 0.023400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.022932 seconds. 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 +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.433 seconds +Domain Reload Profiling: + ReloadAssembly (1433ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1132ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (316ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5884 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6448. +Memory consumption went from 212.1 MB to 212.0 MB. +Total: 2.716000 ms (FindLiveObjects: 0.537300 ms CreateObjectMapping: 0.197700 ms MarkObjects: 1.955800 ms DeleteObjects: 0.023600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020323 seconds. 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 +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.523 seconds +Domain Reload Profiling: + ReloadAssembly (1524ms) + BeginReloadAssembly (254ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + EndReloadAssembly (1144ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5885 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6452. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.520800 ms (FindLiveObjects: 0.385600 ms CreateObjectMapping: 0.243400 ms MarkObjects: 1.868300 ms DeleteObjects: 0.022500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016161 seconds. Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.971 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.400 seconds +Domain Reload Profiling: + ReloadAssembly (1401ms) + BeginReloadAssembly (219ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1067ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (274ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6456. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.221000 ms (FindLiveObjects: 0.371000 ms CreateObjectMapping: 0.173900 ms MarkObjects: 2.648300 ms DeleteObjects: 0.026200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018820 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.182 seconds +Domain Reload Profiling: + ReloadAssembly (2184ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1896ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (290ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (1374ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (1184ms) + ProcessInitializeOnLoadMethodAttributes (60ms) + AfterProcessingInitializeOnLoad (29ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6459. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.116300 ms (FindLiveObjects: 0.587100 ms CreateObjectMapping: 0.298400 ms MarkObjects: 2.189800 ms DeleteObjects: 0.039200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018444 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.398 seconds +Domain Reload Profiling: + ReloadAssembly (1399ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1056ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (625ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6462. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 3.659900 ms (FindLiveObjects: 0.440800 ms CreateObjectMapping: 0.340700 ms MarkObjects: 2.839100 ms DeleteObjects: 0.037800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017762 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.402 seconds +Domain Reload Profiling: + ReloadAssembly (1403ms) + BeginReloadAssembly (208ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1060ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6465. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.721700 ms (FindLiveObjects: 0.486500 ms CreateObjectMapping: 0.220800 ms MarkObjects: 1.986200 ms DeleteObjects: 0.026700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019240 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.391 seconds +Domain Reload Profiling: + ReloadAssembly (1392ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1116ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (646ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6468. +Memory consumption went from 212.1 MB to 212.1 MB. +Total: 2.631400 ms (FindLiveObjects: 0.407700 ms CreateObjectMapping: 0.221900 ms MarkObjects: 1.978800 ms DeleteObjects: 0.022300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4003.346901 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/Arrow.mat + artifactKey: Guid(b74df3c53ba4c054c858e658a80413a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/Arrow.mat using Guid(b74df3c53ba4c054c858e658a80413a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef92da4492655a22e540c89125b7bb3a') in 0.087104 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000088 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOAgent.prefab + artifactKey: Guid(de278b8853cf098429720b7bb1b9565d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOAgent.prefab using Guid(de278b8853cf098429720b7bb1b9565d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '669f743d7f3993cede55a62a8825bb63') in 0.032623 seconds +Number of asset objects unloaded after import = 15 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017037 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.390 seconds +Domain Reload Profiling: + ReloadAssembly (1390ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1114ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (511ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5890 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6509. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 3.476600 ms (FindLiveObjects: 0.633500 ms CreateObjectMapping: 0.325300 ms MarkObjects: 2.463400 ms DeleteObjects: 0.052800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 9.915829 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + artifactKey: Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity using Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28a8d8e0341bcc9fa4877b39808974cc') in 0.017129 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.209233 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOExampleAgent.cs + artifactKey: Guid(983bf702304b06747999bb5db2aae5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOExampleAgent.cs using Guid(983bf702304b06747999bb5db2aae5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ace08256f0917e2b7fd1d1167a41b54') in 0.006533 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.366630 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOAgentPlacer.cs + artifactKey: Guid(69a997b1008bcbe489b3819cfa56b1f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOAgentPlacer.cs using Guid(69a997b1008bcbe489b3819cfa56b1f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8aef54f8cc2fc03fc65d432489429afe') in 0.006208 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.523146 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/LightweightRVO.cs + artifactKey: Guid(c133f99ee70ae6343a27cf9edb56f0a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/LightweightRVO.cs using Guid(c133f99ee70ae6343a27cf9edb56f0a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9239b0e2b55c7190a79bb8cc69ac057f') in 0.006509 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.269608 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GroupController.cs + artifactKey: Guid(0359dd288e91be64b800402d7d2b3f1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GroupController.cs using Guid(0359dd288e91be64b800402d7d2b3f1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd196616434ed348af8e12484b7fd979') in 0.007398 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014764 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.408 seconds +Domain Reload Profiling: + ReloadAssembly (1409ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1124ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 38 unused Assets / (22.0 KB). Loaded Objects now: 6508. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.607600 ms (FindLiveObjects: 0.472400 ms CreateObjectMapping: 0.324500 ms MarkObjects: 2.714400 ms DeleteObjects: 0.093300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 39.152742 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + artifactKey: Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity using Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ba77422bbae42722adba3d7a83e605f') in 0.010729 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 4.735306 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + artifactKey: Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity using Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9229aadfa52b27ff593ccb1d7198a1ba') in 0.001672 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016043 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.456 seconds +Domain Reload Profiling: + ReloadAssembly (1457ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1168ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (640ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6511. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.362300 ms (FindLiveObjects: 0.582500 ms CreateObjectMapping: 0.237000 ms MarkObjects: 2.489500 ms DeleteObjects: 0.052200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014623 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.502 seconds +Domain Reload Profiling: + ReloadAssembly (1503ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1232ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6514. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 4.718000 ms (FindLiveObjects: 1.050700 ms CreateObjectMapping: 0.705600 ms MarkObjects: 2.894500 ms DeleteObjects: 0.064900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 64.546662 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO + artifactKey: Guid(669eee4013ad2664a8466d082a58aba7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO using Guid(669eee4013ad2664a8466d082a58aba7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cc0a6c824084e6189af6d8822208bf5') in 0.014250 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019520 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.491 seconds +Domain Reload Profiling: + ReloadAssembly (1492ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1218ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6517. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.052100 ms (FindLiveObjects: 0.447600 ms CreateObjectMapping: 0.279500 ms MarkObjects: 2.288300 ms DeleteObjects: 0.035300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.023400 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.534 seconds +Domain Reload Profiling: + ReloadAssembly (1535ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1257ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6520. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 2.698400 ms (FindLiveObjects: 0.416400 ms CreateObjectMapping: 0.216200 ms MarkObjects: 2.042300 ms DeleteObjects: 0.022500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 34.227351 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + artifactKey: Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity using Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c8f5e76e954873579886253fdf83552') in 0.011990 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014333 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.485 seconds +Domain Reload Profiling: + ReloadAssembly (1486ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1217ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (330ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (689ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6523. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 3.522500 ms (FindLiveObjects: 0.497400 ms CreateObjectMapping: 0.254700 ms MarkObjects: 2.614000 ms DeleteObjects: 0.153500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 8.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6523. +Memory consumption went from 95.6 MB to 95.6 MB. +Total: 3.914200 ms (FindLiveObjects: 0.697500 ms CreateObjectMapping: 0.526600 ms MarkObjects: 2.646400 ms DeleteObjects: 0.042400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018973 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.739 seconds +Domain Reload Profiling: + ReloadAssembly (1740ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1406ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (413ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5886 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6526. +Memory consumption went from 212.5 MB to 212.5 MB. +Total: 8.585900 ms (FindLiveObjects: 1.279000 ms CreateObjectMapping: 0.930700 ms MarkObjects: 6.260800 ms DeleteObjects: 0.110800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016912 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.652 seconds +Domain Reload Profiling: + ReloadAssembly (1653ms) + BeginReloadAssembly (230ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (94ms) + EndReloadAssembly (1312ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (784ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5887 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6530. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 3.456000 ms (FindLiveObjects: 0.539700 ms CreateObjectMapping: 0.207500 ms MarkObjects: 2.681100 ms DeleteObjects: 0.025900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018419 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.466 seconds +Domain Reload Profiling: + ReloadAssembly (1467ms) + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1141ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (315ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5887 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6533. +Memory consumption went from 212.6 MB to 212.5 MB. +Total: 2.655300 ms (FindLiveObjects: 0.401000 ms CreateObjectMapping: 0.226800 ms MarkObjects: 1.993200 ms DeleteObjects: 0.033600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.024895 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.712 seconds +Domain Reload Profiling: + ReloadAssembly (1712ms) + BeginReloadAssembly (279ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (87ms) + EndReloadAssembly (1242ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (516ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6537. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.808700 ms (FindLiveObjects: 0.383900 ms CreateObjectMapping: 0.213000 ms MarkObjects: 2.187100 ms DeleteObjects: 0.023400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016681 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.463 seconds +Domain Reload Profiling: + ReloadAssembly (1464ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1158ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (310ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (657ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6540. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.905800 ms (FindLiveObjects: 0.420700 ms CreateObjectMapping: 0.218000 ms MarkObjects: 2.229800 ms DeleteObjects: 0.036400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022409 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.850 seconds +Domain Reload Profiling: + ReloadAssembly (1851ms) + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1538ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (614ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (132ms) + SetupLoadedEditorAssemblies (625ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6543. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.462200 ms (FindLiveObjects: 0.382000 ms CreateObjectMapping: 0.197400 ms MarkObjects: 1.860700 ms DeleteObjects: 0.020900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017803 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1587ms) + BeginReloadAssembly (262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1153ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (333ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6546. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.660700 ms (FindLiveObjects: 0.549400 ms CreateObjectMapping: 0.212800 ms MarkObjects: 1.874600 ms DeleteObjects: 0.023100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.030360 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.806 seconds +Domain Reload Profiling: + ReloadAssembly (1807ms) + BeginReloadAssembly (226ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (1456ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (558ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (544ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6549. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 3.669900 ms (FindLiveObjects: 0.803200 ms CreateObjectMapping: 0.569100 ms MarkObjects: 2.254900 ms DeleteObjects: 0.041100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025927 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.514 seconds +Domain Reload Profiling: + ReloadAssembly (1515ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1201ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.1 KB). Loaded Objects now: 6552. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.599000 ms (FindLiveObjects: 0.398300 ms CreateObjectMapping: 0.221700 ms MarkObjects: 1.950100 ms DeleteObjects: 0.027800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018490 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.474 seconds +Domain Reload Profiling: + ReloadAssembly (1475ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1184ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (322ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6555. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.509500 ms (FindLiveObjects: 0.389900 ms CreateObjectMapping: 0.195700 ms MarkObjects: 1.863900 ms DeleteObjects: 0.058600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017641 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 2.093 seconds +Domain Reload Profiling: + ReloadAssembly (2094ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1786ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (389ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (288ms) + SetupLoadedEditorAssemblies (740ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (584ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6558. +Memory consumption went from 212.6 MB to 212.6 MB. +Total: 2.866700 ms (FindLiveObjects: 0.385900 ms CreateObjectMapping: 0.196900 ms MarkObjects: 2.258000 ms DeleteObjects: 0.024500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014702 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1512ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1224ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (575ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6561. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.279900 ms (FindLiveObjects: 0.616000 ms CreateObjectMapping: 0.394300 ms MarkObjects: 2.237800 ms DeleteObjects: 0.030500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.034340 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.482 seconds +Domain Reload Profiling: + ReloadAssembly (1483ms) + BeginReloadAssembly (219ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1142ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (319ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (646ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6564. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.335500 ms (FindLiveObjects: 1.057600 ms CreateObjectMapping: 0.355500 ms MarkObjects: 1.894600 ms DeleteObjects: 0.026800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017195 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.536 seconds +Domain Reload Profiling: + ReloadAssembly (1537ms) + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1194ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (302ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6567. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.686200 ms (FindLiveObjects: 0.689000 ms CreateObjectMapping: 0.327100 ms MarkObjects: 2.629500 ms DeleteObjects: 0.039200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016319 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.481 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1173ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (310ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6570. +Memory consumption went from 212.7 MB to 212.6 MB. +Total: 3.639400 ms (FindLiveObjects: 0.892400 ms CreateObjectMapping: 0.357300 ms MarkObjects: 2.344100 ms DeleteObjects: 0.044400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017897 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.561 seconds +Domain Reload Profiling: + ReloadAssembly (1562ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1235ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (664ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6573. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 2.696200 ms (FindLiveObjects: 0.430800 ms CreateObjectMapping: 0.260500 ms MarkObjects: 1.981200 ms DeleteObjects: 0.022400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019979 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.545 seconds +Domain Reload Profiling: + ReloadAssembly (1546ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1228ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6576. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 4.543600 ms (FindLiveObjects: 0.477000 ms CreateObjectMapping: 0.291800 ms MarkObjects: 3.714800 ms DeleteObjects: 0.058500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022059 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.515 seconds +Domain Reload Profiling: + ReloadAssembly (1515ms) + BeginReloadAssembly (248ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1140ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6579. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.588400 ms (FindLiveObjects: 0.617400 ms CreateObjectMapping: 0.329100 ms MarkObjects: 2.591600 ms DeleteObjects: 0.048100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.020729 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1178ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (664ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5888 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6582. +Memory consumption went from 212.7 MB to 212.7 MB. +Total: 3.026200 ms (FindLiveObjects: 0.386700 ms CreateObjectMapping: 0.193800 ms MarkObjects: 2.413500 ms DeleteObjects: 0.030900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.022385 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.707 seconds +Domain Reload Profiling: + ReloadAssembly (1708ms) + BeginReloadAssembly (335ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (128ms) + EndReloadAssembly (1264ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6588. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 3.128600 ms (FindLiveObjects: 0.617500 ms CreateObjectMapping: 0.233900 ms MarkObjects: 2.248800 ms DeleteObjects: 0.026400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.019229 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.477 seconds +Domain Reload Profiling: + ReloadAssembly (1478ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1178ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping 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) +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6591. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 41.389000 ms (FindLiveObjects: 16.335200 ms CreateObjectMapping: 5.980500 ms MarkObjects: 18.954400 ms DeleteObjects: 0.115600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017769 seconds. 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 +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.470 seconds +Domain Reload Profiling: + ReloadAssembly (1471ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1161ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (510ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6594. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 3.511400 ms (FindLiveObjects: 0.750800 ms CreateObjectMapping: 0.297900 ms MarkObjects: 2.433200 ms DeleteObjects: 0.027900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 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 + Time since last request: 16190.154239 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + artifactKey: Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity using Guid(8e0330a3995e1f64baf253a026021f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '55cb1eb89c124847c86552402390988a') in 0.020163 seconds Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.022770 seconds. 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 +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.852 seconds +Domain Reload Profiling: + ReloadAssembly (1853ms) + BeginReloadAssembly (272ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (87ms) + EndReloadAssembly (1309ms) + LoadAssemblies (175ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (436ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (639ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 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) +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6598. +Memory consumption went from 213.0 MB to 212.9 MB. +Total: 5.461200 ms (FindLiveObjects: 1.046300 ms CreateObjectMapping: 0.429200 ms MarkObjects: 3.894200 ms DeleteObjects: 0.087700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015809 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.434 seconds +Domain Reload Profiling: + ReloadAssembly (1435ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1143ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6601. +Memory consumption went from 213.0 MB to 212.9 MB. +Total: 2.535900 ms (FindLiveObjects: 0.388400 ms CreateObjectMapping: 0.201900 ms MarkObjects: 1.926700 ms DeleteObjects: 0.018200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015744 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.409 seconds +Domain Reload Profiling: + ReloadAssembly (1410ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1139ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (312ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5891 Unused Serialized files (Serialized files now loaded: 0) +Unloading 35 unused Assets / (23.0 KB). Loaded Objects now: 6603. +Memory consumption went from 212.9 MB to 212.9 MB. +Total: 2.845700 ms (FindLiveObjects: 0.386200 ms CreateObjectMapping: 0.194900 ms MarkObjects: 2.240800 ms DeleteObjects: 0.023100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017770 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.966 seconds +Domain Reload Profiling: + ReloadAssembly (1966ms) + BeginReloadAssembly (390ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (82ms) + EndReloadAssembly (1432ms) + LoadAssemblies (268ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (539ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (653ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (537ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6607. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.890900 ms (FindLiveObjects: 0.471600 ms CreateObjectMapping: 0.237300 ms MarkObjects: 2.153200 ms DeleteObjects: 0.027300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015123 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.782 seconds +Domain Reload Profiling: + ReloadAssembly (1783ms) + BeginReloadAssembly (236ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1411ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (765ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (646ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6610. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 3.035600 ms (FindLiveObjects: 0.461400 ms CreateObjectMapping: 0.205000 ms MarkObjects: 2.318700 ms DeleteObjects: 0.049600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016304 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.478 seconds +Domain Reload Profiling: + ReloadAssembly (1479ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1177ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (301ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6613. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 6.341200 ms (FindLiveObjects: 1.088800 ms CreateObjectMapping: 0.350300 ms MarkObjects: 4.845900 ms DeleteObjects: 0.054800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.024420 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.411 seconds +Domain Reload Profiling: + ReloadAssembly (1412ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1123ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6616. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 3.024200 ms (FindLiveObjects: 0.388700 ms CreateObjectMapping: 0.211600 ms MarkObjects: 2.388900 ms DeleteObjects: 0.033200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018105 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.382 seconds +Domain Reload Profiling: + ReloadAssembly (1382ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1089ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (265ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6619. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.954500 ms (FindLiveObjects: 0.452100 ms CreateObjectMapping: 0.290600 ms MarkObjects: 2.177700 ms DeleteObjects: 0.032800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.024323 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.395 seconds +Domain Reload Profiling: + ReloadAssembly (1396ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1104ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (279ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6622. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.809700 ms (FindLiveObjects: 0.417800 ms CreateObjectMapping: 0.212000 ms MarkObjects: 2.157800 ms DeleteObjects: 0.021500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017906 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.358 seconds +Domain Reload Profiling: + ReloadAssembly (1358ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1075ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (262ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6625. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.961000 ms (FindLiveObjects: 0.505400 ms CreateObjectMapping: 0.259900 ms MarkObjects: 2.167400 ms DeleteObjects: 0.026700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017326 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.382 seconds +Domain Reload Profiling: + ReloadAssembly (1383ms) + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1072ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (264ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5892 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6628. +Memory consumption went from 213.0 MB to 213.0 MB. +Total: 2.536800 ms (FindLiveObjects: 0.423500 ms CreateObjectMapping: 0.227400 ms MarkObjects: 1.856800 ms DeleteObjects: 0.027800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 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 + Time since last request: 660.109469 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e63ba268764c92fbb8a09cff84207449') in 0.014163 seconds 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 + Time since last request: 73.295725 seconds. + path: Assets/Game/Script/battle/mode/GWorldSync01ModeScript + artifactKey: Guid(b1cf1311852d0d34b9a93318beafc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode/GWorldSync01ModeScript using Guid(b1cf1311852d0d34b9a93318beafc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c538adeb26f08955f122002177cce9c') in 0.012182 seconds 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 + Time since last request: 4.938899 seconds. + path: Assets/Game/Script/battle/mode + artifactKey: Guid(6b22dd710734444690a739bc582997fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode using Guid(6b22dd710734444690a739bc582997fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '133783276b2f5e2243434fbdab98f832') in 0.012006 seconds +Number of asset objects unloaded after import = 0 ======================================================================== 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 + Time since last request: 2.762293 seconds. + path: Assets/Game/Script/battle/mode/Example11_RVO + artifactKey: Guid(ee7bc7d3ccb485e48aa2fcfdaad83327) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode/Example11_RVO using Guid(ee7bc7d3ccb485e48aa2fcfdaad83327) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e99e8f30c5052d5564dd539cc39bb27') in 0.009827 seconds +Number of asset objects unloaded after import = 0 ======================================================================== 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 + Time since last request: 33.813087 seconds. + path: Assets/Game/Script/battle/mode/Example11_RVO/GRVO01WorldMode.cs + artifactKey: Guid(e5b7cdf57c8619a40b108b66c4308c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Script/battle/mode/Example11_RVO/GRVO01WorldMode.cs using Guid(e5b7cdf57c8619a40b108b66c4308c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aaee9753bdd579bc6b699953894048ea') in 0.006397 seconds Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015803 seconds. 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 +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.372 seconds +Domain Reload Profiling: + ReloadAssembly (1372ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1103ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (516ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6632. +Memory consumption went from 213.1 MB to 213.0 MB. +Total: 2.686200 ms (FindLiveObjects: 0.432600 ms CreateObjectMapping: 0.222500 ms MarkObjects: 2.000400 ms DeleteObjects: 0.029400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021591 seconds. 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 +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1511ms) + BeginReloadAssembly (211ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1177ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6635. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.160500 ms (FindLiveObjects: 0.477500 ms CreateObjectMapping: 0.222500 ms MarkObjects: 2.429600 ms DeleteObjects: 0.029600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 72.147589 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '126be7e5db7b1dbc9af535a9672d54a9') in 0.012619 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016519 seconds. 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 +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.535 seconds +Domain Reload Profiling: + ReloadAssembly (1536ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1225ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (725ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (593ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6638. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 5.524900 ms (FindLiveObjects: 1.483900 ms CreateObjectMapping: 0.654800 ms MarkObjects: 3.316900 ms DeleteObjects: 0.066700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019664 seconds. 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 +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.389 seconds +Domain Reload Profiling: + ReloadAssembly (1390ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1092ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6641. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.204900 ms (FindLiveObjects: 0.427200 ms CreateObjectMapping: 0.222300 ms MarkObjects: 2.523600 ms DeleteObjects: 0.030400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016783 seconds. 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 +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.564 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1284ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (716ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.67 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6644. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.676200 ms (FindLiveObjects: 0.791100 ms CreateObjectMapping: 0.288200 ms MarkObjects: 2.559700 ms DeleteObjects: 0.035500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 84.482254 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3971122b6993299bd403af74e1c3d2f') in 0.010908 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018227 seconds. 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 +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.522 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1226ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (549ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6647. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.367400 ms (FindLiveObjects: 0.395000 ms CreateObjectMapping: 0.202500 ms MarkObjects: 1.745700 ms DeleteObjects: 0.023100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020026 seconds. Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.674 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.486 seconds +Domain Reload Profiling: + ReloadAssembly (1487ms) + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1174ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (553ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6650. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.713900 ms (FindLiveObjects: 0.455100 ms CreateObjectMapping: 0.218600 ms MarkObjects: 2.014600 ms DeleteObjects: 0.024500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016396 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.512 seconds +Domain Reload Profiling: + ReloadAssembly (1513ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1232ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (350ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.1 KB). Loaded Objects now: 6653. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 4.354500 ms (FindLiveObjects: 0.615700 ms CreateObjectMapping: 0.670400 ms MarkObjects: 3.027500 ms DeleteObjects: 0.038900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.021111 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1229ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6656. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 3.009000 ms (FindLiveObjects: 0.408100 ms CreateObjectMapping: 0.212300 ms MarkObjects: 2.358900 ms DeleteObjects: 0.028500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014532 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.571 seconds +Domain Reload Profiling: + ReloadAssembly (1572ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1286ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6659. +Memory consumption went from 213.1 MB to 213.1 MB. +Total: 2.860700 ms (FindLiveObjects: 0.424900 ms CreateObjectMapping: 0.212800 ms MarkObjects: 2.197400 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016270 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1566ms) + BeginReloadAssembly (231ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1158ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (302ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6662. +Memory consumption went from 213.2 MB to 213.1 MB. +Total: 2.588100 ms (FindLiveObjects: 0.421900 ms CreateObjectMapping: 0.203300 ms MarkObjects: 1.941100 ms DeleteObjects: 0.021000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.025506 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.512 seconds +Domain Reload Profiling: + ReloadAssembly (1513ms) + BeginReloadAssembly (221ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (1142ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (325ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6665. +Memory consumption went from 213.2 MB to 213.1 MB. +Total: 2.451900 ms (FindLiveObjects: 0.425900 ms CreateObjectMapping: 0.199300 ms MarkObjects: 1.806300 ms DeleteObjects: 0.019700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1060.934583 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d33b0dfe3fe50209d85ce940b6de9b8') in 0.010994 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 17.411298 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90cfa3a088a2f95ddc9d0c05a8276ce1') in 0.002779 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 59.543317 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aeacfcf338158eae5e3dc26901a308b9') in 0.002049 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018383 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.575 seconds +Domain Reload Profiling: + ReloadAssembly (1575ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1310ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (404ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (692ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6668. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.589200 ms (FindLiveObjects: 0.655300 ms CreateObjectMapping: 0.302000 ms MarkObjects: 2.586400 ms DeleteObjects: 0.043700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018900 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.453 seconds +Domain Reload Profiling: + ReloadAssembly (1454ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1145ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (302ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (653ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6671. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.827700 ms (FindLiveObjects: 0.476700 ms CreateObjectMapping: 0.242300 ms MarkObjects: 2.084000 ms DeleteObjects: 0.023700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015045 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.572 seconds +Domain Reload Profiling: + ReloadAssembly (1573ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1271ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6674. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 2.506900 ms (FindLiveObjects: 0.400300 ms CreateObjectMapping: 0.204600 ms MarkObjects: 1.876900 ms DeleteObjects: 0.024100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015725 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1169ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (303ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6677. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.480500 ms (FindLiveObjects: 0.739800 ms CreateObjectMapping: 0.385700 ms MarkObjects: 2.325100 ms DeleteObjects: 0.028800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016819 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.555 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1265ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (695ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6680. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.423200 ms (FindLiveObjects: 0.617300 ms CreateObjectMapping: 0.300600 ms MarkObjects: 2.464100 ms DeleteObjects: 0.039900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014309 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.566 seconds +Domain Reload Profiling: + ReloadAssembly (1567ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1274ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (719ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6683. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.295000 ms (FindLiveObjects: 0.558400 ms CreateObjectMapping: 0.340700 ms MarkObjects: 2.343200 ms DeleteObjects: 0.050700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015884 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.515 seconds +Domain Reload Profiling: + ReloadAssembly (1516ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1215ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (667ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6686. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.096300 ms (FindLiveObjects: 0.478100 ms CreateObjectMapping: 0.297700 ms MarkObjects: 2.288800 ms DeleteObjects: 0.030200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015052 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.714 seconds +Domain Reload Profiling: + ReloadAssembly (1715ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1427ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (445ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (741ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (590ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6689. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.517500 ms (FindLiveObjects: 0.626500 ms CreateObjectMapping: 0.453200 ms MarkObjects: 2.375500 ms DeleteObjects: 0.059400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 9.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6689. +Memory consumption went from 96.2 MB to 96.2 MB. +Total: 3.113400 ms (FindLiveObjects: 0.552800 ms CreateObjectMapping: 0.264400 ms MarkObjects: 2.258800 ms DeleteObjects: 0.036300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017168 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.639 seconds +Domain Reload Profiling: + ReloadAssembly (1640ms) + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1327ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (384ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6692. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.132600 ms (FindLiveObjects: 0.444000 ms CreateObjectMapping: 0.209600 ms MarkObjects: 2.382000 ms DeleteObjects: 0.094900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.018221 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.535 seconds +Domain Reload Profiling: + ReloadAssembly (1535ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1208ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (658ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6695. +Memory consumption went from 213.2 MB to 213.2 MB. +Total: 3.157500 ms (FindLiveObjects: 0.626400 ms CreateObjectMapping: 0.364500 ms MarkObjects: 2.126100 ms DeleteObjects: 0.039100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 541.356039 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6ea22ec1aa99c8584ac6fdddbc8a0dc') in 0.012759 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.016590 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.525 seconds +Domain Reload Profiling: + ReloadAssembly (1526ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1218ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6698. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 3.505300 ms (FindLiveObjects: 0.586500 ms CreateObjectMapping: 0.206900 ms MarkObjects: 2.682900 ms DeleteObjects: 0.028000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare 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) +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (21.9 KB). Loaded Objects now: 6698. +Memory consumption went from 96.2 MB to 96.2 MB. +Total: 4.056600 ms (FindLiveObjects: 0.863600 ms CreateObjectMapping: 0.562800 ms MarkObjects: 2.601100 ms DeleteObjects: 0.027500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016162 seconds. 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 +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.791 seconds +Domain Reload Profiling: + ReloadAssembly (1792ms) + BeginReloadAssembly (231ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1441ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (784ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (623ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6701. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 4.310200 ms (FindLiveObjects: 0.656700 ms CreateObjectMapping: 0.405000 ms MarkObjects: 3.096300 ms DeleteObjects: 0.147700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019912 seconds. 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 +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.560 seconds +Domain Reload Profiling: + ReloadAssembly (1560ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1241ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (680ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6704. +Memory consumption went from 213.3 MB to 213.2 MB. +Total: 3.367400 ms (FindLiveObjects: 0.618300 ms CreateObjectMapping: 0.385200 ms MarkObjects: 2.291800 ms DeleteObjects: 0.068900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.027556 seconds. 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 +Refreshing native plugins compatible for Editor in 2.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.595 seconds +Domain Reload Profiling: + ReloadAssembly (1596ms) + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1261ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (684ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6707. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.550500 ms (FindLiveObjects: 0.546000 ms CreateObjectMapping: 0.230200 ms MarkObjects: 2.713500 ms DeleteObjects: 0.057900 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017069 seconds. 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 +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.562 seconds +Domain Reload Profiling: + ReloadAssembly (1563ms) + BeginReloadAssembly (211ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1213ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (330ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (676ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6710. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.212900 ms (FindLiveObjects: 0.467500 ms CreateObjectMapping: 0.236700 ms MarkObjects: 2.471500 ms DeleteObjects: 0.036300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.023057 seconds. 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 +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.475 seconds +Domain Reload Profiling: + ReloadAssembly (1476ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1181ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (316ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (655ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6713. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.137100 ms (FindLiveObjects: 0.456800 ms CreateObjectMapping: 0.263900 ms MarkObjects: 2.387400 ms DeleteObjects: 0.028100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015744 seconds. 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 +Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.566 seconds +Domain Reload Profiling: + ReloadAssembly (1566ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1280ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6716. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.303600 ms (FindLiveObjects: 0.763800 ms CreateObjectMapping: 0.555200 ms MarkObjects: 2.945100 ms DeleteObjects: 0.037400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 336.007657 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '135249a70337f420c4be587fcbe88e81') in 0.010604 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018280 seconds. 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 +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.455 seconds +Domain Reload Profiling: + ReloadAssembly (1456ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1172ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6719. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.145800 ms (FindLiveObjects: 0.537800 ms CreateObjectMapping: 0.401100 ms MarkObjects: 2.172200 ms DeleteObjects: 0.033700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017546 seconds. 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 +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.654 seconds +Domain Reload Profiling: + ReloadAssembly (1655ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1373ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (582ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6722. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.522300 ms (FindLiveObjects: 0.799000 ms CreateObjectMapping: 0.286400 ms MarkObjects: 2.386700 ms DeleteObjects: 0.049200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014973 seconds. 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 +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.557 seconds +Domain Reload Profiling: + ReloadAssembly (1558ms) + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1244ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6725. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.176300 ms (FindLiveObjects: 0.550700 ms CreateObjectMapping: 0.251100 ms MarkObjects: 3.290500 ms DeleteObjects: 0.081100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 79.565413 seconds. + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + artifactKey: Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity using Guid(6601635721611064e92978155e3f0134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '743304dd80e4ec3a15b70d892733f88e') in 0.010736 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015423 seconds. 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 +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.403 seconds +Domain Reload Profiling: + ReloadAssembly (1404ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1122ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6728. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 4.043800 ms (FindLiveObjects: 0.664700 ms CreateObjectMapping: 0.417200 ms MarkObjects: 2.918100 ms DeleteObjects: 0.042200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017077 seconds. 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 +Refreshing native plugins compatible for Editor in 1.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.617 seconds +Domain Reload Profiling: + ReloadAssembly (1618ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1327ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (693ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6731. +Memory consumption went from 213.3 MB to 213.3 MB. +Total: 3.114300 ms (FindLiveObjects: 0.531300 ms CreateObjectMapping: 0.373800 ms MarkObjects: 2.174200 ms DeleteObjects: 0.033200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.016599 seconds. 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 +Refreshing native plugins compatible for Editor in 3.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.748 seconds +Domain Reload Profiling: + ReloadAssembly (1749ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1461ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (815ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (614ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.9 KB). Loaded Objects now: 6734. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 5.759900 ms (FindLiveObjects: 1.157900 ms CreateObjectMapping: 0.909100 ms MarkObjects: 3.631800 ms DeleteObjects: 0.058500 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.023860 seconds. 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 +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.453 seconds +Domain Reload Profiling: + ReloadAssembly (1454ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1158ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (309ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (639ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (506ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.92 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6737. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 3.960700 ms (FindLiveObjects: 0.548100 ms CreateObjectMapping: 0.428200 ms MarkObjects: 2.950800 ms DeleteObjects: 0.031700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015693 seconds. 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 +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.582 seconds +Domain Reload Profiling: + ReloadAssembly (1583ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1297ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6740. +Memory consumption went from 213.4 MB to 213.3 MB. +Total: 2.593000 ms (FindLiveObjects: 0.456200 ms CreateObjectMapping: 0.230900 ms MarkObjects: 1.873700 ms DeleteObjects: 0.031300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.021767 seconds. 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 +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1510ms) + BeginReloadAssembly (223ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1155ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6743. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 7.859100 ms (FindLiveObjects: 2.204500 ms CreateObjectMapping: 1.096300 ms MarkObjects: 4.473100 ms DeleteObjects: 0.079700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.028849 seconds. 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 +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.506 seconds +Domain Reload Profiling: + ReloadAssembly (1507ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1184ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (506ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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: 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6746. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 5.914900 ms (FindLiveObjects: 0.892500 ms CreateObjectMapping: 0.436600 ms MarkObjects: 4.452300 ms DeleteObjects: 0.129400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.019399 seconds. 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 +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.481 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1162ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (320ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (509ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6749. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.921300 ms (FindLiveObjects: 0.575400 ms CreateObjectMapping: 0.216600 ms MarkObjects: 3.080700 ms DeleteObjects: 0.047200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017342 seconds. 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 +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.475 seconds +Domain Reload Profiling: + ReloadAssembly (1475ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1145ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (297ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6752. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 4.267200 ms (FindLiveObjects: 0.872600 ms CreateObjectMapping: 0.490700 ms MarkObjects: 2.862500 ms DeleteObjects: 0.038800 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017302 seconds. 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 +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.617 seconds +Domain Reload Profiling: + ReloadAssembly (1618ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1314ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (369ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (719ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (568ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6755. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.953400 ms (FindLiveObjects: 0.730300 ms CreateObjectMapping: 0.465400 ms MarkObjects: 2.696600 ms DeleteObjects: 0.058300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014348 seconds. 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 +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1233ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (351ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (21.9 KB). Loaded Objects now: 6758. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.442800 ms (FindLiveObjects: 0.662200 ms CreateObjectMapping: 0.279300 ms MarkObjects: 2.469300 ms DeleteObjects: 0.030400 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.020155 seconds. 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 +Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.422 seconds +Domain Reload Profiling: + ReloadAssembly (1422ms) + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1109ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (289ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (514ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6761. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 2.718100 ms (FindLiveObjects: 0.439300 ms CreateObjectMapping: 0.218400 ms MarkObjects: 2.035300 ms DeleteObjects: 0.024100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.014952 seconds. 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 +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.414 seconds +Domain Reload Profiling: + ReloadAssembly (1414ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1125ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (301ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (628ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (508ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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.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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6764. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.201500 ms (FindLiveObjects: 0.680700 ms CreateObjectMapping: 0.250200 ms MarkObjects: 2.222600 ms DeleteObjects: 0.038000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.015288 seconds. 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 +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.546 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1260ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (554ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6767. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.836700 ms (FindLiveObjects: 0.687700 ms CreateObjectMapping: 0.301100 ms MarkObjects: 2.766300 ms DeleteObjects: 0.078700 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare -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. +Refreshing native plugins compatible for Editor in 10.57 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) +Unloading 32 Unused Serialized files (Serialized files now loaded: 0) +Unloading 32 unused Assets / (23.0 KB). Loaded Objects now: 6767. +Memory consumption went from 96.4 MB to 96.4 MB. +Total: 3.550800 ms (FindLiveObjects: 0.587300 ms CreateObjectMapping: 0.269400 ms MarkObjects: 2.623700 ms DeleteObjects: 0.069100 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.025453 seconds. 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 +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.666 seconds +Domain Reload Profiling: + ReloadAssembly (1667ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1340ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (702ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6770. +Memory consumption went from 213.4 MB to 213.4 MB. +Total: 3.817800 ms (FindLiveObjects: 0.463700 ms CreateObjectMapping: 0.312600 ms MarkObjects: 2.979500 ms DeleteObjects: 0.060200 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.018531 seconds. 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 +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.585 seconds +Domain Reload Profiling: + ReloadAssembly (1586ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1299ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (713ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.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 / (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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (22.0 KB). Loaded Objects now: 6773. +Memory consumption went from 213.5 MB to 213.4 MB. +Total: 5.503000 ms (FindLiveObjects: 0.891000 ms CreateObjectMapping: 0.582000 ms MarkObjects: 3.952400 ms DeleteObjects: 0.074000 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare +Registering precompiled user dll's ... +Registered in 0.017534 seconds. 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 +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not 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. +- Completed reload, in 1.551 seconds +Domain Reload Profiling: + ReloadAssembly (1552ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1268ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (700ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.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.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) +Unloading 5893 Unused Serialized files (Serialized files now loaded: 0) +Unloading 34 unused Assets / (23.0 KB). Loaded Objects now: 6776. +Memory consumption went from 213.5 MB to 213.4 MB. +Total: 3.366000 ms (FindLiveObjects: 0.607500 ms CreateObjectMapping: 0.295100 ms MarkObjects: 2.404800 ms DeleteObjects: 0.055300 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame/Logs/shadercompiler-AssetImportWorker0.log index 27e75b33..b4e6f0a2 100644 --- a/JNFrame/Logs/shadercompiler-AssetImportWorker0.log +++ b/JNFrame/Logs/shadercompiler-AssetImportWorker0.log @@ -1,4 +1,4 @@ -Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines' +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 4b5b59f1..3c9d9a8e 100644 --- a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,3 +1,9 @@ -Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines' +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2444 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2282 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 00000000..6e2200b9 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3658 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3635 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe10.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe10.log new file mode 100644 index 00000000..71cb005d --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe10.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1485 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2555 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe11.log new file mode 100644 index 00000000..c2f48592 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe11.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2567 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2282 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 00000000..de7bf3ff --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3658 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3635 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe3.log new file mode 100644 index 00000000..d305f254 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2444 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2555 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe4.log new file mode 100644 index 00000000..34fd1981 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2444 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1443 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe5.log new file mode 100644 index 00000000..0161e0f1 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1485 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=2282 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe6.log new file mode 100644 index 00000000..c63081c6 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2567 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1443 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe7.log new file mode 100644 index 00000000..1f783af1 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1485 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2555 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe8.log new file mode 100644 index 00000000..091ffca1 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe8.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=2567 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3635 + diff --git a/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe9.log b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe9.log new file mode 100644 index 00000000..5c05c4f0 --- /dev/null +++ b/JNFrame/Logs/shadercompiler-UnityShaderCompiler.exe9.log @@ -0,0 +1,9 @@ +Base path: 'D:/Unity/2021.3.33f1c1/Editor/Data', plugins path 'D:/Unity/2021.3.33f1c1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=2943 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Additive pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 uKW=SOFTPARTICLES_ON dKW=FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=gles3 reqs=1 mask=6 start=17 ok=1 outsize=3658 + +Cmd: compileSnippet + insize=2877 file=Assets/DefaultResourcesExtra/Legacy Shaders/Particles/Alpha Blended pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=SOFTPARTICLES_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=vulkan reqs=1 mask=6 start=17 ok=1 outsize=1443 + diff --git a/JNFrame/PackageToolsEditor.csproj b/JNFrame/PackageToolsEditor.csproj index b91007bd..6b295879 100644 --- a/JNFrame/PackageToolsEditor.csproj +++ b/JNFrame/PackageToolsEditor.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\PackageToolsEditor\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;UNITY_EDITOR_ONLY_COMPILATION + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,314 +41,310 @@ false - - - - - - + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -356,401 +352,401 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll @@ -758,12 +754,12 @@ D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.UI.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.TestRunner.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll + diff --git a/JNFrame/Packages/manifest.json b/JNFrame/Packages/manifest.json index 32ac5099..e8cbff4d 100644 --- a/JNFrame/Packages/manifest.json +++ b/JNFrame/Packages/manifest.json @@ -1,6 +1,5 @@ { "dependencies": { - "com.unity.ai.navigation": "1.1.5", "com.unity.collab-proxy": "2.2.0", "com.unity.feature.development": "1.0.1", "com.unity.ide.rider": "3.0.27", diff --git a/JNFrame/Packages/packages-lock.json b/JNFrame/Packages/packages-lock.json index 2c67f678..2648d060 100644 --- a/JNFrame/Packages/packages-lock.json +++ b/JNFrame/Packages/packages-lock.json @@ -1,14 +1,5 @@ { "dependencies": { - "com.unity.ai.navigation": { - "version": "1.1.5", - "depth": 0, - "source": "registry", - "dependencies": { - "com.unity.modules.ai": "1.0.0" - }, - "url": "https://packages.unity.cn" - }, "com.unity.collab-proxy": { "version": "2.2.0", "depth": 0, @@ -36,7 +27,7 @@ "source": "builtin", "dependencies": { "com.unity.ide.visualstudio": "2.0.22", - "com.unity.ide.rider": "3.0.27", + "com.unity.ide.rider": "3.0.26", "com.unity.ide.vscode": "1.2.5", "com.unity.editorcoroutines": "1.0.0", "com.unity.performance.profile-analyzer": "1.2.2", @@ -77,7 +68,7 @@ "url": "https://packages.unity.cn" }, "com.unity.settings-manager": { - "version": "2.0.1", + "version": "1.0.3", "depth": 2, "source": "registry", "dependencies": {}, @@ -276,6 +267,17 @@ "version": "1.0.0", "depth": 0, "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", "dependencies": { "com.unity.modules.ui": "1.0.0", "com.unity.modules.imgui": "1.0.0", diff --git a/JNFrame/ProjectSettings/DynamicsManager.asset b/JNFrame/ProjectSettings/DynamicsManager.asset index f10acf72..2f2908fc 100644 --- a/JNFrame/ProjectSettings/DynamicsManager.asset +++ b/JNFrame/ProjectSettings/DynamicsManager.asset @@ -3,7 +3,7 @@ --- !u!55 &1 PhysicsManager: m_ObjectHideFlags: 0 - serializedVersion: 14 + serializedVersion: 13 m_Gravity: {x: 0, y: -9.81, z: 0} m_DefaultMaterial: {fileID: 0} m_BounceThreshold: 2 @@ -19,10 +19,9 @@ PhysicsManager: m_ClothInterCollisionStiffness: 0 m_ContactsGeneration: 1 m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff - m_SimulationMode: 2 - m_AutoSyncTransforms: 1 + m_AutoSimulation: 0 + m_AutoSyncTransforms: 0 m_ReuseCollisionCallbacks: 1 - m_InvokeCollisionCallbacks: 1 m_ClothInterCollisionSettingsToggle: 0 m_ClothGravity: {x: 0, y: -9.81, z: 0} m_ContactPairsMode: 0 diff --git a/JNFrame/ProjectSettings/EditorBuildSettings.asset b/JNFrame/ProjectSettings/EditorBuildSettings.asset index acfcd379..84a7cea4 100644 --- a/JNFrame/ProjectSettings/EditorBuildSettings.asset +++ b/JNFrame/ProjectSettings/EditorBuildSettings.asset @@ -20,4 +20,13 @@ EditorBuildSettings: - enabled: 1 path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01_1.unity guid: b678704b40de4ea4eaa9bc391ff5f803 + - enabled: 1 + path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/JNWorldSync01.unity + guid: e7793c2a31991de4ba4d03f36dc06366 + - enabled: 1 + path: Assets/Game/Scenes/Mode/Example11_RVO/RVOLightweight.unity + guid: 8e0330a3995e1f64baf253a026021f09 + - enabled: 1 + path: Assets/Game/Scenes/Mode/Example11_RVO/GRVO01World.unity + guid: 6601635721611064e92978155e3f0134 m_configObjects: {} diff --git a/JNFrame/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json b/JNFrame/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json index 3c7b4c18..ad11087f 100644 --- a/JNFrame/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json +++ b/JNFrame/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json @@ -1,4 +1,6 @@ { + "m_Name": "Settings", + "m_Path": "ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json", "m_Dictionary": { "m_DictionaryValues": [] } diff --git a/JNFrame/ProjectSettings/ProjectSettings.asset b/JNFrame/ProjectSettings/ProjectSettings.asset index 8d2f13b0..30dcb382 100644 --- a/JNFrame/ProjectSettings/ProjectSettings.asset +++ b/JNFrame/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,7 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 26 + serializedVersion: 24 productGUID: 01a6b5b37d55f4e40bf56260ad6847e0 AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 @@ -49,15 +49,14 @@ PlayerSettings: m_StereoRenderingPath: 0 m_ActiveColorSpace: 1 unsupportedMSAAFallback: 0 - m_SpriteBatchVertexThreshold: 300 m_MTRendering: 1 mipStripping: 0 numberOfMipsStripped: 0 - numberOfMipsStrippedPerMipmapLimitGroup: {} m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 iosUseCustomAppBackgroundBehavior: 0 + iosAllowHTTPDownload: 1 allowedAutorotateToPortrait: 1 allowedAutorotateToPortraitUpsideDown: 1 allowedAutorotateToLandscapeRight: 1 @@ -87,7 +86,11 @@ PlayerSettings: hideHomeButton: 0 submitAnalytics: 1 usePlayerLog: 1 - dedicatedServerOptimizations: 0 + autoStreaming: 0 + useAnimationStreaming: 0 + useFontStreaming: 0 + autoStreamingId: + instantGameAppId: bakeCollisionMeshes: 0 forceSingleInstance: 0 useFlipModelSwapchain: 1 @@ -122,11 +125,8 @@ PlayerSettings: switchNVNShaderPoolsGranularity: 33554432 switchNVNDefaultPoolsGranularity: 16777216 switchNVNOtherPoolsGranularity: 16777216 - switchGpuScratchPoolGranularity: 2097152 - switchAllowGpuScratchShrinking: 0 switchNVNMaxPublicTextureIDCount: 0 switchNVNMaxPublicSamplerIDCount: 0 - switchNVNGraphicsFirmwareMemory: 32 switchMaxWorkerMultiple: 8 stadiaPresentMode: 0 stadiaTargetFramerate: 0 @@ -135,7 +135,12 @@ PlayerSettings: vulkanEnablePreTransform: 1 vulkanEnableLateAcquireNextImage: 0 vulkanEnableCommandBufferRecycling: 1 - loadStoreDebugModeEnabled: 0 + m_SupportedAspectRatios: + 4:3: 1 + 5:4: 1 + 16:10: 1 + 16:9: 1 + Others: 1 bundleVersion: 0.1 preloadedAssets: [] metroInputSource: 0 @@ -148,9 +153,8 @@ PlayerSettings: isWsaHolographicRemotingEnabled: 0 enableFrameTimingStats: 0 enableOpenGLProfilerGPURecorders: 1 - allowHDRDisplaySupport: 0 useHDRDisplay: 0 - hdrBitDepth: 0 + D3DHDRBitDepth: 0 m_ColorGamuts: 00000000 targetPixelDensity: 30 resolutionScalingMode: 0 @@ -180,15 +184,12 @@ PlayerSettings: APKExpansionFiles: 0 keepLoadedShadersAlive: 0 StripUnusedMeshComponents: 1 - strictShaderVariantMatching: 0 VertexChannelCompressionMask: 4054 iPhoneSdkVersion: 988 iOSTargetOSVersionString: 12.0 tvOSSdkVersion: 0 tvOSRequireExtendedGameController: 0 tvOSTargetOSVersionString: 12.0 - VisionOSSdkVersion: 0 - VisionOSTargetOSVersionString: 1.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 @@ -236,10 +237,8 @@ PlayerSettings: appleDeveloperTeamID: iOSManualSigningProvisioningProfileID: tvOSManualSigningProvisioningProfileID: - VisionOSManualSigningProvisioningProfileID: iOSManualSigningProvisioningProfileType: 0 tvOSManualSigningProvisioningProfileType: 0 - VisionOSManualSigningProvisioningProfileType: 0 appleEnableAutomaticSigning: 0 iOSRequireARKit: 0 iOSAutomaticallyDetectAndAddCapabilities: 1 @@ -254,7 +253,6 @@ PlayerSettings: useCustomLauncherGradleManifest: 0 useCustomBaseGradleTemplate: 0 useCustomGradlePropertiesTemplate: 0 - useCustomGradleSettingsTemplate: 0 useCustomProguardFile: 0 AndroidTargetArchitectures: 1 AndroidTargetDevices: 0 @@ -262,7 +260,6 @@ PlayerSettings: androidSplashScreen: {fileID: 0} AndroidKeystoreName: '{inproject}: key/user.keystore' AndroidKeyaliasName: 123456 - AndroidEnableArmv9SecurityFeatures: 0 AndroidBuildApkPerCpuArchitecture: 0 AndroidTVCompatibility: 0 AndroidIsGame: 1 @@ -276,6 +273,7 @@ PlayerSettings: banner: {fileID: 0} androidGamepadSupportLevel: 0 chromeosInputEmulation: 1 + AndroidMinifyWithR8: 0 AndroidMinifyRelease: 0 AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 @@ -459,9 +457,7 @@ PlayerSettings: m_EncodingQuality: 1 - m_BuildTarget: tvOS m_EncodingQuality: 1 - m_BuildTargetGroupHDRCubemapEncodingQuality: [] m_BuildTargetGroupLightmapSettings: [] - m_BuildTargetGroupLoadStoreDebugModeSettings: [] m_BuildTargetNormalMapEncoding: - m_BuildTarget: Android m_Encoding: 1 @@ -482,7 +478,6 @@ PlayerSettings: locationUsageDescription: microphoneUsageDescription: bluetoothUsageDescription: - macOSTargetOSVersion: 10.13.0 switchNMETAOverride: switchNetLibKey: switchSocketMemoryPoolSize: 6144 @@ -494,7 +489,6 @@ PlayerSettings: switchLTOSetting: 0 switchApplicationID: 0x01004b9000490000 switchNSODependencies: - switchCompilerFlags: switchTitleNames_0: switchTitleNames_1: switchTitleNames_2: @@ -709,7 +703,6 @@ PlayerSettings: webGLMemorySize: 16 webGLExceptionSupport: 1 webGLNameFilesAsHashes: 0 - webGLShowDiagnostics: 0 webGLDataCaching: 1 webGLDebugSymbols: 0 webGLEmscriptenArgs: @@ -722,12 +715,6 @@ PlayerSettings: webGLLinkerTarget: 1 webGLThreadsSupport: 0 webGLDecompressionFallback: 0 - webGLInitialMemorySize: 32 - webGLMaximumMemorySize: 2048 - webGLMemoryGrowthMode: 2 - webGLMemoryLinearGrowthStep: 16 - webGLMemoryGeometricGrowthStep: 0.2 - webGLMemoryGeometricGrowthCap: 96 webGLPowerPreference: 2 scriptingDefineSymbols: Android: UNITY_PHYSICS_CUSTOM @@ -736,7 +723,6 @@ PlayerSettings: platformArchitecture: {} scriptingBackend: {} il2cppCompilerConfiguration: {} - il2cppCodeGeneration: {} managedStrippingLevel: EmbeddedLinux: 1 GameCoreScarlett: 1 @@ -755,9 +741,11 @@ PlayerSettings: suppressCommonWarnings: 1 allowUnsafeCode: 1 useDeterministicCompilation: 1 + enableRoslynAnalyzers: 1 additionalIl2CppArgs: scriptingRuntimeVersion: 1 gcIncremental: 1 + assemblyVersionValidation: 1 gcWBarrierValidation: 0 apiCompatibilityLevelPerPlatform: {} m_RenderingPath: 1 @@ -830,11 +818,6 @@ PlayerSettings: luminVersion: m_VersionCode: 1 m_VersionName: - hmiPlayerDataPath: - hmiForceSRGBBlit: 1 - embeddedLinuxEnableGamepadInput: 1 - hmiLogStartupTiming: 0 - hmiCpuConfiguration: apiCompatibilityLevel: 6 activeInputHandler: 0 windowsGamepadBackendHint: 0 @@ -845,7 +828,6 @@ PlayerSettings: organizationId: cloudEnabled: 0 legacyClampBlendShapeWeights: 0 - hmiLoadingImage: {fileID: 0} - platformRequiresReadableAssets: 0 + playerDataPath: + forceSRGBBlit: 1 virtualTexturingSupportEnabled: 0 - insecureHttpOption: 2 diff --git a/JNFrame/ProjectSettings/ProjectVersion.txt b/JNFrame/ProjectSettings/ProjectVersion.txt index 32a9a2e5..d9c417a3 100644 --- a/JNFrame/ProjectSettings/ProjectVersion.txt +++ b/JNFrame/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2022.3.16f1c1 -m_EditorVersionWithRevision: 2022.3.16f1c1 (2f3f1b3bde89) +m_EditorVersion: 2021.3.33f1c1 +m_EditorVersionWithRevision: 2021.3.33f1c1 (682b9db7927c) diff --git a/JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._ b/JNFrame/ProjectSettings/boot.config similarity index 100% rename from JNFrame/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._ rename to JNFrame/ProjectSettings/boot.config diff --git a/JNFrame/UniTask.Addressables.csproj b/JNFrame/UniTask.Addressables.csproj index 25c5e4fb..bdb0d21c 100644 --- a/JNFrame/UniTask.Addressables.csproj +++ b/JNFrame/UniTask.Addressables.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask.Addressables\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -40,309 +40,293 @@ false false - - - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -350,389 +334,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/UniTask.DOTween.csproj b/JNFrame/UniTask.DOTween.csproj index 66808ba2..1c3d546a 100644 --- a/JNFrame/UniTask.DOTween.csproj +++ b/JNFrame/UniTask.DOTween.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask.DOTween\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -40,309 +40,293 @@ false false - - - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -350,389 +334,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/UniTask.Editor.csproj b/JNFrame/UniTask.Editor.csproj index 119fbdd8..a8a026cb 100644 --- a/JNFrame/UniTask.Editor.csproj +++ b/JNFrame/UniTask.Editor.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask.Editor\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;UNITY_EDITOR_ONLY_COMPILATION + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,313 +41,309 @@ false - - - - - - + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -355,401 +351,401 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll @@ -757,12 +753,12 @@ D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.UI.dll - - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll - D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEngine.TestRunner.dll + + D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.TestRunner.dll + diff --git a/JNFrame/UniTask.Linq.csproj b/JNFrame/UniTask.Linq.csproj index f8083508..1131cb3d 100644 --- a/JNFrame/UniTask.Linq.csproj +++ b/JNFrame/UniTask.Linq.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask.Linq\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,380 +41,364 @@ false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -422,389 +406,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/UniTask.TextMeshPro.csproj b/JNFrame/UniTask.TextMeshPro.csproj index 431c49d7..8c22ee27 100644 --- a/JNFrame/UniTask.TextMeshPro.csproj +++ b/JNFrame/UniTask.TextMeshPro.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask.TextMeshPro\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;UNITASK_TEXTMESHPRO_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;UNITASK_TEXTMESHPRO_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,309 +41,293 @@ false - - - - - + - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -351,389 +335,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\Unity.TextMeshPro.dll diff --git a/JNFrame/UniTask.csproj b/JNFrame/UniTask.csproj index a8510ae2..eabe2142 100644 --- a/JNFrame/UniTask.csproj +++ b/JNFrame/UniTask.csproj @@ -26,7 +26,7 @@ full false Temp\Bin\Debug\UniTask\ - UNITY_2022_3_16;UNITY_2022_3;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;UNITASK_ASSETBUNDLE_SUPPORT;UNITASK_PHYSICS_SUPPORT;UNITASK_PHYSICS2D_SUPPORT;UNITASK_PARTICLESYSTEM_SUPPORT;UNITASK_UGUI_SUPPORT;UNITASK_WEBREQUEST_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2021_3_33;UNITY_2021_3;UNITY_2021;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_ANDROID;TEXTCORE_1_0_OR_NEWER;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;UNITY_PHYSICS_CUSTOM;UNITASK_ASSETBUNDLE_SUPPORT;UNITASK_PHYSICS_SUPPORT;UNITASK_PHYSICS2D_SUPPORT;UNITASK_PARTICLESYSTEM_SUPPORT;UNITASK_UGUI_SUPPORT;UNITASK_WEBREQUEST_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169,0649 @@ -41,380 +41,364 @@ false - - - - - - - - - - - - - - - - + + + + - + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIWidgetsModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2022.3.16f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll + D:\Unity\2021.3.33f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuUtilities.2.3.4\lib\netstandard2.0\BepuUtilities.dll - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.19.6\lib\netstandard2.0\Google.Protobuf.dll - - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll - - - D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll + + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\unityplastic.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics2\BepuPhysics.2.3.4\lib\netstandard2.0\BepuPhysics.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.collab-proxy@2.2.0\Lib\Editor\PlasticSCM\log4netPlastic.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Google.Protobuf.3.15.8\lib\netstandard2.0\Google.Protobuf.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Packages\Newtonsoft.Json.13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Clipper\Pathfinding.ClipperLib.dll @@ -422,389 +406,389 @@ D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll - - D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.visualscripting@1.9.1\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll - - - D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + D:\myproject\JisolGame\JNFrame\Library\PackageCache\com.unity.testtools.codecoverage@1.2.4\lib\ReportGenerator\ReportGeneratorMerged.dll D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\DotNetZip\Pathfinding.Ionic.Zip.Reduced.dll + + D:\myproject\JisolGame\JNFrame\Assets\NuGet\Editor\NugetForUnity.dll + + + D:\myproject\JisolGame\JNFrame\Assets\Game\Plugins\AstarPathfindingProject\Plugins\Poly2Tri\Pathfinding.Poly2Tri.dll + - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - - - D:\Unity\2022.3.16f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.GradleProject.dll + D:\Unity\2021.3.33f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\ref\2.1.0\netstandard.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\Microsoft.Win32.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.AppContext.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Buffers.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Concurrent.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.NonGeneric.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Collections.Specialized.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Console.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Data.Common.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Contracts.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Debug.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Process.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.StackTrace.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tools.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.TraceSource.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Diagnostics.Tracing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Drawing.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Dynamic.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Calendars.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Globalization.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Compression.ZipFile.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.IsolatedStorage.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.Pipes.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Expressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Linq.Queryable.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Memory.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Http.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NameResolution.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.NetworkInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Ping.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Requests.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Security.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.Sockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebHeaderCollection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.Client.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Net.WebSockets.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Numerics.Vectors.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ObjectModel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.DispatchProxy.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Emit.Lightweight.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Reflection.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Reader.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.ResourceManager.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Resources.Writer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Handles.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Json.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Claims.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Csp.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.Principal.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Security.SecureString.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.Encoding.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Text.RegularExpressions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Overlapped.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Extensions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Thread.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.ThreadPool.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Threading.Timer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.ValueTuple.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.ReaderWriter.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XmlSerializer.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard\System.Xml.XPath.XDocument.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\mscorlib.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ComponentModel.Composition.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Core.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Data.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Drawing.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.IO.Compression.FileSystem.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Net.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Numerics.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Runtime.Serialization.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.ServiceModel.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Transactions.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Web.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Windows.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Linq.dll - D:\Unity\2022.3.16f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll + D:\Unity\2021.3.33f1c1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx\System.Xml.Serialization.dll D:\myproject\JisolGame\JNFrame\Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/JNFrame/UserSettings/EditorUserSettings.asset b/JNFrame/UserSettings/EditorUserSettings.asset index eb58a0be..7ce6b9f9 100644 --- a/JNFrame/UserSettings/EditorUserSettings.asset +++ b/JNFrame/UserSettings/EditorUserSettings.asset @@ -21,32 +21,32 @@ EditorUserSettings: value: 184c flags: 0 RecentlyUsedSceneGuid-0: - value: 0657515703035b0d58570e2044760b44174f4e7f747074642f281c66b0b6653e - flags: 0 - RecentlyUsedSceneGuid-1: - value: 07025753065650025e585f7245720a4443164a2e7a7970357f714832b7e3646e - flags: 0 - RecentlyUsedSceneGuid-2: - value: 0101000353575002585a5c7a47770e13104f1c29787a71337b784a60e4b53260 - flags: 0 - RecentlyUsedSceneGuid-3: - value: 070804050057080b5c5a54234077061545154d7c2a2b22357f2b4866e1e53769 - flags: 0 - 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: + RecentlyUsedSceneGuid-1: + value: 5a03005f0301085d0f5d082043200b444e4e1c7b2d7a7f352c714532b0e6653b + flags: 0 + RecentlyUsedSceneGuid-2: + value: 0650065500505e595c5b0824467b06444f16482b2e7f23652f7d4465b3e26c3b + flags: 0 + RecentlyUsedSceneGuid-3: + value: 5304525206500f02085f5a7a41775916454e4872787d71347e7e1e37e1e2676b + flags: 0 + RecentlyUsedSceneGuid-4: + value: 0606035f56565b5a5e5f557b41275a4414164c2e7c7b20637b2d1e63b4b3626e + flags: 0 + RecentlyUsedSceneGuid-5: value: 505556565d020c0b5b5e5b71157b0c44104e417e74707f617a2a1831b7e5636c flags: 0 + RecentlyUsedSceneGuid-6: + value: 5b54045556050808545759274125094414161e78797b27607f7f4d61b3e66461 + flags: 0 + RecentlyUsedSceneGuid-7: + value: 05010d5e06540d0d5d0d5c7141755e44134f19797a7e72642c7d456ab7b3323a + flags: 0 + RecentlyUsedSceneGuid-8: + value: 5507045753065c0c5f5f5a7341730944134e4a737b707765782c4e35b2b1676c + flags: 0 RecentlyUsedSceneGuid-9: value: 5a5757560101590a5d0c0e24427b5d44434e4c7a7b7a23677f2b4565b7b5353a flags: 0 diff --git a/JNFrame/UserSettings/Layouts/default-2021.dwlt b/JNFrame/UserSettings/Layouts/default-2021.dwlt index f6bf1258..dddd6421 100644 --- a/JNFrame/UserSettings/Layouts/default-2021.dwlt +++ b/JNFrame/UserSettings/Layouts/default-2021.dwlt @@ -14,91 +14,17 @@ MonoBehaviour: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 720 - y: 247 - width: 641 - height: 601 - m_ShowMode: 0 - m_Title: Build Settings - m_RootView: {fileID: 4} - m_MinSize: {x: 640, y: 601} - m_MaxSize: {x: 4000, y: 4021} - m_Maximized: 0 ---- !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: 0 - m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_PixelRect: - serializedVersion: 2 - x: 8 - y: 51 - width: 1904 - height: 973 + x: 0 + y: 43 + width: 1920 + height: 989 m_ShowMode: 4 - m_Title: "\u63A7\u5236\u53F0" - m_RootView: {fileID: 10} + m_Title: "\u9879\u76EE" + m_RootView: {fileID: 7} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} - m_Maximized: 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: 0 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: BuildPlayerWindow - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 641 - height: 601 - m_MinSize: {x: 640, y: 601} - m_MaxSize: {x: 4000, y: 4021} - m_ActualView: {fileID: 16} - m_Panes: - - {fileID: 16} - m_Selected: 0 - m_LastSelected: 0 ---- !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: 0 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 3} - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 641 - height: 601 - m_MinSize: {x: 640, y: 601} - m_MaxSize: {x: 4000, y: 4021} - vertical: 0 - controlID: 1186 ---- !u!114 &5 + m_Maximized: 1 +--- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -113,18 +39,18 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 813 + x: 310 y: 0 - width: 703 - height: 431 + width: 1219 + height: 550 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 18} + m_ActualView: {fileID: 14} m_Panes: - - {fileID: 18} + - {fileID: 14} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &6 +--- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -137,19 +63,19 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 13} - - {fileID: 7} + - {fileID: 10} + - {fileID: 4} m_Position: serializedVersion: 2 x: 0 y: 30 - width: 1904 - height: 923 + width: 1920 + height: 939 m_MinSize: {x: 400, y: 200} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 15 ---- !u!114 &7 + controlID: 93 +--- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -164,18 +90,18 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1516 + x: 1529 y: 0 - width: 388 - height: 923 + width: 391 + height: 939 m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 20} + m_ActualView: {fileID: 16} m_Panes: - - {fileID: 20} + - {fileID: 16} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &8 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -192,16 +118,16 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 284 - height: 431 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 21} + width: 209 + height: 550 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 17} m_Panes: - - {fileID: 21} + - {fileID: 17} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &9 +--- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -211,24 +137,24 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ConsoleWindow + m_Name: ProjectBrowser m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 431 - width: 1516 - height: 492 - m_MinSize: {x: 101, y: 121} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 23} + y: 550 + width: 1529 + height: 389 + m_MinSize: {x: 231, y: 271} + m_MaxSize: {x: 10001, y: 10021} + m_ActualView: {fileID: 15} m_Panes: + - {fileID: 15} - {fileID: 19} - - {fileID: 23} - m_Selected: 1 - m_LastSelected: 0 ---- !u!114 &10 + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -241,22 +167,22 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 11} - - {fileID: 6} - - {fileID: 12} + - {fileID: 8} + - {fileID: 3} + - {fileID: 9} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1904 - height: 973 + width: 1920 + height: 989 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 30 m_UseBottomView: 1 m_BottomViewHeight: 20 ---- !u!114 &11 +--- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -273,12 +199,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1904 + width: 1920 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LastLoadedLayoutName: ---- !u!114 &12 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -294,12 +220,12 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 953 - width: 1904 + y: 969 + width: 1920 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &13 +--- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -312,19 +238,19 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 14} - - {fileID: 9} + - {fileID: 11} + - {fileID: 6} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1516 - height: 923 + width: 1529 + height: 939 m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 16 ---- !u!114 &14 + controlID: 23 +--- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -337,20 +263,20 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 8} - - {fileID: 15} - {fileID: 5} + - {fileID: 12} + - {fileID: 2} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1516 - height: 431 + width: 1529 + height: 550 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 17 ---- !u!114 &15 + controlID: 24 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -365,70 +291,19 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 284 + x: 209 y: 0 - width: 529 - height: 431 + width: 101 + height: 550 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 22} + m_ActualView: {fileID: 18} m_Panes: - - {fileID: 22} - - {fileID: 17} + - {fileID: 18} + - {fileID: 13} m_Selected: 0 m_LastSelected: 1 ---- !u!114 &16 -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: 12043, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 640, y: 580} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Build Settings - m_Image: {fileID: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 720 - y: 247 - width: 641 - height: 580 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 - m_TreeViewState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: - 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: 0} - m_SearchString: ---- !u!114 &17 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -457,7 +332,7 @@ MonoBehaviour: m_LastAppliedPresetName: Default m_SaveData: [] m_OverlaysVisible: 1 ---- !u!114 &18 +--- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -477,10 +352,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 821 - y: 81 - width: 701 - height: 410 + x: 310 + y: 73 + width: 1217 + height: 529 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -517,7 +392,7 @@ MonoBehaviour: friendlyName: Apple iPhone 7 networkReachability: 1 systemLanguage: 10 ---- !u!114 &19 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -537,10 +412,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 8 - y: 512 - width: 1515 - height: 471 + x: 0 + y: 623 + width: 1528 + height: 368 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -557,23 +432,23 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Script + - Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D m_Globs: [] m_OriginalText: m_FilterByTypeIntersection: 0 m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets/Script + - Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example16_RVO 2D m_LastFoldersGridSize: -1 m_LastProjectPath: D:\myproject\JisolGame\JNFrame m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 49} - m_SelectedIDs: ee650000 - m_LastClickedID: 26094 - m_ExpandedIDs: 00000000ec650000ee650000f065000000ca9a3bffffff7f + scrollPos: {x: 0, y: 180} + m_SelectedIDs: 5e3a0200 + m_LastClickedID: 146014 + m_ExpandedIDs: 000000002c7100002e7100003071000036710000387100003a7100003c7100003e710000407100004271000044710000487100004a7100004c7100004e710000507100005271000054710000567100005a7100005c710000767100007c710000a8710000ac710000123a020000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -589,7 +464,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 9} + m_ClientGUIView: {fileID: 6} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -601,7 +476,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000ec650000ee650000f0650000 + m_ExpandedIDs: 000000002c7100002e71000030710000327100003471000036710000387100003a7100003c7100003e71000040710000427100004471000046710000487100004a7100004c7100004e71000050710000527100005471000056710000587100005a7100005c710000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -628,7 +503,7 @@ MonoBehaviour: m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 0 + m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000 m_RenameOverlay: m_UserAcceptedRename: 0 @@ -645,7 +520,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 9} + m_ClientGUIView: {fileID: 6} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -657,7 +532,7 @@ MonoBehaviour: m_GridSize: 64 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 422 ---- !u!114 &20 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -677,10 +552,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1524 - y: 81 - width: 387 - height: 902 + x: 1529 + y: 73 + width: 390 + height: 918 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -699,7 +574,7 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_PreviewWindow: {fileID: 0} ---- !u!114 &21 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -719,10 +594,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 8 - y: 81 - width: 283 - height: 410 + x: 0 + y: 73 + width: 208 + height: 529 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -731,9 +606,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: + m_SelectedIDs: ac3b0200 m_LastClickedID: 0 - m_ExpandedIDs: 0ee4ffff74e4ffff76e4ffff7ae4ffff7ee4ffff5ce5ffffc2e5ffffc4e5ffffc8e5ffffcce5ffffbae6ffff20e7ffff64e8ffff78e8ffff7ce8ffff32fbffff + m_ExpandedIDs: 2840fbff9840fbffe254fbff4855fbff7a57fbff8457fbff8c57fbffa257fbffa657fbffe83dfdffd21ffeffba33feffb861fefff265feffe49efeff4a9ffeff80a1feff8ea1feff9aa1feffb4a1feffbca1feff9600ffff6803ffff6e04ffff2438ffff204fffff5051ffff2e52ffff9a52ffffcc54ffffd654ffffde54fffff454fffff854ffff2657ffff8c57ffffbe59ffffc859ffffd059ffffe659ffffea59ffff7271ffffc873ffffa276ffff6279ffffec79ffff3c7cffff987dffff767effffe27effff0881ffff8881ffff9081ffffa681ffffaa81ffffd083ffff3684ffff6086ffffea86fffff686ffff1087ffff1887ffffde9fffff12acffffdaacffffc2adffff2ab0ffffc2b0ffffecb2ffffe8c7ffffc2cbffffceccffff90d0ffff3ed3ffff5afafffff4ffffff1a9300001e930000c4960000c8960000c49a0000129e0000deb60000e0b60000d4b90000d8b900006ce30000d6e70000bef20000c0f20000b8f50000181801007e1801003e1f0100126101007e610100a6900100a89001009c930100a093010004c70100 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -749,7 +624,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 8} + m_ClientGUIView: {fileID: 5} m_SearchString: m_ExpandedScenes: [] m_CurrenRootInstanceID: 0 @@ -757,7 +632,7 @@ MonoBehaviour: m_IsLocked: 0 m_CurrentSortingName: TransformSorting m_WindowGUID: 4c969a2b90040154d917609493e03593 ---- !u!114 &22 +--- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -777,10 +652,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 292 - y: 81 - width: 527 - height: 410 + x: 209 + y: 73 + width: 99 + height: 529 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -791,7 +666,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: -101, y: -26} + snapOffsetDelta: {x: -99, y: -26} snapCorner: 3 id: Tool Settings index: 0 @@ -802,7 +677,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: -141, y: 149} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 42, y: 0} snapCorner: 1 id: unity-grid-and-snap-toolbar index: 1 @@ -857,7 +732,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 67.5, y: 86} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: -18.5, y: 0} snapCorner: 0 id: Orientation index: 0 @@ -1016,9 +891,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 0.65847206, y: -4.910176, z: -0.10063385} + m_Target: {x: 667, y: 375, z: 0} speed: 2 - m_Value: {x: 0.65847206, y: -4.910176, z: -0.10063385} + m_Value: {x: 667, y: 375, z: 0} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -1065,13 +940,13 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: 0.20692681, y: -0.78324103, z: 0.34177172, w: 0.47632623} + m_Target: {x: -0.14872272, y: -0.8519784, z: 0.3559162, w: -0.35401416} speed: 2 - m_Value: {x: 0.20692891, y: -0.78324896, z: 0.34177518, w: 0.47633106} + m_Value: {x: -0.14872362, y: -0.85198355, z: 0.35591835, w: -0.3540163} m_Size: - m_Target: 19.545448 + m_Target: 765.2209 speed: 2 - m_Value: 19.545448 + m_Value: 765.2209 m_Ortho: m_Target: 0 speed: 2 @@ -1096,7 +971,7 @@ MonoBehaviour: m_SceneVisActive: 1 m_LastLockedObject: {fileID: 0} m_ViewIsLockedToObject: 0 ---- !u!114 &23 +--- !u!114 &19 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1116,10 +991,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 8 - y: 512 - width: 1515 - height: 471 + x: 0 + y: 623 + width: 1528 + height: 368 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default diff --git a/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/App.csproj.AssemblyReference.cache index a5427a4614ee80b7c61e1e5a1a6315fbe5bce23e..880e93412e0eea4fba975eee19990e4d07bad7cb 100644 GIT binary patch delta 14063 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 delta 564 zcmX^3kN?|BPF6NX0Y-+&ViFFMKcuitzHh@h`L-z6#<->j?3!Nk93PbKOuu-A$#S#8 z!w3PkQcF3YNORrC?R6g+%Pm+>z42hy+5StDDS?sI=eQ$~9k0!l&d6F2=L=+?)?q4R z23Hh#K&Iuq3VxIiZM z>HAE8+@&T=2UtCrynvQunKJn>LM_~F##GM8(Lt;gJ%0l2d1}-th^3DPj27s#I%EvhyNwq!KGWEdB*AN7=y~bO^ni)=VK>M<=K`2o ffB_A155)D_(?13=X>acg0!9ENI;Z~#X8H#JU9F<2 diff --git a/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 20176dec2a525858b1f71ba936c084d73f4d2940..70003ebca3d393d0a29f251b6135ee4e6b4293dd 100644 GIT binary patch delta 735 zcmYjPT}YEr80OvCdH3z>Qx_KfkmOG`R*F+2tc41d+CcOs`g1>lE478%O0=eP@I`bp zi=nScl%SKSkdeaa2g2wgkTkElN}P37&`mcPRCKnlq>J~!f#*Eu`FZsThd$vL)Im4t zOgHO%7JszxZ61sTXs848s5#8I$oF6i@P;uS3y7!}TLCL_B%+vV+F5hF^R!0ez38I3 zaj?-lA8w?dy_ikkee(UH9~0V_j~0pkpa8&DDj<2ZwKMz34z-?^2%@y|1hOgS!z!`` z*=GFYRMOWaS>XDCkl& z5oyN_z`w3Z_d@0q20r~(elKi6^sJ{6>0wQ@^jg9fFJcX7b+06&p|F(76HrPElVGRR zDq6|WhSf%Jg9+F|-UR5BECVym7OIEneizoDVUSXNtb=l5)B6xM|JA(rvb2i}Co*BD9>Njv z@(OMTo@q-g_uyI3ti$Wg6{XWEqS~lTOI9vq<%PiAj7j@%`mhmDd6ZcSe-avKX&9~I z!Zj=aLzR%KLV(65Q0)x3N3ytf!#{v>EOHd#AF%$usg>>Xje3l*atZR(T+y$nPdDMz w+ClOZ(_n>il5EUm6?gO0GkY-7e_*$_Sp2G2BPN^=R>=!RkE&JTxm%sbKgDnRwg3PC delta 716 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 delta 75 zcmccfmG|v7b`Cbi=L`%CjBb+!Wt=y9FPP4z=_SwcL22{H>5~N5N-gDp?B>oD+dEe< evgxpTFnKZSY@c$4(Seb5ZmJ`Yee){g6jlJ?Eg9ti diff --git a/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/AstarPathfindingProjectEditor.csproj.AssemblyReference.cache index 3d535423d6e2109d44fd35371d98489c3ccfebea..e31a4eda2b1bf272c0068ecc400adf88d051f87e 100644 GIT binary patch delta 14184 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 G_W2(mr|J;^ delta 121 zcmX@Joo~Z!b`CbicMJ>+jBb+!Wt=y9ZUov_y@|=3(!K|Zthl7!kQEa-xYans# X4P)N)^RF4NvickcsayGmk)06$FwrZ- diff --git a/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/BestHTTP.csproj.AssemblyReference.cache index 0b426c85397a967750af8d4949ec253fc4aca880..89173d81d4bf0124fe4d07deede16f81e2cdb8bd 100644 GIT binary patch delta 13722 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 diff --git a/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache b/JNFrame/obj/Debug/JNGame.csproj.AssemblyReference.cache index 796336e627d5b5ecd0812dbf6bd1577a52c203ec..02845d0443090001ea2dfba30ad78fb8f998d55b 100644 GIT binary patch delta 13819 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 bTv{Kz=Pa58OR>?PvAEvMmjR=U_A2~e2)PNf delta 90 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 N{%Z5?3#Zq{{~w;WA!7gl delta 125 zcmX@s!nbM#I|m!%I|c>@Mz_g|>dw>iuP|~>KEuJaF;2XNP18%BXu0Y?4_1+ zK=z&K>`_eS&E8YDdrxJ&W6A2lF7M2#)Eo_fHSl6B5=u6%H!h_9$kf-JOurw+X1;y)4$f0-0Lil>nE(I) delta 85 zcmaF*PwnYHwT2eP7N!>F7M2#)Eo_fHSUs4$n02F7M2#)Eo_fHSl6B5=u6%H!h_9$kf-JOurw+X1;y)4$f0-0Lil>nE(I) delta 85 zcmaF*PwnYHwT2eP7N!>F7M2#)Eo_fHSUs4$n02F7M2#)Eo^Oz+18!m=u1_d?l^_ndOFWiHuvfKr!ePEuU^6y z!0N@!+?Trj!V)$QM%J)9OhC5mGPVRpwsmt@Kw1=LFgs6g_|3vIJ$D(K^>q0?jJ54u xE7*XT9f&!$cdg)zYGtplwN#5!y)*sKIyTGgDtcV5Ol+reEPz7W^9{I|*a6*mH(3Ax delta 139 zcmezPPUGV{jfNJ+7N!>F7M2#)Eo^Oz**uuMm~~XAJ5FJ?p3bwB&3*d*Da^UktCz3^ zu+B|&WY*b!VF{ZDBdgDG5LF7M2#)Eo_fHSl6B5=u6%H!h_9$kf-JOurw+X1;y)4$f0-0Lil>nE(I) delta 85 zcmaF*PwnYHwT2eP7N!>F7M2#)Eo_fHSUs4$n02k5i)=sb!{)%q z>c!05m)b7i#|FggK+LgSz>jlvHd}qIrCOZo_Jcb)>zUY3F7M2#)Eo_fHSl6B5=u6%H!h_9$kf-JOurw+X1;y)4$f0-0Lil>nE(I) delta 85 zcmaF*PwnYHwT2eP7N!>F7M2#)Eo_fHSUs4$n02