diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index 13c9b1cd..2128ef0e 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/DataHolder.cs b/Assets/DataHolder.cs index 69da0e23..349b459f 100644 --- a/Assets/DataHolder.cs +++ b/Assets/DataHolder.cs @@ -10,6 +10,7 @@ public class DataHolder : MonoBehaviour public List easyLevels; public List normalLevels; public List hardLevels; + public List PlayerEquipment = new List(); public MissionConfig mission; [SerializeField] private string _currentScene; diff --git a/Assets/Scenes/BattleScene.unity b/Assets/Scenes/BattleScene.unity index 7de7f614..e541ad89 100644 --- a/Assets/Scenes/BattleScene.unity +++ b/Assets/Scenes/BattleScene.unity @@ -1410,6 +1410,7 @@ MonoBehaviour: - {fileID: 7221412860694950145, guid: 34091b333ae775a4e8248495b8cdae9e, type: 3} - {fileID: 5003711296695674289, guid: 32d0fb454e08ef24a80a73425416751b, type: 3} - {fileID: 1928825181468149449, guid: f73491b94287ea54ca01b9c32623daf0, type: 3} + equipmentParent: {fileID: 1727453463} player: {fileID: 5565334654496439714, guid: c0b94d336afc615439f5c5ef9c7abb16, type: 3} playerPosition: {fileID: 1240862618} playerLink: {fileID: 0} @@ -1509,6 +1510,7 @@ GameObject: - component: {fileID: 559254430} - component: {fileID: 559254433} - component: {fileID: 559254432} + - component: {fileID: 559254434} m_Layer: 5 m_Name: InventoryCanvas m_TagString: Untagged @@ -1632,6 +1634,7 @@ MonoBehaviour: - {fileID: 4068511147674530333, guid: ca90993e80150994e905b83ffd525f53, type: 3} - {fileID: 726422991776119786, guid: ffde653421f3d064cbdfc3b4571a5a2a, type: 3} playerEquipment: [] + localplayerEquipment: [] imagePlug: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} playerPlace: - {fileID: 1617960470} @@ -1641,6 +1644,27 @@ MonoBehaviour: - {fileID: 518861538} - {fileID: 23443383} lastCardNum: 0 +--- !u!114 &559254434 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd8d4ce0f427a174cb479d11b8f992b3, type: 3} + m_Name: + m_EditorClassIdentifier: + buttonPrefab: {fileID: 845954423796914200, guid: f33090d3cfbeff54cb49cc789b59da51, type: 3} + parent: {fileID: 1594427389} + allButtonLinks: [] + distX: 30 + distY: 30 + maxHeroesInRow: 3 + maxHeroesInColumn: 3 + maxHeroButOnPage: 0 + page: 0 --- !u!1 &565565346 GameObject: m_ObjectHideFlags: 0 @@ -4392,7 +4416,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1594427389} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: cd8d4ce0f427a174cb479d11b8f992b3, type: 3} m_Name: @@ -4404,6 +4428,7 @@ MonoBehaviour: distY: 30 maxHeroesInRow: 3 maxHeroesInColumn: 3 + maxHeroButOnPage: 0 page: 0 --- !u!1 &1617960467 GameObject: @@ -4875,6 +4900,36 @@ RectTransform: m_AnchoredPosition: {x: 803.9999, y: 819.74} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1727453463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1727453464} + m_Layer: 0 + m_Name: EquipmentParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1727453464 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1727453463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 752, y: 917.00024, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1761042303 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/Scripts/Inventory/AddEquipment.cs b/Assets/Scripts/Inventory/AddEquipment.cs index cede29e4..d8468ffc 100644 --- a/Assets/Scripts/Inventory/AddEquipment.cs +++ b/Assets/Scripts/Inventory/AddEquipment.cs @@ -15,7 +15,14 @@ public class AddEquipment : MonoBehaviour { Inventory.main.playerPlace[i].image.sprite = Inventory.main.imagePlug; Inventory.main.playerPlace[i].GetComponent().equipmentNum = -1; - Inventory.main.localplayerEquipment.Add(Inventory.main.allEquipment[Inventory.main.lastCardNum]); + try + { + Inventory.main.localplayerEquipment.Insert(Inventory.main.lastCardNum, Inventory.main.allEquipment[Inventory.main.lastCardNum]); + } + catch + { + Inventory.main.localplayerEquipment.Insert(Inventory.main.localplayerEquipment.Count, Inventory.main.allEquipment[Inventory.main.lastCardNum]); + } Inventory.main.gameObject.GetComponent().InstantiateEquipmentButton(0, 9); } } @@ -28,7 +35,7 @@ public class AddEquipment : MonoBehaviour Inventory.main.gameObject.GetComponent().InstantiateEquipmentButton(0, 9); } - DataScript.PlayerEquipment = Inventory.main.playerEquipment; + DataHolder.main.PlayerEquipment = Inventory.main.playerEquipment; EquipmentInfo.main.CardAbout(Inventory.main.lastCardNum); } diff --git a/Assets/Scripts/Inventory/Inventory.cs b/Assets/Scripts/Inventory/Inventory.cs index e83e3121..081e9dd6 100644 --- a/Assets/Scripts/Inventory/Inventory.cs +++ b/Assets/Scripts/Inventory/Inventory.cs @@ -20,7 +20,7 @@ public class Inventory : MonoBehaviour private void Awake() { main = this; - playerEquipment = DataScript.PlayerEquipment; + playerEquipment = DataHolder.main.PlayerEquipment; localplayerEquipment.AddRange(allEquipment); } diff --git a/Assets/Scripts/Inventory/SpawnButton.cs b/Assets/Scripts/Inventory/SpawnButton.cs index a2241350..cbc98864 100644 --- a/Assets/Scripts/Inventory/SpawnButton.cs +++ b/Assets/Scripts/Inventory/SpawnButton.cs @@ -19,7 +19,6 @@ public class SpawnButton : MonoBehaviour public int maxHeroButOnPage; [SerializeField] private int page; - private void Start() { page = 0; @@ -47,11 +46,11 @@ public class SpawnButton : MonoBehaviour public void InstantiateEquipmentButton(int _begin, int _end) { - for (int i = 0; i < allButtonLinks.Count; i++) - { - Destroy(allButtonLinks[i]); - } allButtonLinks.Clear(); + for (int i = 0; i < parent.transform.childCount; i++) + { + Destroy(parent.transform.GetChild(i).gameObject); + } float _x = 0; float _y = 0; @@ -65,21 +64,29 @@ public class SpawnButton : MonoBehaviour } Button link = Instantiate(buttonPrefab, parent.transform); - link.transform.GetComponent().num = i; link.transform.localPosition = new Vector3(_x, _y, 0); - link.image.sprite = Inventory.main.localplayerEquipment[i].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + link.image.sprite = Inventory.main.localplayerEquipment[link.transform.GetComponent().num].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + for (int j = 0; j < Inventory.main.allEquipment.Count; j++) + { + if(Inventory.main.allEquipment[j].GetComponent().equipmentConfig.equipmentCharacteristics.sprite == link.image.sprite) + { + link.transform.GetComponent().num = j; + break; + } + } - _x += gameObject.GetComponent().rect.width + distX; + _x += link.GetComponent().rect.width + distX; _counter += 1; if (_counter % maxHeroesInRow == 0) { _x = 0; - _y -= gameObject.GetComponent().rect.height + distY; + _y -= link.GetComponent().rect.height + distY; } allButtonLinks.Add(link); } } + } diff --git a/Assets/Scripts/DataScript.cs b/Assets/Scripts/Not used/DataScript.cs similarity index 59% rename from Assets/Scripts/DataScript.cs rename to Assets/Scripts/Not used/DataScript.cs index 708b45c2..283759e8 100644 --- a/Assets/Scripts/DataScript.cs +++ b/Assets/Scripts/Not used/DataScript.cs @@ -4,5 +4,5 @@ using UnityEngine; public static class DataScript { - public static List PlayerEquipment = new List(); + } diff --git a/Assets/Scripts/DataScript.cs.meta b/Assets/Scripts/Not used/DataScript.cs.meta similarity index 100% rename from Assets/Scripts/DataScript.cs.meta rename to Assets/Scripts/Not used/DataScript.cs.meta diff --git a/Assets/Scripts/Session.cs b/Assets/Scripts/Session.cs index c20485ec..1bf92e8c 100644 --- a/Assets/Scripts/Session.cs +++ b/Assets/Scripts/Session.cs @@ -25,6 +25,7 @@ public class Session : MonoBehaviour [Header("Player")] [Space] + [SerializeField] private GameObject equipmentParent; [SerializeField] private GameObject player; [SerializeField] private Transform playerPosition; [HideInInspector] public GameObject playerLink; @@ -76,7 +77,6 @@ public class Session : MonoBehaviour } public void SecondPhase() { - if (!battleConfig.battleCharacteristics.SecondPhase) { Victory(); @@ -275,4 +275,12 @@ public class Session : MonoBehaviour return DataHolder.main.RandomLevel(DataHolder.complexityLevels.all); } } + + public void UseEquipment() + { + for (int i = 0; i < DataHolder.main.PlayerEquipment.Count; i++) + { + Instantiate(DataHolder.main.PlayerEquipment[i], equipmentParent.transform); + } + } } \ No newline at end of file diff --git a/Library/ArtifactDB b/Library/ArtifactDB index f91e51fd..f8b388ee 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index fd247350..3fc51c35 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -45,10 +45,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 678, y: 492} - m_MaxSize: {x: 14002, y: 14042} + m_MinSize: {x: 679, y: 342} + m_MaxSize: {x: 12004, y: 8042} vertical: 0 - controlID: 63 + controlID: 102 --- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 @@ -94,8 +94,8 @@ MonoBehaviour: y: 0 width: 379 height: 573 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 15} m_Panes: - {fileID: 15} @@ -111,7 +111,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser + m_Name: ConsoleWindow m_EditorClassIdentifier: m_Children: [] m_Position: @@ -120,14 +120,14 @@ MonoBehaviour: y: 573 width: 1531 height: 374 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 13} + m_MinSize: {x: 101, y: 121} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 18} m_Panes: - {fileID: 13} - {fileID: 18} - m_Selected: 0 - m_LastSelected: 1 + m_Selected: 1 + m_LastSelected: 0 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -223,10 +223,10 @@ MonoBehaviour: y: 0 width: 1531 height: 947 - m_MinSize: {x: 402, y: 492} - m_MaxSize: {x: 10001, y: 14042} + m_MinSize: {x: 403, y: 342} + m_MaxSize: {x: 8003, y: 8042} vertical: 1 - controlID: 114 + controlID: 103 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -248,10 +248,10 @@ MonoBehaviour: y: 0 width: 1531 height: 573 - m_MinSize: {x: 402, y: 221} - m_MaxSize: {x: 8002, y: 4021} + m_MinSize: {x: 403, y: 221} + m_MaxSize: {x: 8003, y: 4021} vertical: 0 - controlID: 115 + controlID: 104 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -355,10 +355,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 3} - m_SelectedIDs: 38430000 - m_LastClickedID: 17208 - m_ExpandedIDs: 000000002a4300002c4300002e430000304300003a43000000ca9a3b + scrollPos: {x: 0, y: 79} + m_SelectedIDs: 58550000 + m_LastClickedID: 21848 + m_ExpandedIDs: 000000009a4800009c4800009e480000a0480000a24d00003055000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -386,7 +386,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 000000002a4300002c4300002e43000030430000 + m_ExpandedIDs: 000000009a4800009c4800009e480000a0480000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -411,8 +411,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 + m_SelectedInstanceIDs: 5e780000 + m_LastClickedInstanceID: 30814 m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000 m_RenameOverlay: @@ -507,23 +507,23 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: 26a3ffffaaa6ffff8ca8ffffdca8ffff5eabffffd8abffffe8abffffdcc8fffffccbffff66ccffff66d6ffff50f3ffffc4f3ffffd0f3ffffdaf3ffff48f4ffff3ef9ffff3efbffff90420000e0550000225b00002c5b0000525c0000905c0000045e0000725e0000925e0000fa5e00005a5f0000746a0000e26a00006a6b00006e710000ec710000dc720000e872000066730000387400005674000020a300009ea3000072a4000090a40000 + m_SelectedIDs: a0730000 + m_LastClickedID: 29600 + m_ExpandedIDs: 66c6ffff8eccffff04cdfffff6ceffff1ecfffff8adeffff2aebffffbef0ffff10fafffffc6300006c640000f464000012650000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: PlayerInv - m_OriginalName: PlayerInv + m_Name: + m_OriginalName: m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 29342 + m_UserData: 0 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 0 + m_OriginalEventType: 11 m_IsRenamingFilename: 0 m_ClientGUIView: {fileID: 4} m_SearchString: @@ -569,9 +569,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 0, y: 0, z: 0} + m_Target: {x: 752, y: 917.00024, z: 0} speed: 2 - m_Value: {x: 0, y: 0, z: 0} + m_Value: {x: 752, y: 917.00024, z: 0} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -622,9 +622,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 10 + m_Target: 109.33476 speed: 2 - m_Value: 10 + m_Value: 109.33476 m_Ortho: m_Target: 1 speed: 2 diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 7dfb5b82..a5f598cd 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 8e9371ba..9e83569d 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 64340afe..3e9bdc9c 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index 46fcfc18..e1a3fada 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index bbc8b220..b71b5b3a 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt index e238539c..c04ee6c7 100644 --- a/Logs/ApiUpdaterCheck.txt +++ b/Logs/ApiUpdaterCheck.txt @@ -728,3 +728,40 @@ C# parse time : 113ms candidates check time : 20ms console write time : 0ms +[api-updater (non-obsolete-error-filter)] 18.01.2022 14:40:38 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 113,195ms +moved types parse time: 48ms +candidates parse time : 11ms +C# parse time : 173ms +candidates check time : 37ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 18.01.2022 21:34:37 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] Exception caught while loading types from E:\Projects с#\Unity\omega\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll (some types may not be loaded) + Exception of type 'System.Reflection.ReflectionTypeLoadException' was thrown. + at (wrapper managed-to-native) System.Reflection.Assembly.GetTypes(System.Reflection.Assembly,bool) + at System.Reflection.Assembly.GetTypes () [0x00000] in <695d1cc93cca45069c528c15c9fdd749>:0 + at APIUpdater.NonObsoleteApiUpdaterDetector.ExtraInfoParser+d__3.MoveNext () [0x000c8] in <68bff7873e0e4aa69a14dfc30bebbe3e>:0 + Could not load file or assembly 'UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. + +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 107,9902ms +moved types parse time: 37ms +candidates parse time : 8ms +C# parse time : 136ms +candidates check time : 32ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 18.01.2022 21:35:49 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 51,8601ms +moved types parse time: 39ms +candidates parse time : 8ms +C# parse time : 141ms +candidates check time : 31ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index ed16f94a..e185d289 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -52099 +64103 Successfully changed project path to: E:/Projects с#/Unity/omega E:/Projects с#/Unity/omega Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 32.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.89 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems @@ -35,74 +35,74 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56572 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56972 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001349 seconds. +Registered in 0.001215 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 33.64 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 28.79 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.596 seconds +- Completed reload, in 1.492 seconds Domain Reload Profiling: - ReloadAssembly (1596ms) - BeginReloadAssembly (41ms) + ReloadAssembly (1492ms) + BeginReloadAssembly (39ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (322ms) - LoadAssemblies (39ms) + EndReloadAssembly (292ms) + LoadAssemblies (37ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (104ms) + SetupTypeCache (90ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (25ms) - SetupLoadedEditorAssemblies (138ms) + RebuildScriptCaches (22ms) + SetupLoadedEditorAssemblies (120ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (34ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (66ms) - ProcessInitializeOnLoadMethodAttributes (22ms) + RefreshPlugins (29ms) + BeforeProcessingInitializeOnLoad (12ms) + ProcessInitializeOnLoadAttributes (56ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001439 seconds. +Registered in 0.001308 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 36.24 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 28.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.865 seconds +- Completed reload, in 1.011 seconds Domain Reload Profiling: - ReloadAssembly (866ms) - BeginReloadAssembly (107ms) + ReloadAssembly (1012ms) + BeginReloadAssembly (91ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - EndReloadAssembly (702ms) - LoadAssemblies (73ms) + CreateAndSetChildDomain (12ms) + EndReloadAssembly (882ms) + LoadAssemblies (334ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (212ms) + SetupTypeCache (176ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (284ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (248ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (36ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (4ms) + RefreshPlugins (29ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (5ms) @@ -110,14 +110,14 @@ 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.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2133 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 96.1 MB. -System memory in use after: 96.1 MB. +Unloading 2139 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 96.2 MB. +System memory in use after: 96.3 MB. -Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2573. -Total: 2.052100 ms (FindLiveObjects: 0.135200 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.810400 ms DeleteObjects: 0.060600 ms) +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2579. +Total: 2.313900 ms (FindLiveObjects: 0.121200 ms CreateObjectMapping: 0.040600 ms MarkObjects: 2.093400 ms DeleteObjects: 0.057700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,260 +131,65 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/Configs - artifactKey: Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs using Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee0ede7d3d1e8288bf6e1c9db58df68f') in 0.003209 seconds - Import took 0.006128 seconds . + path: Assets/Scenes/DataHolder.unity + artifactKey: Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/DataHolder.unity using Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21937ddbb8f0f16c6629ff648516e0ef') in 0.017721 seconds + Import took 0.020045 seconds . ======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 13 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 52.7 MB. -System memory in use after: 52.8 MB. - -Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 2573. -Total: 2.116400 ms (FindLiveObjects: 0.168200 ms CreateObjectMapping: 0.059600 ms MarkObjects: 1.853900 ms DeleteObjects: 0.034000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== Received Import Request. - Time since last request: 18.211120 seconds. - path: Assets/Scripts/Configs/MissionConfig.cs - artifactKey: Guid(c912d3615048b3c4e9c6d0cf942bb4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/MissionConfig.cs using Guid(c912d3615048b3c4e9c6d0cf942bb4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f74660bfc5b8b11700cdf1d8363edc0') in 0.013472 seconds - Import took 0.015948 seconds . + Time since last request: 0.000304 seconds. + path: Assets/Scenes/Inventory.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2167f8e4f035476575215bcc7d1f137c') in 0.001680 seconds + Import took 0.003933 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001238 seconds. +Registered in 0.001365 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.800 seconds +- Completed reload, in 0.780 seconds Domain Reload Profiling: - ReloadAssembly (800ms) - BeginReloadAssembly (90ms) + ReloadAssembly (780ms) + BeginReloadAssembly (83ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (659ms) - LoadAssemblies (74ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (211ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (172ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.2 MB. -System memory in use after: 94.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2575. -Total: 1.987600 ms (FindLiveObjects: 0.122500 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.806600 ms DeleteObjects: 0.015500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001185 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.758 seconds -Domain Reload Profiling: - ReloadAssembly (759ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (621ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.2 MB. -System memory in use after: 94.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2577. -Total: 2.152400 ms (FindLiveObjects: 0.114100 ms CreateObjectMapping: 0.041700 ms MarkObjects: 1.957700 ms DeleteObjects: 0.038200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001320 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.754 seconds -Domain Reload Profiling: - ReloadAssembly (754ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (616ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2579. -Total: 2.172600 ms (FindLiveObjects: 0.144400 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.967400 ms DeleteObjects: 0.013400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001288 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.788 seconds -Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (97ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - EndReloadAssembly (647ms) - LoadAssemblies (73ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (651ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (209ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (235ms) + SetupLoadedEditorAssemblies (251ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (168ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 94.3 MB. System memory in use after: 94.4 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 2.319200 ms (FindLiveObjects: 0.139600 ms CreateObjectMapping: 0.056100 ms MarkObjects: 2.094900 ms DeleteObjects: 0.027800 ms) +Total: 2.098900 ms (FindLiveObjects: 0.139300 ms CreateObjectMapping: 0.050300 ms MarkObjects: 1.893000 ms DeleteObjects: 0.014500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -400,49 +205,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001338 seconds. +Registered in 0.001353 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.775 seconds +- Completed reload, in 0.829 seconds Domain Reload Profiling: - ReloadAssembly (776ms) + ReloadAssembly (829ms) BeginReloadAssembly (92ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (638ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (689ms) LoadAssemblies (64ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) + SetupTypeCache (214ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (242ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (247ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (7ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. -Total: 2.274200 ms (FindLiveObjects: 0.124700 ms CreateObjectMapping: 0.054500 ms MarkObjects: 2.081000 ms DeleteObjects: 0.013200 ms) +Total: 2.156000 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.965000 ms DeleteObjects: 0.014300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -458,34 +263,34 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001253 seconds. +Registered in 0.001287 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.788 seconds +- Completed reload, in 0.738 seconds Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (97ms) + ReloadAssembly (738ms) + BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (647ms) - LoadAssemblies (63ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (611ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) + SetupTypeCache (184ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (248ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (241ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (166ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (156ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -495,12 +300,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. -Total: 2.107200 ms (FindLiveObjects: 0.122600 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.924200 ms DeleteObjects: 0.014100 ms) +Total: 2.250000 ms (FindLiveObjects: 0.125300 ms CreateObjectMapping: 0.042700 ms MarkObjects: 2.066000 ms DeleteObjects: 0.014700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -514,52 +319,268 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 523.186911 seconds. - path: Assets/Scenes/DataHolder.unity - artifactKey: Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/DataHolder.unity using Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a00b664727d34fe3f6de27e382d3473b') in 0.011817 seconds - Import took 0.014202 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001256 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.727 seconds +Domain Reload Profiling: + ReloadAssembly (728ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (601ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -======================================================================== -Received Import Request. - Time since last request: 6.114005 seconds. - path: Assets/Scenes/BattleScene.unity - artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/BattleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e454978d7c62ac975b42d7ba93d4caa') in 0.001523 seconds - Import took 0.003927 seconds . +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. +Total: 1.976800 ms (FindLiveObjects: 0.121800 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.796400 ms DeleteObjects: 0.013300 ms) +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001186 seconds. +Registered in 0.001376 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.707 seconds +- Completed reload, in 0.782 seconds Domain Reload Profiling: - ReloadAssembly (707ms) - BeginReloadAssembly (88ms) + ReloadAssembly (782ms) + BeginReloadAssembly (85ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (579ms) - LoadAssemblies (58ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (654ms) + LoadAssemblies (61ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) + SetupTypeCache (193ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (221ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (265ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. +Total: 2.001900 ms (FindLiveObjects: 0.125300 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.817500 ms DeleteObjects: 0.014600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001242 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.763 seconds +Domain Reload Profiling: + ReloadAssembly (763ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (630ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. +Total: 2.196800 ms (FindLiveObjects: 0.116800 ms CreateObjectMapping: 0.041400 ms MarkObjects: 2.024400 ms DeleteObjects: 0.013500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001982 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.734 seconds +Domain Reload Profiling: + ReloadAssembly (734ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (609ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2593. +Total: 1.952600 ms (FindLiveObjects: 0.122600 ms CreateObjectMapping: 0.051700 ms MarkObjects: 1.764600 ms DeleteObjects: 0.012900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001240 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.756 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (619ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (153ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -567,14 +588,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. -Total: 2.033100 ms (FindLiveObjects: 0.119200 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.858400 ms DeleteObjects: 0.012900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2595. +Total: 2.122700 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.038800 ms MarkObjects: 1.933100 ms DeleteObjects: 0.026900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -590,34 +611,498 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001130 seconds. +Registered in 0.001152 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.752 seconds +- Completed reload, in 0.744 seconds +Domain Reload Profiling: + ReloadAssembly (745ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (614ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. +Total: 2.269200 ms (FindLiveObjects: 0.134700 ms CreateObjectMapping: 0.041300 ms MarkObjects: 2.062200 ms DeleteObjects: 0.030000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001198 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.741 seconds +Domain Reload Profiling: + ReloadAssembly (742ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (609ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. +Total: 1.919100 ms (FindLiveObjects: 0.120300 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.741700 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001803 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.751 seconds Domain Reload Profiling: ReloadAssembly (752ms) - BeginReloadAssembly (91ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (628ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. +Total: 1.974400 ms (FindLiveObjects: 0.133700 ms CreateObjectMapping: 0.045900 ms MarkObjects: 1.779900 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001947 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.770 seconds +Domain Reload Profiling: + ReloadAssembly (771ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (637ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 2.065300 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.877800 ms DeleteObjects: 0.015700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001378 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.765 seconds +Domain Reload Profiling: + ReloadAssembly (766ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (642ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 2.105700 ms (FindLiveObjects: 0.158000 ms CreateObjectMapping: 0.052900 ms MarkObjects: 1.879500 ms DeleteObjects: 0.014300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001326 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.772 seconds +Domain Reload Profiling: + ReloadAssembly (772ms) + BeginReloadAssembly (85ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (618ms) - LoadAssemblies (62ms) + EndReloadAssembly (640ms) + LoadAssemblies (65ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) + SetupTypeCache (188ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (232ms) + SetupLoadedEditorAssemblies (234ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 2.628700 ms (FindLiveObjects: 0.115400 ms CreateObjectMapping: 0.041300 ms MarkObjects: 2.443200 ms DeleteObjects: 0.027700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001207 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.750 seconds +Domain Reload Profiling: + ReloadAssembly (751ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (629ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. +Total: 2.523800 ms (FindLiveObjects: 0.145600 ms CreateObjectMapping: 0.056200 ms MarkObjects: 2.303200 ms DeleteObjects: 0.017500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001157 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.762 seconds +Domain Reload Profiling: + ReloadAssembly (762ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (642ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. +Total: 2.194800 ms (FindLiveObjects: 0.126100 ms CreateObjectMapping: 0.046600 ms MarkObjects: 2.007000 ms DeleteObjects: 0.014000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001162 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.762 seconds +Domain Reload Profiling: + ReloadAssembly (762ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (645ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (154ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -627,12 +1112,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. -Total: 2.075500 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.893900 ms DeleteObjects: 0.014700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. +Total: 2.012300 ms (FindLiveObjects: 0.120600 ms CreateObjectMapping: 0.040100 ms MarkObjects: 1.837600 ms DeleteObjects: 0.013200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -648,7 +1133,123 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001267 seconds. +Registered in 0.001180 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.806 seconds +Domain Reload Profiling: + ReloadAssembly (806ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (678ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2615. +Total: 2.221700 ms (FindLiveObjects: 0.132000 ms CreateObjectMapping: 0.046300 ms MarkObjects: 2.011600 ms DeleteObjects: 0.030400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001328 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.837 seconds +Domain Reload Profiling: + ReloadAssembly (838ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (701ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2617. +Total: 2.012600 ms (FindLiveObjects: 0.121900 ms CreateObjectMapping: 0.042600 ms MarkObjects: 1.813600 ms DeleteObjects: 0.033600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001269 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. @@ -657,25 +1258,25 @@ Mono: successfully reloaded assembly - Completed reload, in 0.792 seconds Domain Reload Profiling: ReloadAssembly (792ms) - BeginReloadAssembly (90ms) + BeginReloadAssembly (84ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (656ms) - LoadAssemblies (65ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (668ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) + SetupTypeCache (180ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (244ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (232ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (161ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (155ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -683,14 +1284,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. -Total: 2.274000 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.084000 ms DeleteObjects: 0.015500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2619. +Total: 2.029100 ms (FindLiveObjects: 0.126100 ms CreateObjectMapping: 0.039200 ms MarkObjects: 1.849100 ms DeleteObjects: 0.013800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -704,76 +1305,268 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 263.561933 seconds. - path: Assets/Scripts/Inventory/AddEquipment.cs - artifactKey: Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/AddEquipment.cs using Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85183e42ed02db61e722fb44cf655fa8') in 0.004782 seconds - Import took 0.008098 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001295 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.786 seconds +Domain Reload Profiling: + ReloadAssembly (787ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (657ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. -======================================================================== -Received Import Request. - Time since last request: 24.648461 seconds. - path: Assets/Scripts/Inventory/EquipmentButton.cs - artifactKey: Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/EquipmentButton.cs using Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bdaaec8279e46af21337654cac514dfc') in 0.001091 seconds - Import took 0.003731 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.094910 seconds. - path: Assets/Scripts/Inventory/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a98876c67cad371df985ddd74743914d') in 0.005741 seconds - Import took 0.008257 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.791811 seconds. - path: Assets/Scripts/Inventory/Inventory.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/Inventory.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56187b84a2d0c1ae9894427ee53b3908') in 0.001042 seconds - Import took 0.003565 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.990371 seconds. - path: Assets/Scripts/Inventory/PlaceEquipment.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42ac4f8240cd51027d83dba59a9145da') in 0.001224 seconds - Import took 0.003781 seconds . +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2621. +Total: 2.013100 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.044700 ms MarkObjects: 1.816000 ms DeleteObjects: 0.024800 ms) +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001146 seconds. +Registered in 0.001274 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.732 seconds +- Completed reload, in 0.822 seconds Domain Reload Profiling: - ReloadAssembly (732ms) + ReloadAssembly (823ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (687ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. +Total: 2.282700 ms (FindLiveObjects: 0.134400 ms CreateObjectMapping: 0.046100 ms MarkObjects: 2.064300 ms DeleteObjects: 0.036800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001334 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.816 seconds +Domain Reload Profiling: + ReloadAssembly (817ms) BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (604ms) - LoadAssemblies (61ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (680ms) + LoadAssemblies (62ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) + SetupTypeCache (187ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (227ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (237ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (152ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. +Total: 1.961100 ms (FindLiveObjects: 0.121600 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.783700 ms DeleteObjects: 0.012000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001209 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.833 seconds +Domain Reload Profiling: + ReloadAssembly (833ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (701ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 2.396400 ms (FindLiveObjects: 0.122000 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.212400 ms DeleteObjects: 0.017100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001874 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.827 seconds +Domain Reload Profiling: + ReloadAssembly (828ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (700ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (193ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (151ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -781,14 +1574,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. -Total: 1.928800 ms (FindLiveObjects: 0.118800 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.753100 ms DeleteObjects: 0.013700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. +Total: 2.359900 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.051200 ms MarkObjects: 2.078200 ms DeleteObjects: 0.029400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -804,49 +1597,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001149 seconds. +Registered in 0.001389 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.723 seconds +- Completed reload, in 0.827 seconds Domain Reload Profiling: - ReloadAssembly (723ms) - BeginReloadAssembly (77ms) + ReloadAssembly (827ms) + BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (607ms) - LoadAssemblies (56ms) + EndReloadAssembly (695ms) + LoadAssemblies (68ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) + SetupTypeCache (194ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (234ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (236ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (156ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (155ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. -Total: 2.173000 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.751600 ms DeleteObjects: 0.261400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2631. +Total: 2.006800 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.824500 ms DeleteObjects: 0.013000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -862,91 +1655,33 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001232 seconds. +Registered in 0.001264 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.767 seconds +- Completed reload, in 0.833 seconds Domain Reload Profiling: - ReloadAssembly (767ms) - BeginReloadAssembly (77ms) + ReloadAssembly (834ms) + BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (648ms) - LoadAssemblies (59ms) + EndReloadAssembly (703ms) + LoadAssemblies (61ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) + SetupTypeCache (188ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (244ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (240ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. -Total: 2.728700 ms (FindLiveObjects: 0.143500 ms CreateObjectMapping: 0.052000 ms MarkObjects: 2.489200 ms DeleteObjects: 0.030500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001224 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.772 seconds -Domain Reload Profiling: - ReloadAssembly (773ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (645ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) + BeforeProcessingInitializeOnLoad (68ms) ProcessInitializeOnLoadAttributes (159ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) @@ -955,14 +1690,1754 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2633. +Total: 2.151900 ms (FindLiveObjects: 0.141000 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.951200 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001184 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.832 seconds +Domain Reload Profiling: + ReloadAssembly (832ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (704ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2635. +Total: 2.194100 ms (FindLiveObjects: 0.126200 ms CreateObjectMapping: 0.045500 ms MarkObjects: 2.008300 ms DeleteObjects: 0.013300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001309 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.826 seconds +Domain Reload Profiling: + ReloadAssembly (826ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (692ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2637. +Total: 2.199200 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.045700 ms MarkObjects: 2.001900 ms DeleteObjects: 0.026000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001227 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.863 seconds +Domain Reload Profiling: + ReloadAssembly (863ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (734ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (258ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2639. +Total: 2.019800 ms (FindLiveObjects: 0.141800 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.804800 ms DeleteObjects: 0.027000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001197 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.836 seconds +Domain Reload Profiling: + ReloadAssembly (837ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (700ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. +Total: 2.500500 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.045700 ms MarkObjects: 2.314400 ms DeleteObjects: 0.014600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001269 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.833 seconds +Domain Reload Profiling: + ReloadAssembly (834ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (713ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (162ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2643. +Total: 2.083900 ms (FindLiveObjects: 0.120900 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.903100 ms DeleteObjects: 0.014200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001141 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.882 seconds +Domain Reload Profiling: + ReloadAssembly (883ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (752ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. +Total: 2.042800 ms (FindLiveObjects: 0.142200 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.837000 ms DeleteObjects: 0.016400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001249 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.875 seconds +Domain Reload Profiling: + ReloadAssembly (875ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (736ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. +Total: 2.382400 ms (FindLiveObjects: 0.141400 ms CreateObjectMapping: 0.044500 ms MarkObjects: 2.169900 ms DeleteObjects: 0.025800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001242 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.882 seconds +Domain Reload Profiling: + ReloadAssembly (882ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (744ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2649. +Total: 2.151600 ms (FindLiveObjects: 0.129000 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.950000 ms DeleteObjects: 0.028900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001227 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.846 seconds +Domain Reload Profiling: + ReloadAssembly (846ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (717ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2651. +Total: 2.165200 ms (FindLiveObjects: 0.119500 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.988100 ms DeleteObjects: 0.013000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001264 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.891 seconds +Domain Reload Profiling: + ReloadAssembly (892ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (763ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2653. +Total: 2.043900 ms (FindLiveObjects: 0.154100 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.819600 ms DeleteObjects: 0.026100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001139 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.830 seconds +Domain Reload Profiling: + ReloadAssembly (830ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (710ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. +Total: 2.163600 ms (FindLiveObjects: 0.130000 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.970000 ms DeleteObjects: 0.016300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001133 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.855 seconds +Domain Reload Profiling: + ReloadAssembly (855ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (722ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2657. +Total: 2.293600 ms (FindLiveObjects: 0.133200 ms CreateObjectMapping: 0.044200 ms MarkObjects: 2.087700 ms DeleteObjects: 0.027200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001205 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.820 seconds +Domain Reload Profiling: + ReloadAssembly (820ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (703ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. +Total: 2.073900 ms (FindLiveObjects: 0.121400 ms CreateObjectMapping: 0.055900 ms MarkObjects: 1.881100 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001476 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.848 seconds +Domain Reload Profiling: + ReloadAssembly (848ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (717ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2661. +Total: 2.004100 ms (FindLiveObjects: 0.120800 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.827800 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001175 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.872 seconds +Domain Reload Profiling: + ReloadAssembly (872ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (739ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2663. +Total: 1.934100 ms (FindLiveObjects: 0.126900 ms CreateObjectMapping: 0.043100 ms MarkObjects: 1.751100 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001136 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.854 seconds +Domain Reload Profiling: + ReloadAssembly (854ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (731ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2665. +Total: 2.055900 ms (FindLiveObjects: 0.127300 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.854800 ms DeleteObjects: 0.027100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001179 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.882 seconds +Domain Reload Profiling: + ReloadAssembly (882ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (751ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2667. +Total: 2.068000 ms (FindLiveObjects: 0.131500 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.866400 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001206 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.878 seconds +Domain Reload Profiling: + ReloadAssembly (878ms) + BeginReloadAssembly (75ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (764ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2669. +Total: 1.976700 ms (FindLiveObjects: 0.125000 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.792900 ms DeleteObjects: 0.012100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001202 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.890 seconds +Domain Reload Profiling: + ReloadAssembly (891ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (767ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2671. +Total: 1.993800 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.808300 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001256 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.856 seconds +Domain Reload Profiling: + ReloadAssembly (856ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (728ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. -Total: 2.360300 ms (FindLiveObjects: 0.137400 ms CreateObjectMapping: 0.049800 ms MarkObjects: 2.153700 ms DeleteObjects: 0.018000 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2673. +Total: 2.226000 ms (FindLiveObjects: 0.118000 ms CreateObjectMapping: 0.043500 ms MarkObjects: 2.038100 ms DeleteObjects: 0.025600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002016 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.903 seconds +Domain Reload Profiling: + ReloadAssembly (904ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (773ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2675. +Total: 2.367900 ms (FindLiveObjects: 0.133500 ms CreateObjectMapping: 0.046000 ms MarkObjects: 2.158400 ms DeleteObjects: 0.028900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001125 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.858 seconds +Domain Reload Profiling: + ReloadAssembly (858ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (731ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2677. +Total: 2.159700 ms (FindLiveObjects: 0.129000 ms CreateObjectMapping: 0.038200 ms MarkObjects: 1.979600 ms DeleteObjects: 0.011900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001220 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.868 seconds +Domain Reload Profiling: + ReloadAssembly (868ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (748ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2679. +Total: 1.960000 ms (FindLiveObjects: 0.125000 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.777600 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001250 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.881 seconds +Domain Reload Profiling: + ReloadAssembly (881ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (749ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2681. +Total: 2.162000 ms (FindLiveObjects: 0.120600 ms CreateObjectMapping: 0.041500 ms MarkObjects: 1.960800 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001188 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.879 seconds +Domain Reload Profiling: + ReloadAssembly (879ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (762ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2683. +Total: 2.248400 ms (FindLiveObjects: 0.122700 ms CreateObjectMapping: 0.044000 ms MarkObjects: 2.067200 ms DeleteObjects: 0.013600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001235 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.870 seconds +Domain Reload Profiling: + ReloadAssembly (870ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (748ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2685. +Total: 2.058900 ms (FindLiveObjects: 0.118800 ms CreateObjectMapping: 0.041400 ms MarkObjects: 1.884100 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001237 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.865 seconds +Domain Reload Profiling: + ReloadAssembly (865ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (743ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (145ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2687. +Total: 1.987800 ms (FindLiveObjects: 0.121800 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.774900 ms DeleteObjects: 0.047900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001327 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.914 seconds +Domain Reload Profiling: + ReloadAssembly (915ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (782ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2689. +Total: 2.133700 ms (FindLiveObjects: 0.136400 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.938000 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001274 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.915 seconds +Domain Reload Profiling: + ReloadAssembly (915ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (780ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2691. +Total: 1.970100 ms (FindLiveObjects: 0.127700 ms CreateObjectMapping: 0.040700 ms MarkObjects: 1.787200 ms DeleteObjects: 0.013600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001206 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.058 seconds +Domain Reload Profiling: + ReloadAssembly (1058ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (930ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2693. +Total: 2.577200 ms (FindLiveObjects: 0.151300 ms CreateObjectMapping: 0.050100 ms MarkObjects: 2.351100 ms DeleteObjects: 0.023800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 52ea4887..9c430ad5 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -57592 +52157 Successfully changed project path to: E:/Projects с#/Unity/omega E:/Projects с#/Unity/omega Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 28.89 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.61 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems @@ -35,73 +35,73 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56144 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56564 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001215 seconds. +Registered in 0.001167 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 33.82 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.20 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.546 seconds +- Completed reload, in 1.678 seconds Domain Reload Profiling: - ReloadAssembly (1546ms) - BeginReloadAssembly (39ms) + ReloadAssembly (1678ms) + BeginReloadAssembly (36ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (321ms) - LoadAssemblies (38ms) + EndReloadAssembly (291ms) + LoadAssemblies (35ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (99ms) + SetupTypeCache (94ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (28ms) - SetupLoadedEditorAssemblies (139ms) + RebuildScriptCaches (23ms) + SetupLoadedEditorAssemblies (117ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (34ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (69ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + RefreshPlugins (30ms) + BeforeProcessingInitializeOnLoad (12ms) + ProcessInitializeOnLoadAttributes (53ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001337 seconds. +Registered in 0.001313 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 29.81 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 28.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.798 seconds +- Completed reload, in 0.727 seconds Domain Reload Profiling: - ReloadAssembly (799ms) - BeginReloadAssembly (113ms) + ReloadAssembly (727ms) + BeginReloadAssembly (91ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - EndReloadAssembly (641ms) - LoadAssemblies (63ms) + CreateAndSetChildDomain (13ms) + EndReloadAssembly (596ms) + LoadAssemblies (57ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) + SetupTypeCache (176ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (265ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (247ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (30ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + RefreshPlugins (29ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -109,15 +109,15 @@ Domain Reload Profiling: Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2139 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 96.2 MB. System memory in use after: 96.3 MB. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2579. -Total: 2.331100 ms (FindLiveObjects: 0.140300 ms CreateObjectMapping: 0.061200 ms MarkObjects: 2.054700 ms DeleteObjects: 0.073500 ms) +Total: 2.061300 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.823600 ms DeleteObjects: 0.072000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -130,101 +130,75 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + path: Assets/Prefabs + artifactKey: Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs using Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4722b95463dd97ba4aa8d14403194875') in 0.003121 seconds + Import took 0.005329 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000175 seconds. + path: Assets/Prefabs/EquipmentButtonPrefab.prefab + artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5391f80be6f5a86b72f50d9165d14be4') in 0.036816 seconds + Import took 0.039315 seconds . + +======================================================================== +Received Import Request. + Time since last request: 12.511565 seconds. + path: Assets/Prefabs/Equipment + artifactKey: Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Equipment using Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '337921d9bb0811b74a3010dd25854eff') in 0.001162 seconds + Import took 0.003507 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.037911 seconds. + path: Assets/Prefabs/Equipment/Breastplate.prefab + artifactKey: Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Equipment/Breastplate.prefab using Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a870f3749b67c92e81c1067a1542cedc') in 0.003085 seconds + Import took 0.005487 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000277 seconds. + path: Assets/Prefabs/Equipment/Helmet.prefab + artifactKey: Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Equipment/Helmet.prefab using Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '202e276b0152f114bd8bb81fd63fca03') in 0.015030 seconds + Import took 0.017270 seconds . + +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001231 seconds. +Registered in 0.001173 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.733 seconds +- Completed reload, in 0.738 seconds Domain Reload Profiling: - ReloadAssembly (735ms) - BeginReloadAssembly (100ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (592ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (151ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 1.902400 ms (FindLiveObjects: 0.118400 ms CreateObjectMapping: 0.038500 ms MarkObjects: 1.731700 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - path: Assets/Scripts/Inventory/Inventory.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/Inventory.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '179de568c5b1776151f849b699828c66') in 0.015719 seconds - Import took 0.018191 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001287 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) + ReloadAssembly (739ms) BeginReloadAssembly (80ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (603ms) - LoadAssemblies (58ms) + EndReloadAssembly (613ms) + LoadAssemblies (59ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) + SetupTypeCache (199ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (239ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (233ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (161ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (153ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -232,14 +206,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. +System memory in use before: 94.3 MB. System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. -Total: 3.598900 ms (FindLiveObjects: 0.248500 ms CreateObjectMapping: 0.045600 ms MarkObjects: 3.269000 ms DeleteObjects: 0.034900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. +Total: 2.095300 ms (FindLiveObjects: 0.118100 ms CreateObjectMapping: 0.038700 ms MarkObjects: 1.912400 ms DeleteObjects: 0.025400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -255,34 +229,34 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001286 seconds. +Registered in 0.001138 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.770 seconds +- Completed reload, in 0.738 seconds Domain Reload Profiling: - ReloadAssembly (771ms) + ReloadAssembly (738ms) BeginReloadAssembly (94ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (633ms) + EndReloadAssembly (600ms) LoadAssemblies (61ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) + SetupTypeCache (177ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (245ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (237ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (160ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -290,14 +264,72 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 2.117000 ms (FindLiveObjects: 0.120700 ms CreateObjectMapping: 0.045100 ms MarkObjects: 1.936500 ms DeleteObjects: 0.013700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001262 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.825 seconds +Domain Reload Profiling: + ReloadAssembly (826ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (680ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (227ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 94.4 MB. System memory in use after: 94.5 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. -Total: 2.019500 ms (FindLiveObjects: 0.127800 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.829500 ms DeleteObjects: 0.013500 ms) +Total: 1.940600 ms (FindLiveObjects: 0.121300 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.760100 ms DeleteObjects: 0.014100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -313,65 +345,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001280 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.778 seconds -Domain Reload Profiling: - ReloadAssembly (778ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (641ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. -Total: 2.002800 ms (FindLiveObjects: 0.133500 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.805100 ms DeleteObjects: 0.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001183 seconds. +Registered in 0.001176 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. @@ -380,1646 +354,40 @@ Mono: successfully reloaded assembly - Completed reload, in 0.754 seconds Domain Reload Profiling: ReloadAssembly (755ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (623ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. -Total: 1.964400 ms (FindLiveObjects: 0.122800 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.779900 ms DeleteObjects: 0.014000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001196 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.787 seconds -Domain Reload Profiling: - ReloadAssembly (787ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (649ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. -Total: 2.391500 ms (FindLiveObjects: 0.138200 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.168000 ms DeleteObjects: 0.036800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001285 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.743 seconds -Domain Reload Profiling: - ReloadAssembly (743ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (615ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2593. -Total: 2.137400 ms (FindLiveObjects: 0.163200 ms CreateObjectMapping: 0.067900 ms MarkObjects: 1.890300 ms DeleteObjects: 0.015100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001147 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.724 seconds -Domain Reload Profiling: - ReloadAssembly (724ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (605ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2595. -Total: 1.896500 ms (FindLiveObjects: 0.119800 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.719200 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 840.988670 seconds. - path: Assets/Scripts/Inventory/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '327e559744096aeabe665250ccd53139') in 0.005185 seconds - Import took 0.008055 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001368 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.783 seconds -Domain Reload Profiling: - ReloadAssembly (784ms) - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (643ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. -Total: 2.260200 ms (FindLiveObjects: 0.127600 ms CreateObjectMapping: 0.043000 ms MarkObjects: 2.075700 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001244 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.774 seconds -Domain Reload Profiling: - ReloadAssembly (774ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (638ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (201ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. -Total: 2.171000 ms (FindLiveObjects: 0.116900 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.995100 ms DeleteObjects: 0.013000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001327 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.757 seconds -Domain Reload Profiling: - ReloadAssembly (758ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (627ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. -Total: 1.981000 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.042600 ms MarkObjects: 1.783800 ms DeleteObjects: 0.024800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001334 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.778 seconds -Domain Reload Profiling: - ReloadAssembly (778ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (640ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. -Total: 2.204500 ms (FindLiveObjects: 0.148700 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.983900 ms DeleteObjects: 0.017800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 158.604231 seconds. - path: Assets/Scripts/Inventory/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cf50b02db944104c3bf864fd10d0aa8') in 0.003371 seconds - Import took 0.005946 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.260765 seconds. - path: Assets/Scripts/Inventory/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3bb0819a1705ef3c7173a00bc5c3b38') in 0.001341 seconds - Import took 0.008530 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001778 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.756 seconds -Domain Reload Profiling: - ReloadAssembly (756ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (628ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. -Total: 1.948900 ms (FindLiveObjects: 0.119000 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.773300 ms DeleteObjects: 0.011900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001276 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.771 seconds -Domain Reload Profiling: - ReloadAssembly (771ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (639ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. -Total: 2.146300 ms (FindLiveObjects: 0.138300 ms CreateObjectMapping: 0.048400 ms MarkObjects: 1.945400 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 95.987720 seconds. - path: Assets/Scripts/Inventory/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e650ac0dee086a9429aec77564c3b7f7') in 0.004276 seconds - Import took 0.007312 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001221 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.780 seconds -Domain Reload Profiling: - ReloadAssembly (780ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (651ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. -Total: 1.942500 ms (FindLiveObjects: 0.130300 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.754600 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001270 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.788 seconds -Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (656ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. -Total: 2.178500 ms (FindLiveObjects: 0.135300 ms CreateObjectMapping: 0.051200 ms MarkObjects: 1.969700 ms DeleteObjects: 0.013400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001316 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.831 seconds -Domain Reload Profiling: - ReloadAssembly (831ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (698ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. -Total: 2.096200 ms (FindLiveObjects: 0.147400 ms CreateObjectMapping: 0.052800 ms MarkObjects: 1.876400 ms DeleteObjects: 0.017900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001222 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.804 seconds -Domain Reload Profiling: - ReloadAssembly (804ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (673ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2615. -Total: 2.278800 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.043800 ms MarkObjects: 2.074800 ms DeleteObjects: 0.031300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001290 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.808 seconds -Domain Reload Profiling: - ReloadAssembly (809ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (680ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2617. -Total: 2.051200 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.872300 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001323 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.838 seconds -Domain Reload Profiling: - ReloadAssembly (839ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (704ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2619. -Total: 2.335600 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.042000 ms MarkObjects: 2.148400 ms DeleteObjects: 0.015700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 342.549566 seconds. - path: Assets/Scripts/Inventory/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Inventory/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af507d44b2260b0be6eeecd1b42ff9f2') in 0.004141 seconds - Import took 0.007102 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001484 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.813 seconds -Domain Reload Profiling: - ReloadAssembly (814ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (680ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2621. -Total: 2.340300 ms (FindLiveObjects: 0.133700 ms CreateObjectMapping: 0.049300 ms MarkObjects: 2.141700 ms DeleteObjects: 0.014100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001300 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.833 seconds -Domain Reload Profiling: - ReloadAssembly (834ms) BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (694ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. -Total: 2.304800 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.046500 ms MarkObjects: 2.115600 ms DeleteObjects: 0.014900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001208 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.811 seconds -Domain Reload Profiling: - ReloadAssembly (811ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (681ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.5 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. -Total: 2.018900 ms (FindLiveObjects: 0.123600 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.839000 ms DeleteObjects: 0.011000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001295 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.817 seconds -Domain Reload Profiling: - ReloadAssembly (818ms) - BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (683ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. -Total: 2.188600 ms (FindLiveObjects: 0.141200 ms CreateObjectMapping: 0.060000 ms MarkObjects: 1.957000 ms DeleteObjects: 0.029400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001160 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.788 seconds -Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (656ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. -Total: 1.976500 ms (FindLiveObjects: 0.126900 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.787000 ms DeleteObjects: 0.013400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001170 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.788 seconds -Domain Reload Profiling: - ReloadAssembly (788ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (662ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2631. -Total: 2.050400 ms (FindLiveObjects: 0.176400 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.802400 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001173 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.804 seconds -Domain Reload Profiling: - ReloadAssembly (804ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (679ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2633. -Total: 2.415100 ms (FindLiveObjects: 0.187200 ms CreateObjectMapping: 0.055900 ms MarkObjects: 2.144100 ms DeleteObjects: 0.026700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001316 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.835 seconds -Domain Reload Profiling: - ReloadAssembly (835ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (709ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2635. -Total: 2.045900 ms (FindLiveObjects: 0.129000 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.858700 ms DeleteObjects: 0.013500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001261 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.817 seconds -Domain Reload Profiling: - ReloadAssembly (817ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (685ms) + EndReloadAssembly (616ms) LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2637. -Total: 2.008600 ms (FindLiveObjects: 0.120600 ms CreateObjectMapping: 0.042000 ms MarkObjects: 1.821200 ms DeleteObjects: 0.024000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001148 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.807 seconds -Domain Reload Profiling: - ReloadAssembly (807ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (685ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) + SetupTypeCache (191ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (232ms) + SetupLoadedEditorAssemblies (233ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (156ms) ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2639. -Total: 2.154800 ms (FindLiveObjects: 0.163500 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.920400 ms DeleteObjects: 0.026000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001220 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.841 seconds -Domain Reload Profiling: - ReloadAssembly (841ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (701ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. -Total: 2.010100 ms (FindLiveObjects: 0.136400 ms CreateObjectMapping: 0.054800 ms MarkObjects: 1.801900 ms DeleteObjects: 0.016100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001118 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.844 seconds -Domain Reload Profiling: - ReloadAssembly (845ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (715ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2643. -Total: 2.340500 ms (FindLiveObjects: 0.148200 ms CreateObjectMapping: 0.073700 ms MarkObjects: 2.083500 ms DeleteObjects: 0.026000 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. +Total: 2.506400 ms (FindLiveObjects: 0.177200 ms CreateObjectMapping: 0.075000 ms MarkObjects: 2.233700 ms DeleteObjects: 0.018900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2038,320 +406,30 @@ Registering precompiled user dll's ... Registered in 0.001223 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.832 seconds +- Completed reload, in 0.767 seconds Domain Reload Profiling: - ReloadAssembly (832ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (705ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. -Total: 2.126100 ms (FindLiveObjects: 0.128500 ms CreateObjectMapping: 0.056100 ms MarkObjects: 1.927200 ms DeleteObjects: 0.013400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001190 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.850 seconds -Domain Reload Profiling: - ReloadAssembly (850ms) - BeginReloadAssembly (84ms) + ReloadAssembly (767ms) + BeginReloadAssembly (87ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (717ms) - LoadAssemblies (70ms) + EndReloadAssembly (635ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) + SetupTypeCache (195ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. -Total: 2.270600 ms (FindLiveObjects: 0.142100 ms CreateObjectMapping: 0.055600 ms MarkObjects: 2.056200 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001676 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.876 seconds -Domain Reload Profiling: - ReloadAssembly (876ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (742ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (254ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (238ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (169ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2649. -Total: 2.047800 ms (FindLiveObjects: 0.156900 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.825600 ms DeleteObjects: 0.016900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001177 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.860 seconds -Domain Reload Profiling: - ReloadAssembly (860ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (723ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2651. -Total: 2.068500 ms (FindLiveObjects: 0.129900 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.879800 ms DeleteObjects: 0.013900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001151 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.844 seconds -Domain Reload Profiling: - ReloadAssembly (844ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (719ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2653. -Total: 1.998200 ms (FindLiveObjects: 0.127200 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.814700 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001266 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.882 seconds -Domain Reload Profiling: - ReloadAssembly (882ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (741ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) + BeforeProcessingInitializeOnLoad (68ms) ProcessInitializeOnLoadAttributes (156ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) @@ -2363,11 +441,11 @@ Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.6 MB. -System memory in use after: 94.8 MB. +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. -Total: 2.529700 ms (FindLiveObjects: 0.124500 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.341900 ms DeleteObjects: 0.016100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. +Total: 2.000700 ms (FindLiveObjects: 0.121200 ms CreateObjectMapping: 0.055000 ms MarkObjects: 1.811100 ms DeleteObjects: 0.012600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2383,34 +461,34 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001152 seconds. +Registered in 0.001169 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.855 seconds +- Completed reload, in 0.702 seconds Domain Reload Profiling: - ReloadAssembly (856ms) - BeginReloadAssembly (92ms) + ReloadAssembly (702ms) + BeginReloadAssembly (81ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (720ms) - LoadAssemblies (59ms) + EndReloadAssembly (579ms) + LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) + SetupTypeCache (174ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (239ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (219ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (157ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (146ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) @@ -2418,14 +496,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2657. -Total: 2.051800 ms (FindLiveObjects: 0.128300 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.843300 ms DeleteObjects: 0.026100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. +Total: 1.945800 ms (FindLiveObjects: 0.120800 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.767800 ms DeleteObjects: 0.012400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2441,339 +519,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002031 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.030 seconds -Domain Reload Profiling: - ReloadAssembly (1031ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (902ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (232ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (59ms) - SetupLoadedEditorAssemblies (274ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. -Total: 2.314100 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.111800 ms DeleteObjects: 0.027300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001150 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.862 seconds -Domain Reload Profiling: - ReloadAssembly (862ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (732ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2661. -Total: 2.145100 ms (FindLiveObjects: 0.123400 ms CreateObjectMapping: 0.045900 ms MarkObjects: 1.961600 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001237 seconds. +Registered in 0.001362 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.895 seconds +- Completed reload, in 0.772 seconds Domain Reload Profiling: - ReloadAssembly (895ms) - BeginReloadAssembly (84ms) + ReloadAssembly (772ms) + BeginReloadAssembly (95ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (767ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2663. -Total: 2.373000 ms (FindLiveObjects: 0.158300 ms CreateObjectMapping: 0.045600 ms MarkObjects: 2.130000 ms DeleteObjects: 0.038100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001188 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.893 seconds -Domain Reload Profiling: - ReloadAssembly (894ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (769ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2665. -Total: 2.096600 ms (FindLiveObjects: 0.158400 ms CreateObjectMapping: 0.041700 ms MarkObjects: 1.882500 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001266 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.879 seconds -Domain Reload Profiling: - ReloadAssembly (879ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (752ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2667. -Total: 2.330600 ms (FindLiveObjects: 0.133500 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.119700 ms DeleteObjects: 0.030200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001278 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.857 seconds -Domain Reload Profiling: - ReloadAssembly (857ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (723ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (635ms) LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) + SetupTypeCache (184ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (231ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (242ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (151ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (162ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2669. -Total: 1.960100 ms (FindLiveObjects: 0.124700 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.780500 ms DeleteObjects: 0.011900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2593. +Total: 2.300600 ms (FindLiveObjects: 0.137200 ms CreateObjectMapping: 0.046600 ms MarkObjects: 2.088500 ms DeleteObjects: 0.027000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2789,107 +577,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001404 seconds. +Registered in 0.001393 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.882 seconds +- Completed reload, in 0.772 seconds Domain Reload Profiling: - ReloadAssembly (882ms) - BeginReloadAssembly (81ms) + ReloadAssembly (772ms) + BeginReloadAssembly (95ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (759ms) - LoadAssemblies (58ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (635ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (187ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (231ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (245ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (151ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (163ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2671. -Total: 1.987300 ms (FindLiveObjects: 0.139000 ms CreateObjectMapping: 0.054600 ms MarkObjects: 1.780400 ms DeleteObjects: 0.012400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001280 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.904 seconds -Domain Reload Profiling: - ReloadAssembly (904ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (773ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2673. -Total: 2.105600 ms (FindLiveObjects: 0.142300 ms CreateObjectMapping: 0.047300 ms MarkObjects: 1.897300 ms DeleteObjects: 0.017100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2595. +Total: 2.017200 ms (FindLiveObjects: 0.121000 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.823400 ms DeleteObjects: 0.027700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2905,556 +635,34 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001399 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.939 seconds -Domain Reload Profiling: - ReloadAssembly (939ms) - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (795ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (248ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (79ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2675. -Total: 2.255000 ms (FindLiveObjects: 0.142900 ms CreateObjectMapping: 0.042900 ms MarkObjects: 2.053100 ms DeleteObjects: 0.015400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001282 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.903 seconds -Domain Reload Profiling: - ReloadAssembly (903ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (780ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2677. -Total: 2.169800 ms (FindLiveObjects: 0.130700 ms CreateObjectMapping: 0.045400 ms MarkObjects: 1.978200 ms DeleteObjects: 0.014300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001204 seconds. +Registered in 0.001299 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.906 seconds +- Completed reload, in 0.734 seconds Domain Reload Profiling: - ReloadAssembly (906ms) + ReloadAssembly (734ms) BeginReloadAssembly (92ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (770ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2679. -Total: 2.651900 ms (FindLiveObjects: 0.159800 ms CreateObjectMapping: 0.052000 ms MarkObjects: 2.420600 ms DeleteObjects: 0.018200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001283 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.925 seconds -Domain Reload Profiling: - ReloadAssembly (925ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (783ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2681. -Total: 1.985200 ms (FindLiveObjects: 0.126300 ms CreateObjectMapping: 0.042000 ms MarkObjects: 1.803700 ms DeleteObjects: 0.012400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001810 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.917 seconds -Domain Reload Profiling: - ReloadAssembly (917ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (795ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2683. -Total: 2.412700 ms (FindLiveObjects: 0.134000 ms CreateObjectMapping: 0.050900 ms MarkObjects: 2.196700 ms DeleteObjects: 0.030000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001549 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.900 seconds -Domain Reload Profiling: - ReloadAssembly (900ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (784ms) + EndReloadAssembly (603ms) LoadAssemblies (57ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2685. -Total: 2.051100 ms (FindLiveObjects: 0.131000 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.859900 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001278 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.919 seconds -Domain Reload Profiling: - ReloadAssembly (919ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (786ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2687. -Total: 2.008400 ms (FindLiveObjects: 0.148900 ms CreateObjectMapping: 0.042400 ms MarkObjects: 1.791500 ms DeleteObjects: 0.024600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001234 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.014 seconds -Domain Reload Profiling: - ReloadAssembly (1014ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (881ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (67ms) - SetupLoadedEditorAssemblies (260ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2689. -Total: 2.714500 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.048400 ms MarkObjects: 2.495600 ms DeleteObjects: 0.034500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001231 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.921 seconds -Domain Reload Profiling: - ReloadAssembly (921ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (787ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) + SetupTypeCache (172ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) + SetupLoadedEditorAssemblies (228ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2691. -Total: 2.264300 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.083000 ms DeleteObjects: 0.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001175 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.911 seconds -Domain Reload Profiling: - ReloadAssembly (912ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (790ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (157ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (153ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -3465,69 +673,11 @@ Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2693. -Total: 2.449900 ms (FindLiveObjects: 0.167800 ms CreateObjectMapping: 0.054800 ms MarkObjects: 2.207700 ms DeleteObjects: 0.018000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001330 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.987 seconds -Domain Reload Profiling: - ReloadAssembly (987ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (853ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (249ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2695. -Total: 2.065300 ms (FindLiveObjects: 0.156300 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.842400 ms DeleteObjects: 0.013700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. +Total: 1.941800 ms (FindLiveObjects: 0.120300 ms CreateObjectMapping: 0.039100 ms MarkObjects: 1.768600 ms DeleteObjects: 0.012900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3542,11 +692,11 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 2026.656468 seconds. - path: Assets/Scenes/Inventory.unity - artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ddc2bf21d9cbaf91a305c68f17fbbca') in 0.025532 seconds - Import took 0.028064 seconds . + Time since last request: 1024.579460 seconds. + path: Assets/Scripts/Not used/BaseEnemyTurn.cs + artifactKey: Guid(047bd205dd84f1549a382c7169ea0369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Not used/BaseEnemyTurn.cs using Guid(047bd205dd84f1549a382c7169ea0369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df338014a70ca539e495920153a67400') in 0.005410 seconds + Import took 0.007933 seconds . ======================================================================== Received Prepare @@ -3557,43 +707,43 @@ Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.954 seconds +- Completed reload, in 0.758 seconds Domain Reload Profiling: - ReloadAssembly (954ms) - BeginReloadAssembly (82ms) + ReloadAssembly (758ms) + BeginReloadAssembly (92ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (828ms) - LoadAssemblies (62ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (622ms) + LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) + SetupTypeCache (183ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (236ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (227ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (5ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2697. -Total: 2.246400 ms (FindLiveObjects: 0.131800 ms CreateObjectMapping: 0.046100 ms MarkObjects: 2.042200 ms DeleteObjects: 0.025500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. +Total: 2.359500 ms (FindLiveObjects: 0.236000 ms CreateObjectMapping: 0.088300 ms MarkObjects: 2.017600 ms DeleteObjects: 0.016500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3609,34 +759,92 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001284 seconds. +Registered in 0.001205 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.981 seconds +- Completed reload, in 0.759 seconds Domain Reload Profiling: - ReloadAssembly (982ms) - BeginReloadAssembly (91ms) + ReloadAssembly (759ms) + BeginReloadAssembly (80ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (847ms) - LoadAssemblies (63ms) + EndReloadAssembly (638ms) + LoadAssemblies (57ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) + SetupTypeCache (176ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (245ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (256ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (163ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. +Total: 2.259700 ms (FindLiveObjects: 0.140100 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.045300 ms DeleteObjects: 0.027300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002181 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.766 seconds +Domain Reload Profiling: + ReloadAssembly (767ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (645ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (166ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -3647,11 +855,11 @@ Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2699. -Total: 2.530900 ms (FindLiveObjects: 0.138600 ms CreateObjectMapping: 0.048700 ms MarkObjects: 2.326100 ms DeleteObjects: 0.016500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 2.052300 ms (FindLiveObjects: 0.126300 ms CreateObjectMapping: 0.041400 ms MarkObjects: 1.868200 ms DeleteObjects: 0.015400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3667,34 +875,92 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001419 seconds. +Registered in 0.001303 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.011 seconds +- Completed reload, in 0.743 seconds Domain Reload Profiling: - ReloadAssembly (1011ms) - BeginReloadAssembly (95ms) + ReloadAssembly (744ms) + BeginReloadAssembly (84ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (870ms) - LoadAssemblies (64ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (619ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) + SetupTypeCache (178ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (251ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (231ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (167ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 2.192900 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.982900 ms DeleteObjects: 0.015700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001213 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (788ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (654ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (158ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -3702,14 +968,80 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2701. -Total: 2.537000 ms (FindLiveObjects: 0.165000 ms CreateObjectMapping: 0.067000 ms MarkObjects: 2.288400 ms DeleteObjects: 0.015500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 2.432000 ms (FindLiveObjects: 0.160800 ms CreateObjectMapping: 0.052600 ms MarkObjects: 2.190000 ms DeleteObjects: 0.027600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 271.158658 seconds. + path: Assets/Scenes/BattleScene.unity + artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/BattleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6857b5372d73d91ecc94e1496a34d96e') in 0.011301 seconds + Import took 0.013824 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001247 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.742 seconds +Domain Reload Profiling: + ReloadAssembly (743ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (616ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. +Total: 2.042300 ms (FindLiveObjects: 0.126600 ms CreateObjectMapping: 0.043600 ms MarkObjects: 1.846600 ms DeleteObjects: 0.024700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3725,33 +1057,207 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001861 seconds. +Registered in 0.001256 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.971 seconds +- Completed reload, in 0.830 seconds Domain Reload Profiling: - ReloadAssembly (971ms) - BeginReloadAssembly (96ms) + ReloadAssembly (830ms) + BeginReloadAssembly (92ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (830ms) - LoadAssemblies (62ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (692ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (192ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. +Total: 2.106700 ms (FindLiveObjects: 0.125500 ms CreateObjectMapping: 0.040500 ms MarkObjects: 1.924600 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001476 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.780 seconds +Domain Reload Profiling: + ReloadAssembly (780ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (651ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. +Total: 2.071900 ms (FindLiveObjects: 0.126600 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.874700 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001169 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.756 seconds +Domain Reload Profiling: + ReloadAssembly (757ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (623ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2615. +Total: 1.980800 ms (FindLiveObjects: 0.131600 ms CreateObjectMapping: 0.050500 ms MarkObjects: 1.785300 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001105 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (788ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (656ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) SetupLoadedEditorAssemblies (239ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) + BeforeProcessingInitializeOnLoad (69ms) ProcessInitializeOnLoadAttributes (157ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) @@ -3763,11 +1269,11 @@ Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2703. -Total: 2.454800 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.046800 ms MarkObjects: 2.257700 ms DeleteObjects: 0.021400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2617. +Total: 1.929800 ms (FindLiveObjects: 0.124200 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.746100 ms DeleteObjects: 0.012100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3783,49 +1289,165 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001194 seconds. +Registered in 0.001212 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.926 seconds +- Completed reload, in 0.768 seconds Domain Reload Profiling: - ReloadAssembly (926ms) - BeginReloadAssembly (90ms) + ReloadAssembly (768ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (641ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2619. +Total: 2.025600 ms (FindLiveObjects: 0.130000 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.826500 ms DeleteObjects: 0.025300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001243 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.752 seconds +Domain Reload Profiling: + ReloadAssembly (753ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (628ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2621. +Total: 1.954400 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.772900 ms DeleteObjects: 0.012900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001310 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.805 seconds +Domain Reload Profiling: + ReloadAssembly (805ms) + BeginReloadAssembly (85ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (23ms) - EndReloadAssembly (788ms) - LoadAssemblies (59ms) + EndReloadAssembly (678ms) + LoadAssemblies (57ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) + SetupTypeCache (181ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (234ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (246ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (5ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2705. -Total: 2.097500 ms (FindLiveObjects: 0.133900 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.895400 ms DeleteObjects: 0.024500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. +Total: 2.100200 ms (FindLiveObjects: 0.170100 ms CreateObjectMapping: 0.046900 ms MarkObjects: 1.867100 ms DeleteObjects: 0.014800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3841,34 +1463,266 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001429 seconds. +Registered in 0.001239 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.041 seconds +- Completed reload, in 0.808 seconds Domain Reload Profiling: - ReloadAssembly (1041ms) - BeginReloadAssembly (92ms) + ReloadAssembly (809ms) + BeginReloadAssembly (91ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - EndReloadAssembly (904ms) - LoadAssemblies (65ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (672ms) + LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) + SetupTypeCache (185ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (250ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. +Total: 2.382300 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.044300 ms MarkObjects: 2.191500 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001181 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.829 seconds +Domain Reload Profiling: + ReloadAssembly (829ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (703ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (201ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 2.786000 ms (FindLiveObjects: 0.188200 ms CreateObjectMapping: 0.064200 ms MarkObjects: 2.505300 ms DeleteObjects: 0.027000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001368 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.809 seconds +Domain Reload Profiling: + ReloadAssembly (809ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (679ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (247ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. +Total: 2.153600 ms (FindLiveObjects: 0.161700 ms CreateObjectMapping: 0.051300 ms MarkObjects: 1.914200 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001195 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.799 seconds +Domain Reload Profiling: + ReloadAssembly (799ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (680ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2631. +Total: 2.377600 ms (FindLiveObjects: 0.124100 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.192800 ms DeleteObjects: 0.013700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001189 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.844 seconds +Domain Reload Profiling: + ReloadAssembly (844ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (711ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (156ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -3876,14 +1730,72 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2707. -Total: 2.244800 ms (FindLiveObjects: 0.169700 ms CreateObjectMapping: 0.052600 ms MarkObjects: 2.007000 ms DeleteObjects: 0.014400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2633. +Total: 1.991300 ms (FindLiveObjects: 0.123300 ms CreateObjectMapping: 0.040800 ms MarkObjects: 1.801000 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001121 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.809 seconds +Domain Reload Profiling: + ReloadAssembly (809ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (687ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2635. +Total: 2.104600 ms (FindLiveObjects: 0.137000 ms CreateObjectMapping: 0.048400 ms MarkObjects: 1.903600 ms DeleteObjects: 0.014400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/Logs/shadercompiler-UnityShaderCompiler.exe11.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe11.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe11.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe4.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe5.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe7.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/Logs/shadercompiler-UnityShaderCompiler.exe8.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe8.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe8.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index f343a4ff..3f958854 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -9,16 +9,16 @@ EditorUserSettings: value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d flags: 0 RecentlyUsedScenePath-1: - value: 22424703114646680e0b0227036c7d110203142f1f2b233e2867083debf42d + value: 22424703114646680e0b0227036c7b1102163025202c2322633c133af6f9 flags: 0 RecentlyUsedScenePath-2: - value: 22424703114646680e0b0227036c7b1102163025202c2322633c133af6f9 + value: 22424703114646680e0b0227036c761e0012163e233a3f7e38271427fb flags: 0 RecentlyUsedScenePath-3: value: 22424703114646680e0b0227036c72111f19352f223d68252320092a flags: 0 RecentlyUsedScenePath-4: - value: 22424703114646680e0b0227036c761e0012163e233a3f7e38271427fb + value: 22424703114646680e0b0227036c7d110203142f1f2b233e2867083debf42d flags: 0 vcSharedLogLevel: value: 0d5e400f0650 diff --git a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 008af472..0fec2376 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ