diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index 9d43d93b..6bc10fc0 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/Scripts/Card.cs b/Assets/Scripts/Card.cs index 8761446a..9e109ca6 100644 --- a/Assets/Scripts/Card.cs +++ b/Assets/Scripts/Card.cs @@ -7,7 +7,7 @@ using UnityEngine.UI; public class Card : MonoBehaviour { - [SerializeField] private CardConfig cardConfig; + [SerializeField] public CardConfig cardConfig; private CardCharacteristics _card; diff --git a/Assets/Scripts/Configs/CardConfig.cs b/Assets/Scripts/Configs/CardConfig.cs index 7e45e20e..627ea4c5 100644 --- a/Assets/Scripts/Configs/CardConfig.cs +++ b/Assets/Scripts/Configs/CardConfig.cs @@ -28,6 +28,21 @@ public enum AttackCount : int }; +public enum CardLevel : int +{ + zero, + one, + two, + three + +}; + +public enum Characteristic +{ + quantityStamina = 7, + quantityHealth = 8 +}; + [Serializable] public class CardCharacteristics @@ -53,4 +68,20 @@ public class CardCharacteristics [Header("Mass Damage")] public AttackCount enemyCount = AttackCount.none; -} \ No newline at end of file + + [Header("Level")] + public CardLevel level = CardLevel.zero; + + [Header("Cost")] + [Header("SecondLevelCharacteristic")] + public int quantityStamina2; + public int quantityHealth2; + [Space] + [Header("Damage")] + public int damage2; + [Space] + [Header("Effects")] + public int addHealth2; + public int addStamina2; + public int addArmor2; +} diff --git a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset index 78f28bf8..bc929932 100644 --- a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset +++ b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset @@ -20,6 +20,14 @@ MonoBehaviour: quantityStamina: 0 quantityHealth: 0 damage: 0 - healing: 0 - addStamina: 1 - armor: 0 + addHealth: 0 + addStamina: 2 + addArmor: 0 + enemyCount: 0 + level: 1 + quantityStamina2: 0 + quantityHealth2: 0 + damage2: 0 + addHealth2: 0 + addStamina2: 2 + addArmor2: 0 diff --git a/Assets/Scripts/DeckManager.cs b/Assets/Scripts/DeckManager.cs index 01628dff..0b374678 100644 --- a/Assets/Scripts/DeckManager.cs +++ b/Assets/Scripts/DeckManager.cs @@ -52,6 +52,21 @@ public class DeckManager : MonoBehaviour } } + public void CheckLevel(GameObject _card) + { + // Мне за это стыдно, но в голову иных варинтов не приходит + var _cardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristics; + if (((int)_cardCharacteristics.level) == 1) + { + _cardCharacteristics.quantityStamina = _cardCharacteristics.quantityStamina2; + _cardCharacteristics.quantityHealth = _cardCharacteristics.quantityHealth2; + _cardCharacteristics.damage = _cardCharacteristics.damage2; + _cardCharacteristics.addHealth = _cardCharacteristics.addHealth2; + _cardCharacteristics.addStamina = _cardCharacteristics.addStamina2; + _cardCharacteristics.addArmor = _cardCharacteristics.addArmor2; + } + } + public void AddCard(GameObject card) { deck.Add(card); @@ -70,7 +85,6 @@ public class DeckManager : MonoBehaviour } public void HandingOut() { - for (int i = 0; i < 5; i++) { if (currentDeck.Count > 0) @@ -82,6 +96,7 @@ public class DeckManager : MonoBehaviour GameObject _card = Instantiate(currentDeck[_number], cardsPosition[i]); _card.GetComponent().number = i; CardInTable.Add(_card); + CheckLevel(_card); currentDeck.RemoveAt(_number); } } diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 9704e544..716b6a8c 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index c11ed73e..a4ec7bb1 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -48,7 +48,7 @@ MonoBehaviour: m_MinSize: {x: 679, y: 492} m_MaxSize: {x: 14002, y: 14042} vertical: 0 - controlID: 89 + controlID: 124 --- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 @@ -68,8 +68,8 @@ MonoBehaviour: y: 0 width: 389 height: 947 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 14} m_Panes: - {fileID: 14} @@ -226,7 +226,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 492} m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 90 + controlID: 58 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -251,7 +251,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 221} m_MaxSize: {x: 8003, y: 4021} vertical: 0 - controlID: 91 + controlID: 59 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -343,22 +343,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Inventory + - Assets/Scripts/Configs/CardConfigs m_Globs: [] m_OriginalText: m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets/Inventory + - Assets/Scripts/Configs/CardConfigs m_LastFoldersGridSize: -1 m_LastProjectPath: "E:\\Projects \u0441#\\Unity\\omega" m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: 0c470000 - m_LastClickedID: 18188 - m_ExpandedIDs: 000000000647000000ca9a3b + scrollPos: {x: 0, y: 3} + m_SelectedIDs: 32470000 + m_LastClickedID: 18226 + m_ExpandedIDs: 000000000647000014470000184700002447000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -507,9 +507,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: a6150000 + m_SelectedIDs: 3e470000 m_LastClickedID: 0 - m_ExpandedIDs: + m_ExpandedIDs: caeeffff96f5ffff98600000c0600000ea600000f8600000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index f672d9be..033a831c 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index bca5e205..a9b2e275 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 2e4ed291..e1c2f22b 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 b8eab7df..ac7c5baa 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 39b04671..283b95f8 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index 91967a54..df207321 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -63337 +60271 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 33.66 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.80 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:56460 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56232 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.001286 seconds. +Registered in 0.001203 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 28.74 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 35.72 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.456 seconds +- Completed reload, in 1.589 seconds Domain Reload Profiling: - ReloadAssembly (1456ms) - BeginReloadAssembly (36ms) + ReloadAssembly (1589ms) + BeginReloadAssembly (38ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (283ms) - LoadAssemblies (34ms) + EndReloadAssembly (316ms) + LoadAssemblies (37ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (96ms) + SetupTypeCache (106ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (24ms) - SetupLoadedEditorAssemblies (116ms) + RebuildScriptCaches (25ms) + SetupLoadedEditorAssemblies (132ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (29ms) - BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (53ms) - ProcessInitializeOnLoadMethodAttributes (19ms) + RefreshPlugins (36ms) + BeforeProcessingInitializeOnLoad (13ms) + ProcessInitializeOnLoadAttributes (60ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001186 seconds. +Registered in 0.001212 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 28.65 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 36.93 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.725 seconds +- Completed reload, in 0.872 seconds Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (91ms) + ReloadAssembly (873ms) + BeginReloadAssembly (100ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (13ms) - EndReloadAssembly (595ms) - LoadAssemblies (57ms) + CreateAndSetChildDomain (14ms) + EndReloadAssembly (731ms) + LoadAssemblies (87ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) + SetupTypeCache (207ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (249ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (291ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (29ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + RefreshPlugins (37ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -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.37 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 2140 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 96.3 MB. System memory in use after: 96.4 MB. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 2.422400 ms (FindLiveObjects: 0.140200 ms CreateObjectMapping: 0.038500 ms MarkObjects: 2.181400 ms DeleteObjects: 0.061200 ms) +Total: 2.071200 ms (FindLiveObjects: 0.133300 ms CreateObjectMapping: 0.050300 ms MarkObjects: 1.809000 ms DeleteObjects: 0.077800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,3499 +131,35 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7159093f436ccf37da44b2b4e96c07a6') in 0.063593 seconds - Import took 0.066545 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.846422 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1832186a3e9d02f9f8f2fe0803b21dae') in 0.009012 seconds - Import took 0.023996 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.403450 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f08eb64496587517ce9ca6a33a340b53') in 0.007860 seconds - Import took 0.010655 seconds . - -======================================================================== -Received Import Request. - Time since last request: 17.812812 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32e4f2b133604598a746ceb169cc6c9f') in 0.008599 seconds - Import took 0.011741 seconds . - -======================================================================== -Received Import Request. - Time since last request: 33.304630 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f15fbcfc4f6906762becc261f1d989a') in 0.008784 seconds - Import took 0.012011 seconds . - -======================================================================== -Received Import Request. - Time since last request: 38.008593 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '179c8f1c58220c8eaedfcdad663fdf25') in 0.008122 seconds - Import took 0.010984 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.638060 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65e37310805097df343491dd58ddcfdf') in 0.007513 seconds - Import took 0.010183 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.910827 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de1598c59ac345337d6a2bfcdf5931c1') in 0.008682 seconds - Import took 0.011776 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.907937 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ff2aee46cb2b5855954e8f6e53ae55c') in 0.008353 seconds - Import took 0.011010 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.419940 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8686c2232f722421bdac015a1397642') in 0.008485 seconds - Import took 0.011553 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.858922 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a78a4ac262ce02909640b1064c2cccd6') in 0.015501 seconds - Import took 0.018341 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.465380 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b829f90eefc8cb3f409de16a46a7de36') in 0.008105 seconds - Import took 0.011118 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.856533 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d6bcc9927524a636972924f4cbab28a') in 0.008582 seconds - Import took 0.011485 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.625756 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53de22b409a5fbdfd8bcf92273a6d82f') in 0.007614 seconds - Import took 0.010331 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.903644 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e2ed1ea4c39036194fcf812e3f5745a') in 0.008471 seconds - Import took 0.011529 seconds . - -======================================================================== -Received Import Request. - Time since last request: 36.453193 seconds. - path: Assets/Inventory/Inventory.cs - artifactKey: Guid(27f61c9ebd2814b42a0270c39a5dc3fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/Inventory.cs using Guid(27f61c9ebd2814b42a0270c39a5dc3fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '459c4a80315fb724f45a3acb541ac6b1') in 0.002467 seconds - Import took 0.004927 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.752916 seconds. - path: Assets/Inventory/PlaceEquipment.cs - artifactKey: Guid(dd2aca442b16c9048a1c4c55446d191b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/PlaceEquipment.cs using Guid(dd2aca442b16c9048a1c4c55446d191b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe592cf0e1c8f1c1486a0a2ce8933ff1') in 0.000809 seconds - Import took 0.002998 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.624538 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd92c5d9661f66c165664678db5642bb') in 0.000863 seconds - Import took 0.003027 seconds . - -======================================================================== -Received Import Request. - Time since last request: 63.767200 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81cda30a9f693ff02eed273d01351f22') in 0.001413 seconds - Import took 0.004351 seconds . + path: Assets/Inventory/AddEquipment.cs + artifactKey: Guid(ceeb808f1ef29454999c8fd188abc43c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Inventory/AddEquipment.cs using Guid(ceeb808f1ef29454999c8fd188abc43c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd4c410f399a06af7d14671192ebfbad') in 0.016022 seconds + Import took 0.018449 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001579 seconds. +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. +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.699 seconds +- Completed reload, in 0.703 seconds Domain Reload Profiling: - ReloadAssembly (700ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (562ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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 16 unused Assets to reduce memory usage. Loaded Objects now: 2583. -Total: 1.917100 ms (FindLiveObjects: 0.117400 ms CreateObjectMapping: 0.041300 ms MarkObjects: 1.739200 ms DeleteObjects: 0.018500 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: 727.078298 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b253a9e69cbd5286ebd544a34faf17dc') in 0.004992 seconds - Import took 0.007992 seconds . - -======================================================================== -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.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.689 seconds -Domain Reload Profiling: - ReloadAssembly (690ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (569ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2585. -Total: 2.321900 ms (FindLiveObjects: 0.122100 ms CreateObjectMapping: 0.044100 ms MarkObjects: 2.140500 ms DeleteObjects: 0.014400 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: 24.239917 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '832d6d0a26e1e53ad2e299e61351a5ec') in 0.003780 seconds - Import took 0.006255 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -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. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 seconds -Domain Reload Profiling: - ReloadAssembly (701ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (577ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2587. -Total: 1.826800 ms (FindLiveObjects: 0.116600 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.653400 ms DeleteObjects: 0.011200 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: 15.141828 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '335b90efb01b75a59f5da391adde015f') in 0.003396 seconds - Import took 0.006058 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001314 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.718 seconds -Domain Reload Profiling: - ReloadAssembly (718ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (586ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2589. -Total: 1.930600 ms (FindLiveObjects: 0.123700 ms CreateObjectMapping: 0.046700 ms MarkObjects: 1.746500 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001307 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.682 seconds -Domain Reload Profiling: - ReloadAssembly (682ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (558ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2591. -Total: 2.022300 ms (FindLiveObjects: 0.152600 ms CreateObjectMapping: 0.061100 ms MarkObjects: 1.794100 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 73.988674 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dd539db7102037b6b5c7356a7ebb12f') in 0.002957 seconds - Import took 0.005087 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.480508 seconds. - path: Assets/Inventory/EquipmentInfo.cs - artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abd3e92cfb70b84749c4ef8a8ac59a9e') in 0.000924 seconds - Import took 0.003631 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001165 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.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) + ReloadAssembly (704ms) BeginReloadAssembly (87ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (598ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - 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 -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2593. -Total: 2.188900 ms (FindLiveObjects: 0.243900 ms CreateObjectMapping: 0.051000 ms MarkObjects: 1.875100 ms DeleteObjects: 0.017300 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 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.660 seconds -Domain Reload Profiling: - ReloadAssembly (660ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (539ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (166ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2595. -Total: 1.916000 ms (FindLiveObjects: 0.120300 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.738400 ms DeleteObjects: 0.012500 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001349 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.763 seconds -Domain Reload Profiling: - ReloadAssembly (763ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (630ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (249ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2597. -Total: 2.087600 ms (FindLiveObjects: 0.131100 ms CreateObjectMapping: 0.046200 ms MarkObjects: 1.894700 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001165 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.759 seconds -Domain Reload Profiling: - ReloadAssembly (760ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (628ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (246ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2599. -Total: 2.154000 ms (FindLiveObjects: 0.119600 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.972100 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: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.55 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 (766ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (28ms) - EndReloadAssembly (625ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2601. -Total: 2.311100 ms (FindLiveObjects: 0.119200 ms CreateObjectMapping: 0.041700 ms MarkObjects: 2.134600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001273 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.749 seconds -Domain Reload Profiling: - ReloadAssembly (749ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (611ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2603. -Total: 2.033600 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.051200 ms MarkObjects: 1.832900 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001311 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.714 seconds -Domain Reload Profiling: - ReloadAssembly (714ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (583ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2605. -Total: 2.124300 ms (FindLiveObjects: 0.133400 ms CreateObjectMapping: 0.044600 ms MarkObjects: 1.930500 ms DeleteObjects: 0.015000 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 Prepare -Registering precompiled user dll's ... -Registered in 0.004614 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.737 seconds -Domain Reload Profiling: - ReloadAssembly (737ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (607ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (253ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (166ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2607. -Total: 2.632900 ms (FindLiveObjects: 0.127900 ms CreateObjectMapping: 0.046400 ms MarkObjects: 2.438000 ms DeleteObjects: 0.019100 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 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.756 seconds -Domain Reload Profiling: - ReloadAssembly (757ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (621ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2609. -Total: 2.102100 ms (FindLiveObjects: 0.131900 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.903400 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: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.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.732 seconds -Domain Reload Profiling: - ReloadAssembly (732ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (602ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2611. -Total: 1.935600 ms (FindLiveObjects: 0.124600 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.752800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001882 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.738 seconds -Domain Reload Profiling: - ReloadAssembly (738ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (591ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2613. -Total: 2.073400 ms (FindLiveObjects: 0.148400 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.860800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001301 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.728 seconds -Domain Reload Profiling: - ReloadAssembly (729ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (585ms) - LoadAssemblies (60ms) + EndReloadAssembly (574ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (179ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2615. -Total: 2.120600 ms (FindLiveObjects: 0.118100 ms CreateObjectMapping: 0.044700 ms MarkObjects: 1.929300 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: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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.739 seconds -Domain Reload Profiling: - ReloadAssembly (740ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (607ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2617. -Total: 1.898600 ms (FindLiveObjects: 0.130700 ms CreateObjectMapping: 0.058100 ms MarkObjects: 1.697300 ms DeleteObjects: 0.011700 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 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.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.709 seconds -Domain Reload Profiling: - ReloadAssembly (709ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (589ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2619. -Total: 1.996700 ms (FindLiveObjects: 0.131600 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.805700 ms DeleteObjects: 0.014800 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 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.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.746 seconds -Domain Reload Profiling: - ReloadAssembly (747ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (602ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2621. -Total: 1.978300 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.792500 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: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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.736 seconds -Domain Reload Profiling: - ReloadAssembly (736ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (609ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2623. -Total: 2.083000 ms (FindLiveObjects: 0.127900 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.889800 ms DeleteObjects: 0.017400 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 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.36 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 (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (631ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2625. -Total: 1.909200 ms (FindLiveObjects: 0.122100 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.728300 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: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.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.698 seconds -Domain Reload Profiling: - ReloadAssembly (698ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (568ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2627. -Total: 1.983400 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.798000 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001079 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.704 seconds -Domain Reload Profiling: - ReloadAssembly (704ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (574ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2629. -Total: 2.171100 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.047700 ms MarkObjects: 1.974100 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1547.673792 seconds. - path: Assets/Inventory/SpawnButton.cs - artifactKey: Guid(87829a5c46abc5e49b26e4893f72c61c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/SpawnButton.cs using Guid(87829a5c46abc5e49b26e4893f72c61c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10783e2f44616a63627748a63ff68c9a') in 0.003366 seconds - Import took 0.005789 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001180 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.717 seconds -Domain Reload Profiling: - ReloadAssembly (717ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (585ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2631. -Total: 1.969700 ms (FindLiveObjects: 0.123300 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.788900 ms DeleteObjects: 0.013800 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001187 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.692 seconds -Domain Reload Profiling: - ReloadAssembly (693ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (569ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2633. -Total: 2.288100 ms (FindLiveObjects: 0.120700 ms CreateObjectMapping: 0.045700 ms MarkObjects: 2.094800 ms DeleteObjects: 0.026300 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001257 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.712 seconds -Domain Reload Profiling: - ReloadAssembly (712ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (581ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2635. -Total: 1.968700 ms (FindLiveObjects: 0.133000 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.779300 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001351 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.764 seconds -Domain Reload Profiling: - ReloadAssembly (764ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (624ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (246ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2637. -Total: 2.475600 ms (FindLiveObjects: 0.168600 ms CreateObjectMapping: 0.059600 ms MarkObjects: 2.214200 ms DeleteObjects: 0.032000 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001434 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.706 seconds -Domain Reload Profiling: - ReloadAssembly (707ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (578ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 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: 2639. -Total: 2.017100 ms (FindLiveObjects: 0.136000 ms CreateObjectMapping: 0.050500 ms MarkObjects: 1.815900 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: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.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.702 seconds -Domain Reload Profiling: - ReloadAssembly (703ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (572ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. -Total: 1.977000 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.796600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001296 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.695 seconds -Domain Reload Profiling: - ReloadAssembly (696ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (568ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2643. -Total: 2.420300 ms (FindLiveObjects: 0.130200 ms CreateObjectMapping: 0.047700 ms MarkObjects: 2.223700 ms DeleteObjects: 0.017000 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001144 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.656 seconds -Domain Reload Profiling: - ReloadAssembly (656ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (531ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (165ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. -Total: 1.990200 ms (FindLiveObjects: 0.128800 ms CreateObjectMapping: 0.056400 ms MarkObjects: 1.790800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001159 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.712 seconds -Domain Reload Profiling: - ReloadAssembly (713ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (591ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. -Total: 2.128600 ms (FindLiveObjects: 0.129100 ms CreateObjectMapping: 0.049200 ms MarkObjects: 1.923900 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001187 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.728 seconds -Domain Reload Profiling: - ReloadAssembly (728ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (600ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2649. -Total: 2.126800 ms (FindLiveObjects: 0.143600 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.922200 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: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.35 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 (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (626ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (267ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (183ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2651. -Total: 2.035200 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.827700 ms DeleteObjects: 0.015200 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001230 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.688 seconds -Domain Reload Profiling: - ReloadAssembly (688ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (559ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (223ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2653. -Total: 2.233700 ms (FindLiveObjects: 0.148000 ms CreateObjectMapping: 0.048800 ms MarkObjects: 2.022000 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: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.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.700 seconds -Domain Reload Profiling: - ReloadAssembly (700ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (565ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. -Total: 2.006400 ms (FindLiveObjects: 0.128600 ms CreateObjectMapping: 0.042400 ms MarkObjects: 1.823100 ms DeleteObjects: 0.011500 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001191 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.679 seconds -Domain Reload Profiling: - ReloadAssembly (679ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (556ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2657. -Total: 2.076900 ms (FindLiveObjects: 0.140900 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.871900 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: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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.726 seconds -Domain Reload Profiling: - ReloadAssembly (726ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (606ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. -Total: 1.957400 ms (FindLiveObjects: 0.139200 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.756400 ms DeleteObjects: 0.015200 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001650 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.678 seconds -Domain Reload Profiling: - ReloadAssembly (679ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (554ms) - LoadAssemblies (52ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2661. -Total: 2.017700 ms (FindLiveObjects: 0.128300 ms CreateObjectMapping: 0.046400 ms MarkObjects: 1.815700 ms DeleteObjects: 0.026300 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001128 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.673 seconds -Domain Reload Profiling: - ReloadAssembly (673ms) - BeginReloadAssembly (74ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (555ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2663. -Total: 2.132100 ms (FindLiveObjects: 0.142400 ms CreateObjectMapping: 0.041100 ms MarkObjects: 1.931200 ms DeleteObjects: 0.016500 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001113 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.692 seconds -Domain Reload Profiling: - ReloadAssembly (692ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (555ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2665. -Total: 1.962000 ms (FindLiveObjects: 0.119400 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.785800 ms DeleteObjects: 0.011300 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: 2434.013810 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '872fe643f9419cd97533dfbd80c65e53') in 0.063147 seconds - Import took 0.066706 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 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.721 seconds -Domain Reload Profiling: - ReloadAssembly (721ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - EndReloadAssembly (588ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.1 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2667. -Total: 2.071500 ms (FindLiveObjects: 0.133400 ms CreateObjectMapping: 0.043200 ms MarkObjects: 1.875400 ms DeleteObjects: 0.018500 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: 9.088818 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '528bc9fa0936b0b244fac8c245eb8d32') in 0.034753 seconds - Import took 0.037582 seconds . - -======================================================================== -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.695 seconds -Domain Reload Profiling: - ReloadAssembly (695ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (562ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2669. -Total: 2.121700 ms (FindLiveObjects: 0.159900 ms CreateObjectMapping: 0.060600 ms MarkObjects: 1.883200 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 116.200449 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b51000b63806e6a71efec40c00e50b6') in 0.035480 seconds - Import took 0.038477 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001246 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.736 seconds -Domain Reload Profiling: - ReloadAssembly (736ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (600ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2671. -Total: 2.100500 ms (FindLiveObjects: 0.129500 ms CreateObjectMapping: 0.047000 ms MarkObjects: 1.903400 ms DeleteObjects: 0.019400 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 Prepare -Registering precompiled user dll's ... -Registered in 0.002104 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.729 seconds -Domain Reload Profiling: - ReloadAssembly (730ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (600ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - 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 -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2673. -Total: 2.174700 ms (FindLiveObjects: 0.127200 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.986000 ms DeleteObjects: 0.015200 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001389 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.702 seconds -Domain Reload Profiling: - ReloadAssembly (702ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (571ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (151ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2675. -Total: 2.041000 ms (FindLiveObjects: 0.134000 ms CreateObjectMapping: 0.045600 ms MarkObjects: 1.835000 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: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.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.744 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (612ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2677. -Total: 2.526900 ms (FindLiveObjects: 0.144100 ms CreateObjectMapping: 0.052300 ms MarkObjects: 2.309000 ms DeleteObjects: 0.020400 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001201 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.690 seconds -Domain Reload Profiling: - ReloadAssembly (691ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (565ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2679. -Total: 2.065600 ms (FindLiveObjects: 0.128600 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.877900 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002057 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.722 seconds -Domain Reload Profiling: - ReloadAssembly (722ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (596ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2681. -Total: 2.082600 ms (FindLiveObjects: 0.126600 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.886600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001271 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.768 seconds -Domain Reload Profiling: - ReloadAssembly (768ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (634ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (201ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (253ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2683. -Total: 2.314000 ms (FindLiveObjects: 0.140500 ms CreateObjectMapping: 0.040400 ms MarkObjects: 2.115600 ms DeleteObjects: 0.016200 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001430 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.701 seconds -Domain Reload Profiling: - ReloadAssembly (701ms) - BeginReloadAssembly (74ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (587ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2685. -Total: 2.293300 ms (FindLiveObjects: 0.133300 ms CreateObjectMapping: 0.046500 ms MarkObjects: 2.097600 ms DeleteObjects: 0.014400 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001291 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.770 seconds -Domain Reload Profiling: - ReloadAssembly (770ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (635ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (257ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (169ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2687. -Total: 2.042400 ms (FindLiveObjects: 0.126600 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.857500 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001281 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.733 seconds -Domain Reload Profiling: - ReloadAssembly (733ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (608ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2689. -Total: 2.007400 ms (FindLiveObjects: 0.122500 ms CreateObjectMapping: 0.041400 ms MarkObjects: 1.829300 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001632 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.733 seconds -Domain Reload Profiling: - ReloadAssembly (734ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (602ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2691. -Total: 2.036900 ms (FindLiveObjects: 0.142100 ms CreateObjectMapping: 0.043800 ms MarkObjects: 1.835800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001204 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.751 seconds -Domain Reload Profiling: - ReloadAssembly (751ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (621ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (255ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2693. -Total: 2.319000 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.056200 ms MarkObjects: 2.031800 ms DeleteObjects: 0.050700 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001325 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.729 seconds -Domain Reload Profiling: - ReloadAssembly (730ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (604ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2695. -Total: 2.012100 ms (FindLiveObjects: 0.131800 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.807400 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: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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.737 seconds -Domain Reload Profiling: - ReloadAssembly (737ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (614ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2697. -Total: 2.085200 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.895100 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 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.716 seconds -Domain Reload Profiling: - ReloadAssembly (716ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (584ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) SetupLoadedEditorAssemblies (228ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) @@ -3637,182 +173,14 @@ Domain Reload Profiling: ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2699. -Total: 1.994500 ms (FindLiveObjects: 0.129500 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.792600 ms DeleteObjects: 0.025200 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 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.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.748 seconds -Domain Reload Profiling: - ReloadAssembly (748ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (607ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2701. -Total: 1.983500 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.049700 ms MarkObjects: 1.792600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001424 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.719 seconds -Domain Reload Profiling: - ReloadAssembly (719ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (593ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.0 MB. -System memory in use after: 95.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2703. -Total: 2.066300 ms (FindLiveObjects: 0.141900 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.861800 ms DeleteObjects: 0.015300 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001281 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.698 seconds -Domain Reload Profiling: - ReloadAssembly (699ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (564ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.1 MB. -System memory in use after: 95.2 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.357700 ms (FindLiveObjects: 0.148200 ms CreateObjectMapping: 0.049200 ms MarkObjects: 2.139700 ms DeleteObjects: 0.019400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 2.089700 ms (FindLiveObjects: 0.131700 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.894900 ms DeleteObjects: 0.015200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3827,672 +195,48 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001302 seconds. +Registered in 0.001250 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -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. Mono: successfully reloaded assembly -- Completed reload, in 0.691 seconds +- Completed reload, in 0.682 seconds Domain Reload Profiling: - ReloadAssembly (692ms) - BeginReloadAssembly (81ms) + ReloadAssembly (682ms) + BeginReloadAssembly (76ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) EndReloadAssembly (567ms) - LoadAssemblies (59ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) + SetupTypeCache (178ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) + RebuildScriptCaches (42ms) SetupLoadedEditorAssemblies (225ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (146ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (150ms) ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.53 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 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.1 MB. -System memory in use after: 95.2 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.133700 ms (FindLiveObjects: 0.129800 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.942200 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001135 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.723 seconds -Domain Reload Profiling: - ReloadAssembly (723ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (576ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.1 MB. -System memory in use after: 95.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2709. -Total: 2.019400 ms (FindLiveObjects: 0.139200 ms CreateObjectMapping: 0.050800 ms MarkObjects: 1.815300 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: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.84 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 (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (619ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (260ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.1 MB. -System memory in use after: 95.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2711. -Total: 2.155100 ms (FindLiveObjects: 0.144000 ms CreateObjectMapping: 0.048500 ms MarkObjects: 1.946600 ms DeleteObjects: 0.015000 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001248 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.743 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (606ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (166ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2713. -Total: 2.029800 ms (FindLiveObjects: 0.145100 ms CreateObjectMapping: 0.048900 ms MarkObjects: 1.821600 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: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.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.729 seconds -Domain Reload Profiling: - ReloadAssembly (729ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (600ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2715. -Total: 2.139600 ms (FindLiveObjects: 0.166100 ms CreateObjectMapping: 0.051100 ms MarkObjects: 1.895200 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001487 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 (758ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (624ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2717. -Total: 2.081800 ms (FindLiveObjects: 0.146300 ms CreateObjectMapping: 0.051400 ms MarkObjects: 1.869900 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001254 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 (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (614ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2719. -Total: 2.128400 ms (FindLiveObjects: 0.151000 ms CreateObjectMapping: 0.049700 ms MarkObjects: 1.911800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001226 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.726 seconds -Domain Reload Profiling: - ReloadAssembly (726ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (594ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2721. -Total: 2.291100 ms (FindLiveObjects: 0.150400 ms CreateObjectMapping: 0.049000 ms MarkObjects: 2.060600 ms DeleteObjects: 0.030100 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001452 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.759 seconds -Domain Reload Profiling: - ReloadAssembly (759ms) - BeginReloadAssembly (102ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (615ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (170ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2723. -Total: 2.149600 ms (FindLiveObjects: 0.147300 ms CreateObjectMapping: 0.052500 ms MarkObjects: 1.923600 ms DeleteObjects: 0.025200 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 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.789 seconds -Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (627ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (249ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2725. -Total: 2.164900 ms (FindLiveObjects: 0.164200 ms CreateObjectMapping: 0.059100 ms MarkObjects: 1.919100 ms DeleteObjects: 0.021400 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001451 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.688 seconds -Domain Reload Profiling: - ReloadAssembly (688ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (558ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (142ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2727. -Total: 2.060700 ms (FindLiveObjects: 0.141300 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.842800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 2096.656319 seconds. - path: Assets/Prefabs/InventoryCanvas.prefab - artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08e09da91afe4426cb9f27ab35f3d0ba') in 0.052096 seconds - Import took 0.055015 seconds . - -======================================================================== -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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.715 seconds -Domain Reload Profiling: - ReloadAssembly (715ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (588ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (234ms) - 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 -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 95.4 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2729. -Total: 2.269300 ms (FindLiveObjects: 0.204700 ms CreateObjectMapping: 0.055200 ms MarkObjects: 1.990700 ms DeleteObjects: 0.017700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. +Total: 1.906700 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.731100 ms DeleteObjects: 0.013300 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 df207321..ad979257 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -60271 +49478 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 33.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.97 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,89 +35,89 @@ 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:56232 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56544 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.001203 seconds. +Registered in 0.001131 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 35.72 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 1.589 seconds +- Completed reload, in 1.466 seconds Domain Reload Profiling: - ReloadAssembly (1589ms) - BeginReloadAssembly (38ms) + ReloadAssembly (1466ms) + BeginReloadAssembly (37ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (316ms) - LoadAssemblies (37ms) + EndReloadAssembly (274ms) + LoadAssemblies (36ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (106ms) + SetupTypeCache (88ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (25ms) - SetupLoadedEditorAssemblies (132ms) + RebuildScriptCaches (24ms) + SetupLoadedEditorAssemblies (115ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (36ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (60ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + RefreshPlugins (29ms) + 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.001212 seconds. +Registered in 0.001130 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 36.93 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.872 seconds +- Completed reload, in 0.881 seconds Domain Reload Profiling: - ReloadAssembly (873ms) - BeginReloadAssembly (100ms) + ReloadAssembly (882ms) + BeginReloadAssembly (93ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - EndReloadAssembly (731ms) - LoadAssemblies (87ms) + CreateAndSetChildDomain (13ms) + EndReloadAssembly (750ms) + LoadAssemblies (200ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) + SetupTypeCache (178ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (291ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (253ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (37ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (10ms) + RefreshPlugins (30ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) + AwakeInstancesAfterBackupRestoration (4ms) 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.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. Unloading 2140 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 96.3 MB. System memory in use after: 96.4 MB. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 2.071200 ms (FindLiveObjects: 0.133300 ms CreateObjectMapping: 0.050300 ms MarkObjects: 1.809000 ms DeleteObjects: 0.077800 ms) +Total: 2.148000 ms (FindLiveObjects: 0.149000 ms CreateObjectMapping: 0.054300 ms MarkObjects: 1.867400 ms DeleteObjects: 0.076500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,56 +131,1232 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Inventory/AddEquipment.cs - artifactKey: Guid(ceeb808f1ef29454999c8fd188abc43c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Inventory/AddEquipment.cs using Guid(ceeb808f1ef29454999c8fd188abc43c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd4c410f399a06af7d14671192ebfbad') in 0.016022 seconds - Import took 0.018449 seconds . + path: Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset + artifactKey: Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset using Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f22539ab2576ee4783bbca586f41363') in 0.035569 seconds + Import took 0.044756 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001300 seconds. +Registered in 0.001280 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.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.703 seconds +- Completed reload, in 0.746 seconds Domain Reload Profiling: - ReloadAssembly (704ms) - BeginReloadAssembly (87ms) + ReloadAssembly (747ms) + BeginReloadAssembly (80ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (574ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (624ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2583. +Total: 1.959200 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.772400 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001212 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.723 seconds +Domain Reload Profiling: + ReloadAssembly (723ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (592ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2585. +Total: 2.139700 ms (FindLiveObjects: 0.129200 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.952600 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: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.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.679 seconds +Domain Reload Profiling: + ReloadAssembly (680ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (550ms) LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2587. +Total: 1.991500 ms (FindLiveObjects: 0.130000 ms CreateObjectMapping: 0.051300 ms MarkObjects: 1.796000 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001638 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.702 seconds +Domain Reload Profiling: + ReloadAssembly (703ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (582ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (228ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2589. +Total: 1.946000 ms (FindLiveObjects: 0.122200 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.764700 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001544 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.688 seconds +Domain Reload Profiling: + ReloadAssembly (689ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (554ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (226ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadAttributes (150ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2591. +Total: 1.913500 ms (FindLiveObjects: 0.118600 ms CreateObjectMapping: 0.040400 ms MarkObjects: 1.735800 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: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.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.696 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (564ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2593. +Total: 1.972500 ms (FindLiveObjects: 0.115100 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.774300 ms DeleteObjects: 0.038400 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001178 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.707 seconds +Domain Reload Profiling: + ReloadAssembly (707ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (575ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (145ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2595. +Total: 1.925800 ms (FindLiveObjects: 0.126900 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.740400 ms DeleteObjects: 0.011800 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001138 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.676 seconds +Domain Reload Profiling: + ReloadAssembly (676ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (553ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2597. +Total: 1.890400 ms (FindLiveObjects: 0.117100 ms CreateObjectMapping: 0.043300 ms MarkObjects: 1.717100 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001144 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.683 seconds +Domain Reload Profiling: + ReloadAssembly (683ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (552ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (145ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2599. +Total: 1.982400 ms (FindLiveObjects: 0.120000 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.801600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001308 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.682 seconds +Domain Reload Profiling: + ReloadAssembly (683ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (559ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2601. +Total: 2.172400 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.042700 ms MarkObjects: 1.983700 ms DeleteObjects: 0.027500 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001336 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.690 seconds +Domain Reload Profiling: + ReloadAssembly (691ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (561ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2603. +Total: 2.053900 ms (FindLiveObjects: 0.137500 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.848300 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: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.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.700 seconds +Domain Reload Profiling: + ReloadAssembly (700ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (564ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2605. +Total: 1.962600 ms (FindLiveObjects: 0.131200 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.769700 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001128 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.691 seconds +Domain Reload Profiling: + ReloadAssembly (691ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (557ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2607. +Total: 2.192100 ms (FindLiveObjects: 0.162700 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.961700 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: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.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.702 seconds +Domain Reload Profiling: + ReloadAssembly (703ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (568ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2609. +Total: 2.103700 ms (FindLiveObjects: 0.130000 ms CreateObjectMapping: 0.051700 ms MarkObjects: 1.905800 ms DeleteObjects: 0.015300 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 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.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.704 seconds +Domain Reload Profiling: + ReloadAssembly (705ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (575ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2611. +Total: 1.952600 ms (FindLiveObjects: 0.119600 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.763400 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001193 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.692 seconds +Domain Reload Profiling: + ReloadAssembly (692ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (566ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2613. +Total: 1.958600 ms (FindLiveObjects: 0.121500 ms CreateObjectMapping: 0.045600 ms MarkObjects: 1.777800 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: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.709 seconds +Domain Reload Profiling: + ReloadAssembly (709ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (576ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2615. +Total: 2.156000 ms (FindLiveObjects: 0.125800 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.957700 ms DeleteObjects: 0.026400 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001164 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.735 seconds +Domain Reload Profiling: + ReloadAssembly (735ms) + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (590ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (238ms) + 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 +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2617. +Total: 2.125100 ms (FindLiveObjects: 0.128800 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.927300 ms DeleteObjects: 0.018900 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001731 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.697 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (569ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2619. +Total: 1.980900 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.781500 ms DeleteObjects: 0.024900 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 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.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.696 seconds +Domain Reload Profiling: + ReloadAssembly (696ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (568ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2621. +Total: 2.176800 ms (FindLiveObjects: 0.135200 ms CreateObjectMapping: 0.046400 ms MarkObjects: 1.975900 ms DeleteObjects: 0.018100 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 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.31 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 (765ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (614ms) + LoadAssemblies (68ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2623. +Total: 2.118500 ms (FindLiveObjects: 0.159600 ms CreateObjectMapping: 0.050300 ms MarkObjects: 1.878800 ms DeleteObjects: 0.028500 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001182 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.699 seconds +Domain Reload Profiling: + ReloadAssembly (699ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (564ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2118 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.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. -Total: 2.089700 ms (FindLiveObjects: 0.131700 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.894900 ms DeleteObjects: 0.015200 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. +Total: 2.246500 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.044000 ms MarkObjects: 2.040900 ms DeleteObjects: 0.035700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -195,48 +1371,48 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001250 seconds. +Registered in 0.001146 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 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.682 seconds +- Completed reload, in 0.689 seconds Domain Reload Profiling: - ReloadAssembly (682ms) - BeginReloadAssembly (76ms) + ReloadAssembly (689ms) + BeginReloadAssembly (87ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (567ms) - LoadAssemblies (56ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (557ms) + LoadAssemblies (54ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) + SetupTypeCache (172ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (225ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (150ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (147ms) ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -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 2118 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.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. -Total: 1.906700 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.731100 ms DeleteObjects: 0.013300 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 1.928400 ms (FindLiveObjects: 0.122200 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.746400 ms DeleteObjects: 0.012500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -248,4 +1424,188 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 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.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.702 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (575ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2629. +Total: 1.916700 ms (FindLiveObjects: 0.118800 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.742100 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2841.714055 seconds. + path: Assets/Prefabs/InventoryCanvas.prefab + artifactKey: Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/InventoryCanvas.prefab using Guid(7f7cf1336562d5541a6b68e94a57e257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52443eb787d0b2ec190982b03527ea78') in 0.062655 seconds + Import took 0.065962 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001251 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.716 seconds +Domain Reload Profiling: + ReloadAssembly (716ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (584ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (239ms) + 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 +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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 16 unused Assets to reduce memory usage. Loaded Objects now: 2631. +Total: 2.040700 ms (FindLiveObjects: 0.132200 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.844400 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002763 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.771 seconds +Domain Reload Profiling: + ReloadAssembly (771ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (617ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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: 2633. +Total: 2.093300 ms (FindLiveObjects: 0.129700 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.899800 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 142.946388 seconds. + path: Assets/Scripts/Configs/CardConfigs/AddStamina.asset + artifactKey: Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e79a1359d20e6c34d5ea811e5b17bb40') in 0.016708 seconds + Import took 0.019304 seconds . + AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe10.log b/Logs/shadercompiler-UnityShaderCompiler.exe10.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe10.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe10.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.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe6.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.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