diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index 2665b483..13ca7b8d 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/Scenes/DataHolder.unity b/Assets/Scenes/DataHolder.unity index ab6d7b70..fc1d8d35 100644 --- a/Assets/Scenes/DataHolder.unity +++ b/Assets/Scenes/DataHolder.unity @@ -135,6 +135,7 @@ GameObject: - component: {fileID: 1821969146} - component: {fileID: 1821969148} - component: {fileID: 1821969149} + - component: {fileID: 1821969150} m_Layer: 0 m_Name: DataHolder m_TagString: Untagged @@ -291,3 +292,15 @@ AudioListener: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1821969145} m_Enabled: 0 +--- !u!114 &1821969150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1821969145} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 28a7b70cce701c64c8157922e23b706c, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/Assets/Scripts/Card.cs b/Assets/Scripts/Card.cs index b44c579f..061823b0 100644 --- a/Assets/Scripts/Card.cs +++ b/Assets/Scripts/Card.cs @@ -96,7 +96,7 @@ public class Card : MonoBehaviour //ВАРНИНГ! НЕ РАБОТАЕТ С КАРТАМИ НА -ЗДОРОВЬЕ!! int _stamina = DeckManager.main.stamina; if (_stamina < cardConfig.CardCharacteristics.quantityStamina) return; - if (_card.specialization == Specialization.healing) + else if (_card.specialization == Specialization.healing) { if (_card.addStamina > 0) { diff --git a/Assets/Scripts/Configs/CardConfig.cs b/Assets/Scripts/Configs/CardConfig.cs index 4b97301f..1bbbd862 100644 --- a/Assets/Scripts/Configs/CardConfig.cs +++ b/Assets/Scripts/Configs/CardConfig.cs @@ -70,6 +70,7 @@ public class CardCharacteristics { public CardEffects effect; public int turns; + public int damage; } public ListEffects[] effects; diff --git a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset index e6940e05..66bb6661 100644 --- a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset +++ b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset @@ -22,14 +22,10 @@ MonoBehaviour: quantityHealth: 0 damage: 0 addHealth: 0 - addStamina: 1 + addStamina: 2 addArmor: 0 enemyCount: 0 - effects: - - effect: 0 - turns: 1 - - effect: 1 - turns: 2 + effects: [] quantityStamina2: 0 quantityHealth2: 0 damage2: 0 diff --git a/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset b/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset index d7f045a2..dd921b17 100644 --- a/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset +++ b/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset @@ -17,9 +17,21 @@ MonoBehaviour: picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} description: specialization: 1 + improvedLevel: 0 quantityStamina: 1 quantityHealth: 0 damage: 3 - healing: 0 + addHealth: 0 addStamina: 0 - armor: 0 + addArmor: 0 + enemyCount: 0 + effects: + - effect: 0 + turns: 1 + damage: 1 + quantityStamina2: 0 + quantityHealth2: 0 + damage2: 0 + addHealth2: 0 + addStamina2: 0 + addArmor2: 0 diff --git a/Assets/Scripts/DeckManager.cs b/Assets/Scripts/DeckManager.cs index 95be0c1c..f2eea569 100644 --- a/Assets/Scripts/DeckManager.cs +++ b/Assets/Scripts/DeckManager.cs @@ -5,6 +5,8 @@ using UnityEngine.UI; public class DeckManager : MonoBehaviour { + public int turn = 0; + public static DeckManager main; [SerializeField] private List deck = new List(); [SerializeField] private List cardsPosition = new List(); @@ -128,7 +130,12 @@ public class DeckManager : MonoBehaviour if (enemyTurn) StartCoroutine(EnemyStep()); //а, вот же она + turn += 1; + for (int i = 0; i < Session.main.currentEnemies.Count; i++) + { + Session.main.currentEnemies[i].GetComponent().EffectsBy(); + } } public void MarkersRegulator() { @@ -175,6 +182,16 @@ public class DeckManager : MonoBehaviour var _local = (int)currentCard.CardCharacteristics.enemyCount; + if(currentCard.CardCharacteristics.effects.Length > 0) + { + for (int i = 0; i < currentCard.CardCharacteristics.effects.Length; i++) + { + enemy.effectsName.Add(currentCard.CardCharacteristics.effects[i].effect.ToString()); + enemy.effectsDamage.Add(currentCard.CardCharacteristics.effects[i].damage); + enemy.effectsTurns.Add(currentCard.CardCharacteristics.effects[i].turns); + } + } + if (_local != 0) { MassiveAttack(_local); diff --git a/Assets/Scripts/Enemy/Enemy.cs b/Assets/Scripts/Enemy/Enemy.cs index 3eb71f14..821e45a6 100644 --- a/Assets/Scripts/Enemy/Enemy.cs +++ b/Assets/Scripts/Enemy/Enemy.cs @@ -5,7 +5,8 @@ using UnityEngine.Events; using UnityEngine.UI; public class Enemy : MonoBehaviour -{ +{ + [SerializeField] private Image enemyStepIcon; [SerializeField] private Text enemyStepIconText; @@ -29,6 +30,10 @@ public class Enemy : MonoBehaviour [SerializeField] private Image armorIcon; [SerializeField] private Text armorText; + public List effectsName = new List(); + public List effectsTurns = new List(); + public List effectsDamage = new List(); + private void Start() { NewInformation(); @@ -116,6 +121,24 @@ public class Enemy : MonoBehaviour } + public void EffectsBy() + { + for (int i = 0; i < effectsName.Count; i++) + { + if(effectsTurns[i] == 0) + { + effectsName.Remove(effectsName[i]); + effectsTurns.Remove(effectsTurns[i]); + effectsDamage.Remove(effectsDamage[i]); + } + else if(effectsName[i] == "poison") + { + LibraryEffects.main.Poison(gameObject, effectsDamage[i]); + effectsTurns[i] -= 1; + } + } + } + public void UpdateNextStepIconAndText() { int _phase = phaseAttack % attackLoop.Count; @@ -163,7 +186,6 @@ public class Enemy : MonoBehaviour UpdateNextStepIconAndText(); } - public int CheckHp() { return hp; diff --git a/Assets/Scripts/LibraryEffects.cs b/Assets/Scripts/LibraryEffects.cs new file mode 100644 index 00000000..ab244512 --- /dev/null +++ b/Assets/Scripts/LibraryEffects.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class LibraryEffects : MonoBehaviour +{ + public static LibraryEffects main; + + public void Start() + { + main = this; + } + + public void Poison(GameObject _enemy, int _damage) + { + _enemy.GetComponent().ChangeHp(_damage); + } +} diff --git a/Assets/Scripts/LibraryEffects.cs.meta b/Assets/Scripts/LibraryEffects.cs.meta new file mode 100644 index 00000000..c59bbd8c --- /dev/null +++ b/Assets/Scripts/LibraryEffects.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 28a7b70cce701c64c8157922e23b706c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Session.cs b/Assets/Scripts/Session.cs index 1c317764..1cf886a1 100644 --- a/Assets/Scripts/Session.cs +++ b/Assets/Scripts/Session.cs @@ -122,10 +122,12 @@ public class Session : MonoBehaviour public void Victory() { onVictory?.Invoke(); + DeckManager.main.turn = 0; } public void Defeat() { onDefeat?.Invoke(); + DeckManager.main.turn = 0; } public void Inventory() { diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 41900003..971eb37d 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index 0b11e13d..1941ca6d 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 1920 height: 997 m_ShowMode: 4 - m_Title: Inspector + m_Title: Game m_RootView: {fileID: 6} m_MinSize: {x: 875, y: 542} m_MaxSize: {x: 10000, y: 10000} @@ -45,10 +45,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 679, y: 492} - m_MaxSize: {x: 14002, y: 14042} + m_MinSize: {x: 678, y: 492} + m_MaxSize: {x: 14001, y: 14042} vertical: 0 - controlID: 76 + controlID: 37 --- !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: 15} m_Panes: - {fileID: 15} @@ -151,7 +151,7 @@ MonoBehaviour: y: 0 width: 1920 height: 997 - m_MinSize: {x: 875, y: 542} + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 30 @@ -227,7 +227,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 492} m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 122 + controlID: 38 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -252,7 +252,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 221} m_MaxSize: {x: 8003, y: 4021} vertical: 0 - controlID: 104 + controlID: 39 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -272,8 +272,8 @@ MonoBehaviour: y: 0 width: 1152 height: 589 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 18} m_Panes: - {fileID: 17} @@ -352,7 +352,7 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 608 + y: 662 width: 1530 height: 337 m_ViewDataDictionary: {fileID: 0} @@ -369,22 +369,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Scripts + - Assets/Scripts/Configs/CardConfigs m_Globs: [] m_OriginalText: m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets/Scripts + - 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: 19} - m_SelectedIDs: 18470000 - m_LastClickedID: 18200 - m_ExpandedIDs: 0000000006470000184700001e47000000ca9a3b + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 00570000 + m_LastClickedID: 22272 + m_ExpandedIDs: 00000000084700001a4700001e47000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -412,7 +412,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000006470000 + m_ExpandedIDs: 0000000008470000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -526,16 +526,16 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 19 + y: 73 width: 378 height: 568 m_ViewDataDictionary: {fileID: 0} m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: ae0d0000 + m_SelectedIDs: 064e0000 m_LastClickedID: 0 - m_ExpandedIDs: + m_ExpandedIDs: d461ffff7e71ffffca85ffffc8a2ffffa8b3ffffacbdfffff0c2ffff10c8ffffe2c9ffffd6e7ffff1ef4ffff3efbffff40fbffffaa600000b2600000be600000d2600000fc6000000a6100003e64000052640000666400009e6400008c6a0000b46a0000de6a0000ec6a0000507100007c71000026730000387300004e730000527300004c7700005e77000078770000dc7a0000ee7a0000087b0000847e0000967e0000b07e0000e6820000f8820000128300007e86000090860000aa860000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -695,8 +695,8 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 380 - y: 19 + x: 379 + y: 73 width: 1150 height: 568 m_ViewDataDictionary: {fileID: 0} diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 881af300..d81c1fed 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..884b217c 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 d252fa17..5b0c4c3a 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 d155edab..00c5f346 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 433789f7..41a5f169 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log new file mode 100644 index 00000000..ee74abff --- /dev/null +++ b/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,227 @@ +Using pre-set license +Built from '2020.3/staging' branch; Version is '2020.3.19f1 (68f137dc9bbe) revision 6877495'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 19043.1415; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +E:/Projects с#/Unity/omega +-logFile +Logs/AssetImportWorker0.log +-srvPort +49643 +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 31.57 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 +[Subsystems] Discovering subsystems at path E:/Projects с#/Unity/omega/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.0] + Renderer: NVIDIA GeForce GT 730 (ID=0x1287) + Vendor: + VRAM: 984 MB + Driver: 30.0.14.7298 +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:56576 +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.001138 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 34.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1479ms) + BeginReloadAssembly (38ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (293ms) + LoadAssemblies (36ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (95ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (23ms) + SetupLoadedEditorAssemblies (125ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (35ms) + BeforeProcessingInitializeOnLoad (12ms) + ProcessInitializeOnLoadAttributes (55ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.001227 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 29.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.769 seconds +Domain Reload Profiling: + ReloadAssembly (770ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (13ms) + EndReloadAssembly (635ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (30ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +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.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.295200 ms (FindLiveObjects: 0.156800 ms CreateObjectMapping: 0.072300 ms MarkObjects: 2.006500 ms DeleteObjects: 0.058600 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. + 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: '5a9b63abf63e24e242c0581a86d28474') in 0.023246 seconds + Import took 0.025646 seconds . + +======================================================================== +Received Import Request. + Time since last request: 10.133121 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: '40c8c45303c692ec96973921b2bd44d5') in 0.002158 seconds + Import took 0.004618 seconds . + +======================================================================== +Received Import Request. + Time since last request: 36.114408 seconds. + path: Assets/Scripts/CanvasChanger.cs + artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '604dc8df25656549d86a14fcf5351435') in 0.000991 seconds + Import took 0.003540 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.945991 seconds. + path: Assets/Scripts/Card.cs + artifactKey: Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Card.cs using Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46d7f80093a681c039eacf810c786262') in 0.017525 seconds + Import took 0.020597 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.902750 seconds. + path: Assets/Scripts/DataHolder.cs + artifactKey: Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/DataHolder.cs using Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c3a93872dab6f91159d5768af8ca474') in 0.000975 seconds + Import took 0.003305 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.069588 seconds. + path: Assets/Scripts/DeckManager.cs + artifactKey: Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/DeckManager.cs using Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecd4088ebdfcccb2443b229320a793fc') in 0.000872 seconds + Import took 0.006997 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.497285 seconds. + path: Assets/Scripts/MainCamera.cs + artifactKey: Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainCamera.cs using Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5037473e016824f57606053dd96b17a') in 0.000864 seconds + Import took 0.003155 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.659964 seconds. + path: Assets/Scripts/PhaseCounter.cs + artifactKey: Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/PhaseCounter.cs using Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ef274466a69d4197892fcd776f5aef5') in 0.018417 seconds + Import took 0.039086 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.962628 seconds. + path: Assets/Scripts/Player.cs + artifactKey: Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Player.cs using Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3beb4b093af24f4210a6a3334057033d') in 0.001150 seconds + Import took 0.003587 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.052400 seconds. + path: Assets/Scripts/SceneLoader.cs + artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa2778f06e145973e954d47d3bd6a0cd') in 0.000898 seconds + Import took 0.003346 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.190691 seconds. + path: Assets/Scripts/Session.cs + artifactKey: Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Session.cs using Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '93634a1eb2457697061152db0770f70d') in 0.000857 seconds + Import took 0.020759 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.869133 seconds. + path: Assets/Scripts/WarningTableClose.cs + artifactKey: Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/WarningTableClose.cs using Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88f623f18bf6dd17a9b295861dba4a14') in 0.001116 seconds + Import took 0.003419 seconds . + +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index ee74abff..bcc9acf9 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -49643 +51141 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 31.57 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.86 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:56576 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56520 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.001138 seconds. +Registered in 0.001216 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 34.70 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.479 seconds +- Completed reload, in 1.597 seconds Domain Reload Profiling: - ReloadAssembly (1479ms) - BeginReloadAssembly (38ms) + ReloadAssembly (1597ms) + BeginReloadAssembly (39ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (293ms) - LoadAssemblies (36ms) + EndReloadAssembly (313ms) + LoadAssemblies (38ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (95ms) + SetupTypeCache (102ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (23ms) - SetupLoadedEditorAssemblies (125ms) + RebuildScriptCaches (25ms) + SetupLoadedEditorAssemblies (132ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (35ms) - BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (55ms) - ProcessInitializeOnLoadMethodAttributes (19ms) + RefreshPlugins (33ms) + BeforeProcessingInitializeOnLoad (13ms) + ProcessInitializeOnLoadAttributes (61ms) + ProcessInitializeOnLoadMethodAttributes (21ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001227 seconds. +Registered in 0.001304 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 29.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.769 seconds +- Completed reload, in 0.825 seconds Domain Reload Profiling: - ReloadAssembly (770ms) - BeginReloadAssembly (94ms) + ReloadAssembly (826ms) + BeginReloadAssembly (100ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (13ms) - EndReloadAssembly (635ms) - LoadAssemblies (82ms) + EndReloadAssembly (682ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) + SetupTypeCache (208ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (250ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (276ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (30ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + RefreshPlugins (33ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -117,7 +117,7 @@ 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.295200 ms (FindLiveObjects: 0.156800 ms CreateObjectMapping: 0.072300 ms MarkObjects: 2.006500 ms DeleteObjects: 0.058600 ms) +Total: 2.261000 ms (FindLiveObjects: 0.163700 ms CreateObjectMapping: 0.064200 ms MarkObjects: 1.975900 ms DeleteObjects: 0.056000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,97 +131,2529 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. + path: Assets/Scripts/Not used/BaseEnemyTurn.cs + artifactKey: Guid(047bd205dd84f1549a382c7169ea0369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Not used/BaseEnemyTurn.cs using Guid(047bd205dd84f1549a382c7169ea0369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df338014a70ca539e495920153a67400') in 0.016277 seconds + Import took 0.018720 seconds . + +======================================================================== +Received Import Request. + Time since last request: 20.961156 seconds. + path: Assets/Scripts/Effects.cs + artifactKey: Guid(746c82cf4f056b34293cfda106d5cbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Effects.cs using Guid(746c82cf4f056b34293cfda106d5cbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d1258748f4df21f9607fafae73fd8a8') in 0.001217 seconds + Import took 0.003915 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001300 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 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 (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (624ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (203ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + 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 2119 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: 2584. +Total: 2.457100 ms (FindLiveObjects: 0.122800 ms CreateObjectMapping: 0.047000 ms MarkObjects: 2.269800 ms DeleteObjects: 0.016000 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.001258 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.662 seconds +Domain Reload Profiling: + ReloadAssembly (663ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (539ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (168ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (214ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (141ms) + 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 2119 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: 2586. +Total: 1.916400 ms (FindLiveObjects: 0.120900 ms CreateObjectMapping: 0.044100 ms MarkObjects: 1.739100 ms DeleteObjects: 0.011600 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.001236 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.764 seconds +Domain Reload Profiling: + ReloadAssembly (764ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (633ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + 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 2119 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: 2588. +Total: 1.939800 ms (FindLiveObjects: 0.120000 ms CreateObjectMapping: 0.041800 ms MarkObjects: 1.764000 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.001147 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.700 seconds +Domain Reload Profiling: + ReloadAssembly (701ms) + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (561ms) + LoadAssemblies (71ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + 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.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. +Total: 1.934500 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.039900 ms MarkObjects: 1.756500 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.002754 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.762 seconds +Domain Reload Profiling: + ReloadAssembly (763ms) + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (605ms) + LoadAssemblies (73ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + 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.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. +Total: 2.121000 ms (FindLiveObjects: 0.130800 ms CreateObjectMapping: 0.048900 ms MarkObjects: 1.923500 ms DeleteObjects: 0.016800 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: 682.759445 seconds. + path: Assets/Scripts/LibraryEffects.cs + artifactKey: Guid(746c82cf4f056b34293cfda106d5cbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/LibraryEffects.cs using Guid(746c82cf4f056b34293cfda106d5cbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bd7f1feb512d048ba6d71e6c1a70087') in 0.005535 seconds + Import took 0.008937 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001416 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.688 seconds +Domain Reload Profiling: + ReloadAssembly (688ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (568ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + 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 2119 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: 2594. +Total: 1.961500 ms (FindLiveObjects: 0.120000 ms CreateObjectMapping: 0.045100 ms MarkObjects: 1.780900 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.001189 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 (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (605ms) + LoadAssemblies (68ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + 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.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. +Total: 2.281900 ms (FindLiveObjects: 0.136900 ms CreateObjectMapping: 0.046300 ms MarkObjects: 2.081000 ms DeleteObjects: 0.016600 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.001152 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.727 seconds +Domain Reload Profiling: + ReloadAssembly (728ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (592ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (149ms) + 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 2119 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.130400 ms (FindLiveObjects: 0.121200 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.948900 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 Import Request. + Time since last request: 30.820103 seconds. + path: Assets/Scripts/Effects.cs + artifactKey: Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Effects.cs using Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15ddf9d97a202bf24610a674b2883fca') in 0.002984 seconds + Import took 0.005174 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.974627 seconds. + path: Assets/Scripts/LibraryEffects.cs + artifactKey: Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/LibraryEffects.cs using Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '329561833644a330c84c173c9804f0e0') in 0.001090 seconds + Import took 0.003860 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001143 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.726 seconds +Domain Reload Profiling: + ReloadAssembly (726ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (600ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + 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 2119 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.109100 ms (FindLiveObjects: 0.119500 ms CreateObjectMapping: 0.042600 ms MarkObjects: 1.920100 ms DeleteObjects: 0.026100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001148 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 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 (722ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (581ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + 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 2119 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.035500 ms (FindLiveObjects: 0.120300 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.857000 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 Import Request. + Time since last request: 140.940717 seconds. + path: Assets/Scripts/LibraryEffects.cs + artifactKey: Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/LibraryEffects.cs using Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f62ca0f66577ef025169ba94d976be6') in 0.003112 seconds + Import took 0.005621 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001239 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 (696ms) + BeginReloadAssembly (75ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (578ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (151ms) + 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 2119 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.929000 ms (FindLiveObjects: 0.124500 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.747800 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.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.678 seconds +Domain Reload Profiling: + ReloadAssembly (678ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (559ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 2.029100 ms (FindLiveObjects: 0.131800 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.835000 ms DeleteObjects: 0.015600 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.001335 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.697 seconds +Domain Reload Profiling: + ReloadAssembly (698ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (563ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (142ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + 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 2119 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: 1.938900 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.045100 ms MarkObjects: 1.758400 ms DeleteObjects: 0.011600 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.001129 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.693 seconds +Domain Reload Profiling: + ReloadAssembly (694ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (563ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (151ms) + 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 2119 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.985700 ms (FindLiveObjects: 0.120000 ms CreateObjectMapping: 0.043300 ms MarkObjects: 1.806100 ms DeleteObjects: 0.015400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom: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.33 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 (684ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (555ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (144ms) + 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 2119 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.937100 ms (FindLiveObjects: 0.121400 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.757000 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.001283 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.707 seconds +Domain Reload Profiling: + ReloadAssembly (707ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (581ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (151ms) + 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 2119 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.224100 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.052600 ms MarkObjects: 2.012700 ms DeleteObjects: 0.028100 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.001361 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 (690ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (568ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + 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 2119 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: 2617. +Total: 1.934100 ms (FindLiveObjects: 0.123400 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.751500 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 Import Request. + Time since last request: 552.481766 seconds. + path: Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset + artifactKey: Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset using Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd18cd563c1d8683456d4e95dfa2f85a0') in 0.023547 seconds + Import took 0.025909 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000191 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: '5a9b63abf63e24e242c0581a86d28474') in 0.023246 seconds - Import took 0.025646 seconds . +Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfd0e9cc3f4ac6574cac135c5921ae8d') in 0.003321 seconds + Import took 0.005689 seconds . ======================================================================== -Received Import Request. - Time since last request: 10.133121 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: '40c8c45303c692ec96973921b2bd44d5') in 0.002158 seconds - Import took 0.004618 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001124 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.695 seconds +Domain Reload Profiling: + ReloadAssembly (695ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (566ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + 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 2119 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: 2.231000 ms (FindLiveObjects: 0.129900 ms CreateObjectMapping: 0.048200 ms MarkObjects: 2.037900 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 Import Request. - Time since last request: 36.114408 seconds. - path: Assets/Scripts/CanvasChanger.cs - artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '604dc8df25656549d86a14fcf5351435') in 0.000991 seconds - Import took 0.003540 seconds . +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.35 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 (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (590ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (157ms) + 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 2119 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: 2.011800 ms (FindLiveObjects: 0.125700 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.818000 ms DeleteObjects: 0.024500 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: 0.945991 seconds. - path: Assets/Scripts/Card.cs - artifactKey: Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Card.cs using Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46d7f80093a681c039eacf810c786262') in 0.017525 seconds - Import took 0.020597 seconds . +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.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.720 seconds +Domain Reload Profiling: + ReloadAssembly (720ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (590ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (156ms) + 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 2119 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: 1.987100 ms (FindLiveObjects: 0.138500 ms CreateObjectMapping: 0.048600 ms MarkObjects: 1.786500 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 Import Request. - Time since last request: 1.902750 seconds. - path: Assets/Scripts/DataHolder.cs - artifactKey: Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DataHolder.cs using Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c3a93872dab6f91159d5768af8ca474') in 0.000975 seconds - Import took 0.003305 seconds . +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.722 seconds +Domain Reload Profiling: + ReloadAssembly (723ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (598ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +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 2119 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.895100 ms (FindLiveObjects: 0.118900 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.718300 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 Import Request. - Time since last request: 2.069588 seconds. - path: Assets/Scripts/DeckManager.cs - artifactKey: Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DeckManager.cs using Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecd4088ebdfcccb2443b229320a793fc') in 0.000872 seconds - Import took 0.006997 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001339 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.683 seconds +Domain Reload Profiling: + ReloadAssembly (684ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (554ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 2.320800 ms (FindLiveObjects: 0.135600 ms CreateObjectMapping: 0.051000 ms MarkObjects: 2.117500 ms DeleteObjects: 0.015400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 3.497285 seconds. - path: Assets/Scripts/MainCamera.cs - artifactKey: Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainCamera.cs using Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5037473e016824f57606053dd96b17a') in 0.000864 seconds - Import took 0.003155 seconds . +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.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.767 seconds +Domain Reload Profiling: + ReloadAssembly (768ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (638ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (196ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + 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.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. +Total: 1.979500 ms (FindLiveObjects: 0.125100 ms CreateObjectMapping: 0.055700 ms MarkObjects: 1.784300 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 Import Request. - Time since last request: 0.659964 seconds. - path: Assets/Scripts/PhaseCounter.cs - artifactKey: Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/PhaseCounter.cs using Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ef274466a69d4197892fcd776f5aef5') in 0.018417 seconds - Import took 0.039086 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001292 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.681 seconds +Domain Reload Profiling: + ReloadAssembly (681ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (558ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (146ms) + 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 2119 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.986100 ms (FindLiveObjects: 0.130000 ms CreateObjectMapping: 0.046200 ms MarkObjects: 1.794700 ms DeleteObjects: 0.014300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 1.962628 seconds. - path: Assets/Scripts/Player.cs - artifactKey: Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Player.cs using Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3beb4b093af24f4210a6a3334057033d') in 0.001150 seconds - Import took 0.003587 seconds . +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.34 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 (689ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (560ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (149ms) + 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 2119 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: 1.995800 ms (FindLiveObjects: 0.118200 ms CreateObjectMapping: 0.040500 ms MarkObjects: 1.824900 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 Import Request. - Time since last request: 3.052400 seconds. - path: Assets/Scripts/SceneLoader.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa2778f06e145973e954d47d3bd6a0cd') in 0.000898 seconds - Import took 0.003346 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001149 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 (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (565ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (152ms) + 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 2119 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.953400 ms (FindLiveObjects: 0.121500 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.773100 ms DeleteObjects: 0.013500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 1.190691 seconds. - path: Assets/Scripts/Session.cs - artifactKey: Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Session.cs using Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '93634a1eb2457697061152db0770f70d') in 0.000857 seconds - Import took 0.020759 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001313 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.676 seconds +Domain Reload Profiling: + ReloadAssembly (677ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (554ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + 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.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2637. +Total: 2.022200 ms (FindLiveObjects: 0.139800 ms CreateObjectMapping: 0.056300 ms MarkObjects: 1.812000 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 Import Request. - Time since last request: 3.869133 seconds. - path: Assets/Scripts/WarningTableClose.cs - artifactKey: Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/WarningTableClose.cs using Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88f623f18bf6dd17a9b295861dba4a14') in 0.001116 seconds - Import took 0.003419 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001168 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.708 seconds +Domain Reload Profiling: + ReloadAssembly (708ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (577ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + 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.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2639. +Total: 2.268500 ms (FindLiveObjects: 0.145800 ms CreateObjectMapping: 0.058100 ms MarkObjects: 2.048300 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.001241 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.697 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (562ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + 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.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. +Total: 1.935500 ms (FindLiveObjects: 0.122000 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.757500 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.001298 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.750 seconds +Domain Reload Profiling: + ReloadAssembly (751ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (614ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (162ms) + 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 2119 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: 2643. +Total: 10.297400 ms (FindLiveObjects: 0.243500 ms CreateObjectMapping: 6.960500 ms MarkObjects: 3.066100 ms DeleteObjects: 0.025300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001275 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.781 seconds +Domain Reload Profiling: + ReloadAssembly (782ms) + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (633ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + 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.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. +Total: 1.982300 ms (FindLiveObjects: 0.132600 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.791000 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.001411 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.762 seconds +Domain Reload Profiling: + ReloadAssembly (763ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (621ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (196ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + 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.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. +Total: 2.036200 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.043200 ms MarkObjects: 1.849300 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.001187 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.710 seconds +Domain Reload Profiling: + ReloadAssembly (710ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (586ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (160ms) + 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 2119 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: 2649. +Total: 2.323300 ms (FindLiveObjects: 0.163400 ms CreateObjectMapping: 0.044300 ms MarkObjects: 2.099800 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.001405 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.699 seconds +Domain Reload Profiling: + ReloadAssembly (699ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (573ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (143ms) + 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 2119 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: 1.887700 ms (FindLiveObjects: 0.120800 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.710900 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.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.698 seconds +Domain Reload Profiling: + ReloadAssembly (698ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (577ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + 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 2119 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.040700 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.045600 ms MarkObjects: 1.857700 ms DeleteObjects: 0.013700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001158 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.695 seconds +Domain Reload Profiling: + ReloadAssembly (695ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (578ms) + LoadAssemblies (52ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + 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.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. +Total: 1.967400 ms (FindLiveObjects: 0.130400 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.776500 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.001233 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.837 seconds +Domain Reload Profiling: + ReloadAssembly (837ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (687ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (242ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (167ms) + 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 2119 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.047900 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.838900 ms DeleteObjects: 0.027300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001335 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.748 seconds +Domain Reload Profiling: + ReloadAssembly (748ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (618ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + 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.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. +Total: 2.317900 ms (FindLiveObjects: 0.133700 ms CreateObjectMapping: 0.042800 ms MarkObjects: 2.124900 ms DeleteObjects: 0.015500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001188 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.693 seconds +Domain Reload Profiling: + ReloadAssembly (693ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (573ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (168ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (155ms) + 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 2119 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: 1.947600 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.041500 ms MarkObjects: 1.769500 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.001454 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.799 seconds +Domain Reload Profiling: + ReloadAssembly (799ms) + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (641ms) + LoadAssemblies (71ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (232ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +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 2119 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.161900 ms (FindLiveObjects: 0.191000 ms CreateObjectMapping: 0.039900 ms MarkObjects: 1.900100 ms DeleteObjects: 0.029600 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.001947 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.720 seconds +Domain Reload Profiling: + ReloadAssembly (720ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (580ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (169ms) + 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 2119 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: 2.028600 ms (FindLiveObjects: 0.126500 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.843400 ms DeleteObjects: 0.014300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001155 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.691 seconds +Domain Reload Profiling: + ReloadAssembly (691ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (558ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (149ms) + 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 2119 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: 2667. +Total: 2.156400 ms (FindLiveObjects: 0.159200 ms CreateObjectMapping: 0.044100 ms MarkObjects: 1.937100 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.001334 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.720 seconds +Domain Reload Profiling: + ReloadAssembly (720ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (585ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (154ms) + 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 2119 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: 2669. +Total: 1.975900 ms (FindLiveObjects: 0.129500 ms CreateObjectMapping: 0.048000 ms MarkObjects: 1.784400 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.001103 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.673 seconds +Domain Reload Profiling: + ReloadAssembly (673ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (552ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + 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.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2671. +Total: 2.313200 ms (FindLiveObjects: 0.139800 ms CreateObjectMapping: 0.046700 ms MarkObjects: 2.108400 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 -> AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe4.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe5.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -2,3 +2,5 @@ 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 e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe6.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe7.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -2,3 +2,5 @@ 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/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index f593baa9..4d59da17 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 4d056b70..1251fd80 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ