diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index b7bbc6ac..2444cd56 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/Prefabs/Enemy/Snake.prefab b/Assets/Prefabs/Enemy/Snake.prefab index 79cd2c84..8b8b5fbc 100644 --- a/Assets/Prefabs/Enemy/Snake.prefab +++ b/Assets/Prefabs/Enemy/Snake.prefab @@ -684,6 +684,11 @@ MonoBehaviour: localarmor: 0 armorIcon: {fileID: 5773101020417773797} armorText: {fileID: 3921237228481833082} + effectsName: [] + effectsTurns: + effectsDamage: + effectsLink: [] + hasStun: 0 --- !u!114 &6577587491858349625 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Prefabs/Enemy/Zombie.prefab b/Assets/Prefabs/Enemy/Zombie.prefab index b9f5d7b7..6837dd81 100644 --- a/Assets/Prefabs/Enemy/Zombie.prefab +++ b/Assets/Prefabs/Enemy/Zombie.prefab @@ -1089,6 +1089,8 @@ MonoBehaviour: - {fileID: 21300000, guid: 993fdba9d116dba4bacdee2d29d33f04, type: 3} - {fileID: 21300000, guid: 9c3fd8d256ec8eb4181e171ceea55452, type: 3} - {fileID: 21300000, guid: 7ab8624721af8974b9d81950d6603da1, type: 3} + - {fileID: 21300000, guid: 664fb4e4278a75745bf61ff9b2105118, type: 3} + - {fileID: 21300000, guid: 6ec6424c00ba76e468b14f90e4bf20b1, type: 3} enemyConfig: {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} enemyName: {fileID: 7221412860694950147} enemyMaxHp: {fileID: 7221412859169780618} @@ -1127,10 +1129,29 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 0 m_CallState: 2 + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 4592293190802169254} + m_TargetAssemblyTypeName: LibraryTurnMethods, Assembly-CSharp + m_MethodName: Effects + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 hp: 0 localarmor: 0 armorIcon: {fileID: 218871620337244483} armorText: {fileID: 7182929354915225317} + effectsName: [] + effectsTurns: + effectsDamage: + effectsLink: [] + hasStun: 0 --- !u!114 &4592293190802169254 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Scenes/DataHolder.unity b/Assets/Scenes/DataHolder.unity index daee73b8..8be13d7d 100644 --- a/Assets/Scenes/DataHolder.unity +++ b/Assets/Scenes/DataHolder.unity @@ -306,7 +306,7 @@ MonoBehaviour: m_EditorClassIdentifier: effectPrefab: {fileID: 8365349782809087845, guid: 68a81a1d82a983543b7f52b5dd9a9190, type: 3} effectIcons: - - name: poison + - name: 0 icon: {fileID: 21300000, guid: 664fb4e4278a75745bf61ff9b2105118, type: 3} - - name: stun + - name: 1 icon: {fileID: 21300000, guid: 6ec6424c00ba76e468b14f90e4bf20b1, type: 3} diff --git a/Assets/Scripts/Configs/CardConfig.cs b/Assets/Scripts/Configs/CardConfig.cs index 99e99fdf..9f8bfdc5 100644 --- a/Assets/Scripts/Configs/CardConfig.cs +++ b/Assets/Scripts/Configs/CardConfig.cs @@ -70,7 +70,7 @@ public class CardCharacteristics [Serializable] public class ListEffects { - public CardEffects effect; + public LibraryEffects.CardEffects effect; public int turns; public int damage; } diff --git a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset index 7077ba28..dabd0a19 100644 --- a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset +++ b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset @@ -38,7 +38,10 @@ MonoBehaviour: addStamina: 1 addArmor: 0 enemyCount: 0 - effects: [] + effects: + - effect: 0 + turns: 0 + damage: 0 CardCharacteristicslvl2: cardName: Add Stamina picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} diff --git a/Assets/Scripts/Configs/EnemyConfig.cs b/Assets/Scripts/Configs/EnemyConfig.cs index b94012f4..04d20ceb 100644 --- a/Assets/Scripts/Configs/EnemyConfig.cs +++ b/Assets/Scripts/Configs/EnemyConfig.cs @@ -32,5 +32,15 @@ public class EnemyCharacteristics [Range(1, 3)] public int maximumPosition; + [Serializable] + public class ListEffects + { + public LibraryEffects.CardEffects effect; + public int turns; + public int damage; + } + + public ListEffects[] effects; + } diff --git a/Assets/Scripts/Configs/EnemyConfigs/Snake.asset b/Assets/Scripts/Configs/EnemyConfigs/Snake.asset index 40bbaf65..372bfeb9 100644 --- a/Assets/Scripts/Configs/EnemyConfigs/Snake.asset +++ b/Assets/Scripts/Configs/EnemyConfigs/Snake.asset @@ -26,3 +26,7 @@ MonoBehaviour: sprite: {fileID: 21300000, guid: 3cd50817f068be2499e7e3509dc6c1e7, type: 3} minimumPosition: 1 maximumPosition: 2 + effects: + - effect: 0 + turns: 1 + damage: 1 diff --git a/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset b/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset index 9858e4c4..89d8ca4a 100644 --- a/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset +++ b/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset @@ -20,6 +20,13 @@ MonoBehaviour: selfHealing: 2 allyHealing: 0 allHealing: 0 + addArmorSelf: 0 + addArmorAlly: 0 + addArmorAll: 0 sprite: {fileID: 21300000, guid: aab1740fef9fe4145aef437cf6873127, type: 3} minimumPosition: 1 maximumPosition: 3 + effects: + - effect: 1 + turns: 1 + damage: 0 diff --git a/Assets/Scripts/DeckManager.cs b/Assets/Scripts/DeckManager.cs index b59b2124..8c1b687c 100644 --- a/Assets/Scripts/DeckManager.cs +++ b/Assets/Scripts/DeckManager.cs @@ -126,17 +126,34 @@ public class DeckManager : MonoBehaviour HandingOut(); if (stamina < 3) NewStaminaQuantity(stamina + 1); + // effects on en for (int i = 0; i < Session.main.currentEnemies.Count; i++) { Session.main.currentEnemies[i].GetComponent().EffectsBy(); } - //нужна корутина для вражеского хода - if (enemyTurn) - StartCoroutine(EnemyStep()); - //а, вот же она - turn += 1; + //effects on pl + Player.main.EffectsBy(); - + //if pl by stun => en makes 2 step + int _count = 1; + //нужна корутина для вражеского хода + if (Player.main.hasStun is false) + { + _count = 1; + } + else + { + Player.main.hasStun = false; + _count = 2; + } + + for (int i = 0; i < _count; i++) + { + if (enemyTurn) + StartCoroutine(EnemyStep()); + //а, вот же она + turn += 1; + } } public void MarkersRegulator() { @@ -183,14 +200,15 @@ public class DeckManager : MonoBehaviour var _local = (int)currentCard.CardCharacteristics.enemyCount; - if(currentCard.CardCharacteristics.effects.Length > 0) + 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); - LibraryEffects.main.InstantiateEffect(currentCard.CardCharacteristics.effects[i].effect.ToString(), enemy.gameObject, currentCard.CardCharacteristics.effects[i].damage); + LibraryEffects.main.InstantiateEffect(currentCard.CardCharacteristics.effects[i].effect.ToString(), enemy.gameObject, + currentCard.CardCharacteristics.effects[i].damage, i); } } diff --git a/Assets/Scripts/Enemy/Enemy.cs b/Assets/Scripts/Enemy/Enemy.cs index 9ac76673..2569bc9b 100644 --- a/Assets/Scripts/Enemy/Enemy.cs +++ b/Assets/Scripts/Enemy/Enemy.cs @@ -30,9 +30,9 @@ 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(); + [HideInInspector] public List effectsName = new List(); + [HideInInspector] public List effectsTurns = new List(); + [HideInInspector] public List effectsDamage = new List(); [HideInInspector] public List effectsLink = new List(); @@ -197,6 +197,10 @@ public class Enemy : MonoBehaviour enemyStepIcon.sprite = allStepImageIcons[4]; enemyStepIconText.text = enemyConfig.enemyCharacteristics.addArmorAll.ToString(); break; + case "Effects": + enemyStepIcon.sprite = allStepImageIcons[6]; + enemyStepIconText.text = enemyConfig.enemyCharacteristics.addArmorAll.ToString(); + break; } } @@ -212,7 +216,7 @@ public class Enemy : MonoBehaviour } else { - hasStun = true; + hasStun = false; } } diff --git a/Assets/Scripts/Enemy/LibraryTurnMethods.cs b/Assets/Scripts/Enemy/LibraryTurnMethods.cs index 722321e6..1b631cd2 100644 --- a/Assets/Scripts/Enemy/LibraryTurnMethods.cs +++ b/Assets/Scripts/Enemy/LibraryTurnMethods.cs @@ -99,6 +99,7 @@ public class LibraryTurnMethods : MonoBehaviour _currentEnemies[_index].GetComponent().AddArmor(_addArmorAlly); } + public void AddArmorAll() { int _addArmorAll = @@ -110,6 +111,18 @@ public class LibraryTurnMethods : MonoBehaviour _currentEnemies[i].GetComponent().AddArmor(_addArmorAll); } } + + public void Effects() + { + for (int i = 0; i < enemy.enemyConfig.enemyCharacteristics.effects.Length; i++) + { + Player.main.effectsName.Add(enemy.enemyConfig.enemyCharacteristics.effects[i].effect.ToString()); + Player.main.effectsDamage.Add(enemy.enemyConfig.enemyCharacteristics.effects[i].damage); + Player.main.effectsTurns.Add(enemy.enemyConfig.enemyCharacteristics.effects[i].turns); + LibraryEffects.main.InstantiateEffect(enemy.enemyConfig.enemyCharacteristics.effects[i].effect.ToString(), Player.main.gameObject, + enemy.enemyConfig.enemyCharacteristics.effects[i].damage, i); + } + } } diff --git a/Assets/Scripts/LibraryEffects.cs b/Assets/Scripts/LibraryEffects.cs index 3e5412c2..85d53a23 100644 --- a/Assets/Scripts/LibraryEffects.cs +++ b/Assets/Scripts/LibraryEffects.cs @@ -7,19 +7,24 @@ public class LibraryEffects : MonoBehaviour { public static LibraryEffects main; - public Dictionary effectsIcon = new Dictionary(); + //public Dictionary effectsIcon = new Dictionary(); public GameObject effectPrefab; + public enum CardEffects + { + poison, + stun + }; + [System.Serializable] public class IconsEffects { - public string name; + public CardEffects name; public Sprite icon; } public IconsEffects[] effectIcons; - public void Start() { main = this; @@ -27,27 +32,54 @@ public class LibraryEffects : MonoBehaviour public void Poison(GameObject _enemy, int _damage) { - _enemy.GetComponent().ChangeHp(_damage); + if (_enemy.name == "Player(Clone)") + { + _enemy.GetComponent().ChangeHp(_damage); + } + else + { + _enemy.GetComponent().ChangeHp(_damage); + } } public void Stun(GameObject _enemy) { - _enemy.GetComponent().hasStun = true; + if (_enemy.name == "Player(Clone)") + { + _enemy.GetComponent().hasStun = true; + } + else + { + _enemy.GetComponent().hasStun = true; + } } - public void InstantiateEffect(string _name, GameObject _parent, int _damageText) + public void InstantiateEffect(string _name, GameObject _parent, int _damageText, int _numInColumn) { for (int i = 0; i < effectIcons.Length; i++) { - if (effectIcons[i].name == _name) + if (effectIcons[i].name.ToString() == _name) { effectPrefab.GetComponentInChildren().sprite = effectIcons[i].icon; } } - var _move = new Vector3(520, -369, 0); + effectPrefab.GetComponentInChildren().text = _damageText.ToString(); GameObject link = Instantiate(effectPrefab, _parent.transform); - link.transform.localPosition = _move; - _parent.GetComponent().effectsLink.Add(link); + + if (_parent.name == "Player(Clone)") + { + var _move = new Vector3(185, 86 - 100 * _numInColumn, 0); + link.transform.localScale = new Vector3(0.3f, 0.3f, 0.3f); + link.transform.localPosition = _move; + _parent.GetComponent().effectsLink.Add(link); + } + else + { + var _move = new Vector3(520, -369 - 300 * _numInColumn, 0); + link.transform.localPosition = _move; + _parent.GetComponent().effectsLink.Add(link); + } + } } diff --git a/Assets/Scripts/Player.cs b/Assets/Scripts/Player.cs index cd55e3da..60c94174 100644 --- a/Assets/Scripts/Player.cs +++ b/Assets/Scripts/Player.cs @@ -23,6 +23,13 @@ public class Player : MonoBehaviour [SerializeField] private int hp; [SerializeField] private int armor; + public List effectsName = new List(); + public List effectsTurns = new List(); + public List effectsDamage = new List(); + + [HideInInspector] public List effectsLink = new List(); + + [HideInInspector] public bool hasStun = false; private void Awake() { @@ -99,6 +106,42 @@ public class Player : MonoBehaviour } + public void EffectsBy() + { + for (int i = 0; i < effectsName.Count; i++) + { + if (effectsName[i] == "poison") + { + LibraryEffects.main.Poison(gameObject, effectsDamage[i]); + effectsTurns[i] -= 1; + } + + if (effectsName[i] == "stun") + { + LibraryEffects.main.Stun(gameObject); + effectsTurns[i] -= 1; + } + } + + var _dopCounter = 0; + var _effectsCount = effectsName.Count; + for (int i = 0; i < _effectsCount; i++) + { + if (effectsTurns[_dopCounter] <= 0) + { + effectsName.Remove(effectsName[_dopCounter]); + effectsTurns.Remove(effectsTurns[_dopCounter]); + effectsDamage.Remove(effectsDamage[_dopCounter]); + Destroy(effectsLink[_dopCounter]); + effectsLink.RemoveAt(_dopCounter); + } + else + { + _dopCounter += 1; + } + } + } + public void OnClick() { //DeckManager.main.ActionInPlayer(); diff --git a/Library/ArtifactDB b/Library/ArtifactDB index a85b1df0..0ce6ba12 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index 03d85935..14ca2c24 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -21,7 +21,7 @@ MonoBehaviour: m_ShowMode: 4 m_Title: Game m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 300} + m_MinSize: {x: 875, y: 542} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 @@ -45,10 +45,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 679, y: 342} - m_MaxSize: {x: 12004, y: 8042} + m_MinSize: {x: 678, y: 492} + m_MaxSize: {x: 14001, y: 14042} vertical: 0 - controlID: 17 + controlID: 123 --- !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} @@ -95,8 +95,8 @@ MonoBehaviour: y: 0 width: 379 height: 589 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 16} m_Panes: - {fileID: 16} @@ -112,7 +112,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ConsoleWindow + m_Name: ProjectBrowser m_EditorClassIdentifier: m_Children: [] m_Position: @@ -121,14 +121,14 @@ MonoBehaviour: y: 589 width: 1531 height: 358 - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 19} + m_MinSize: {x: 231, y: 271} + m_MaxSize: {x: 10001, y: 10021} + m_ActualView: {fileID: 14} m_Panes: - {fileID: 14} - {fileID: 19} - m_Selected: 1 - m_LastSelected: 0 + m_Selected: 0 + m_LastSelected: 1 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -224,10 +224,10 @@ MonoBehaviour: y: 0 width: 1531 height: 947 - m_MinSize: {x: 403, y: 342} - m_MaxSize: {x: 8003, y: 8042} + m_MinSize: {x: 403, y: 492} + m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 68 + controlID: 62 --- !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: 69 + controlID: 63 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -381,10 +381,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 79} - m_SelectedIDs: ee470000 - m_LastClickedID: 18414 - m_ExpandedIDs: 000000002a470000144c0000244e0000fe4f0000b653000000ca9a3b + scrollPos: {x: 0, y: 19} + m_SelectedIDs: 4c470000 + m_LastClickedID: 18252 + m_ExpandedIDs: 000000002e47000044470000484700007a47000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -412,7 +412,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 000000002a470000 + m_ExpandedIDs: 000000002e470000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -500,7 +500,7 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 0 + m_LastVerticalScrollValue: 492 m_GlobalObjectId: m_LockTracker: m_IsLocked: 0 @@ -533,9 +533,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: + m_SelectedIDs: 5e470000 m_LastClickedID: 0 - m_ExpandedIDs: 0a42feff9e5ffeff7eadfeff72b1feff8cb5feff66c0feff80c4feff84e3fefffae3feff14e8feff70eefeff803affff044effffc254ffffdc58ffff2a87ffff9ee0ffff3efbffff40fbffffc64300002e440000344400008a6500009c650000b66500001e71000030710000467100004a7100008076000092760000a8760000ac7600004a7800007278000076780000147b0000267b00003c7b0000407b00007089000082890000988900009c8900003c8b0000648b0000688b00006c9200009492000098920000049600002c96000030960000d0970000f8970000fc9700002ea6000056a600005aa6000096ab0000beab0000c2ab0000 + m_ExpandedIDs: b2bafeff68c0feffacc3feff94dffeffd8e2feff1cf3feff08fdfeff7a54ffffe27bffff887fffff9cc4ffff54cafffffacdffff3efbffff40fbffffca43000032440000384400005c6200006e6200008462000088620000266400004e64000052640000226d0000346d00004a6d00004e6d0000e68a0000f88a0000b48c0000c68c00001692000028920000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -595,9 +595,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1263.6136, y: 603.8462, z: -41.184925} + m_Target: {x: 770.0852, y: 687.84326, z: -37.371067} speed: 2 - m_Value: {x: 1263.6136, y: 603.8462, z: -41.184925} + m_Value: {x: 770.0852, y: 687.84326, z: -37.371067} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -648,9 +648,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 897.4202 + m_Target: 408.0083 speed: 2 - m_Value: 897.4202 + m_Value: 408.0083 m_Ortho: m_Target: 1 speed: 2 diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 9149fc33..448880e0 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 5eda1691..21c03021 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 7cf69f99..786041c3 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 d4bcebc0..8361a3c3 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 96733a46..980bc858 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt index f83ab636..e89f1156 100644 --- a/Logs/ApiUpdaterCheck.txt +++ b/Logs/ApiUpdaterCheck.txt @@ -899,3 +899,33 @@ C# parse time : 138ms candidates check time : 34ms console write time : 0ms +[api-updater (non-obsolete-error-filter)] 11.03.2022 17:43:48 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 380,2679ms +moved types parse time: 39ms +candidates parse time : 9ms +C# parse time : 184ms +candidates check time : 34ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 11.03.2022 17:47:57 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 56,5193ms +moved types parse time: 50ms +candidates parse time : 8ms +C# parse time : 131ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 11.03.2022 18:52:46 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 56,3569ms +moved types parse time: 37ms +candidates parse time : 8ms +C# parse time : 129ms +candidates check time : 29ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index 4a966f19..329361d8 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -52040 +57239 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 27.86 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.18 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:56316 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56080 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.001198 seconds. +Registered in 0.001221 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 29.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 31.30 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.451 seconds +- Completed reload, in 1.498 seconds Domain Reload Profiling: - ReloadAssembly (1451ms) - BeginReloadAssembly (38ms) + ReloadAssembly (1498ms) + BeginReloadAssembly (36ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) EndReloadAssembly (279ms) - LoadAssemblies (37ms) + LoadAssemblies (34ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (91ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (23ms) - SetupLoadedEditorAssemblies (116ms) + RebuildScriptCaches (22ms) + SetupLoadedEditorAssemblies (119ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (30ms) - BeforeProcessingInitializeOnLoad (11ms) + RefreshPlugins (31ms) + BeforeProcessingInitializeOnLoad (12ms) ProcessInitializeOnLoadAttributes (53ms) - ProcessInitializeOnLoadMethodAttributes (18ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001149 seconds. +Registered in 0.001222 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 31.20 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.50 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.855 seconds +- Completed reload, in 0.736 seconds Domain Reload Profiling: - ReloadAssembly (855ms) - BeginReloadAssembly (91ms) + ReloadAssembly (737ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (12ms) - EndReloadAssembly (725ms) - LoadAssemblies (204ms) + EndReloadAssembly (606ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (168ms) + SetupTypeCache (173ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (242ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (255ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (31ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (11ms) 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: 2582. -Total: 2.072600 ms (FindLiveObjects: 0.128300 ms CreateObjectMapping: 0.042200 ms MarkObjects: 1.826700 ms DeleteObjects: 0.074500 ms) +Total: 2.040900 ms (FindLiveObjects: 0.123800 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.794300 ms DeleteObjects: 0.075000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,112 +131,93 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7656a213512f01cb895b4d0ecd5e3f97') in 0.030472 seconds - Import took 0.032588 seconds . + path: Assets/Scripts/Configs/CardConfigs/BigHealing.asset + artifactKey: Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/BigHealing.asset using Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc08159ef9d90a45280df2390088f09a') in 0.041795 seconds + Import took 0.044013 seconds . ======================================================================== Received Import Request. - Time since last request: 59.698907 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '820d495a05873f2f4a91866a718ab4a6') in 0.001028 seconds - Import took 0.003791 seconds . + Time since last request: 0.000235 seconds. + path: Assets/Scripts/Configs/CardConfigs/SmallHealing.asset + artifactKey: Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/SmallHealing.asset using Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29aaf2fa2a875f729521eb9b2763ee43') in 0.001679 seconds + Import took 0.003742 seconds . ======================================================================== Received Import Request. - Time since last request: 7.826742 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3211da9842db81600671c9272ae33d1a') in 0.001058 seconds - Import took 0.003794 seconds . + Time since last request: 0.000215 seconds. + path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset + artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0c2ea0b5ff3bc328cb6de5bab85e6e3') in 0.004733 seconds + Import took 0.007170 seconds . ======================================================================== Received Import Request. - Time since last request: 71.050877 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3bf9fc6b2bdf71ebe82eec8323cf407') in 0.000981 seconds - Import took 0.003596 seconds . + Time since last request: 0.000248 seconds. + path: Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset + artifactKey: Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset using Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d9ad7b58a56fbeb9765ca6085540392') in 0.001599 seconds + Import took 0.003976 seconds . ======================================================================== Received Import Request. - Time since last request: 30.937987 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '724f711e3076873fc2857bcc7f272a25') in 0.001011 seconds - Import took 0.003724 seconds . - -======================================================================== -Received Import Request. - Time since last request: 85.224252 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e687bd819443a7e465f773748110316') in 0.016837 seconds - Import took 0.019502 seconds . - -======================================================================== -Received Import Request. - Time since last request: 11.891064 seconds. + Time since last request: 0.000282 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: '384713e13e3a0b63de4ea3a684aac50b') in 0.021241 seconds - Import took 0.025018 seconds . +Start importing Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset using Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac40ca20d6343c9168f89ecbaa27ad57') in 0.001669 seconds + Import took 0.004399 seconds . ======================================================================== Received Import Request. - Time since last request: 0.030117 seconds. + Time since last request: 0.000134 seconds. path: Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset artifactKey: Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '484088d9fc46576b9813f5542fd2dbb0') in 0.002942 seconds - Import took 0.006901 seconds . +Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '274e7c71eaf88751ce00ebc8efafecba') in 0.001485 seconds + Import took 0.003777 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000143 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: '51eeed4e8bca48b6e9763bad984a231a') in 0.001486 seconds + Import took 0.003685 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000119 seconds. + path: Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset + artifactKey: Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset using Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c543cb99f1c4bad3cb259af6a57492b4') in 0.001517 seconds + Import took 0.003807 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000128 seconds. + path: Assets/Scripts/Configs/CardConfigs/SniperRifle.asset + artifactKey: Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/SniperRifle.asset using Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fac3e8b856d3709892a134d7a43d7115') in 0.001393 seconds + Import took 0.003689 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.174220 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: '3cb2051b54f2729885c8e3c53b4406fb') in 0.042869 seconds + Import took 0.045082 seconds . ======================================================================== Received Prepare -Registering precompiled user dll's ... -Registered in 0.001890 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.76 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 (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (578ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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 13 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 52.9 MB. +System memory in use after: 53.0 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2584. -Total: 2.234800 ms (FindLiveObjects: 0.126100 ms CreateObjectMapping: 0.038200 ms MarkObjects: 2.054600 ms DeleteObjects: 0.014500 ms) +Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 2582. +Total: 2.402100 ms (FindLiveObjects: 0.142700 ms CreateObjectMapping: 0.070500 ms MarkObjects: 2.176900 ms DeleteObjects: 0.011300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -249,35 +230,115 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 316.511448 seconds. + path: Assets/Graphics/Effects/vector-stars-icon-png_308883-removebg-preview.png + artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Effects/vector-stars-icon-png_308883-removebg-preview.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b7552520d79e021850e1bc9a8038d2f') in 0.062564 seconds + Import took 0.065499 seconds . + +======================================================================== +Received Import Request. + Time since last request: 12.705777 seconds. + path: Assets/Graphics/Effects/ыегт.png + artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Effects/ыегт.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ffcb4b6523bd9821c682a228beeb6df') in 0.014460 seconds + Import took 0.016860 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7.703790 seconds. + path: Assets/Graphics/Effects/stun.png + artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Effects/stun.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04f884984d4281ffc856531f459ceb9e') in 0.031560 seconds + Import took 0.033934 seconds . + +======================================================================== +Received Import Request. + Time since last request: 26.716498 seconds. + path: Assets/Graphics/Effects/poison_dop.png + artifactKey: Guid(aaede90ffe96b2940b8e63f884f5e7d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Effects/poison_dop.png using Guid(aaede90ffe96b2940b8e63f884f5e7d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e866d98699201727422ca934c29b7958') in 0.018251 seconds + Import took 0.020756 seconds . + +======================================================================== +Received Import Request. + Time since last request: 5.400800 seconds. + path: Assets/Graphics/Effects/poison.png + artifactKey: Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Effects/poison.png using Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17db854e7f64fd0735d69cc95ce9d20c') in 0.016081 seconds + Import took 0.018483 seconds . + +======================================================================== +Received Import Request. + Time since last request: 128.961928 seconds. + path: Assets/Prefabs/Enemy + artifactKey: Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy using Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fce1d80a97414ba1c8e8727fb455b85') in 0.021807 seconds + Import took 0.024317 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.047640 seconds. + path: Assets/Prefabs/Enemy/MiniGolem.prefab + artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d065d5852b482d0a3a820c1da83be76') in 0.242974 seconds + Import took 0.245553 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000208 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e25fda4fead1bea451da015ae9cae607') in 0.009790 seconds + Import took 0.012350 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000238 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44c7593b8fca4651011a3ae236456f0c') in 0.005114 seconds + Import took 0.007656 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000255 seconds. + path: Assets/Prefabs/Enemy/Shaman.prefab + artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bd5648068e034400a979f2e5e14d1d5') in 0.004254 seconds + Import took 0.006718 seconds . + +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001155 seconds. +Registered in 0.001120 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.732 seconds +- Completed reload, in 0.745 seconds Domain Reload Profiling: - ReloadAssembly (732ms) - BeginReloadAssembly (93ms) + ReloadAssembly (745ms) + BeginReloadAssembly (88ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (582ms) - LoadAssemblies (61ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (617ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) + SetupTypeCache (207ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (233ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (244ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) + BeforeProcessingInitializeOnLoad (76ms) ProcessInitializeOnLoadAttributes (154ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) @@ -285,70 +346,14 @@ Domain Reload Profiling: 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.6 MB. -System memory in use after: 94.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. -Total: 2.014200 ms (FindLiveObjects: 0.120400 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.836600 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.001306 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.680 seconds -Domain Reload Profiling: - ReloadAssembly (680ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (559ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - 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.6 MB. -System memory in use after: 94.7 MB. +System memory in use before: 97.5 MB. +System memory in use after: 97.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. -Total: 2.207100 ms (FindLiveObjects: 0.122800 ms CreateObjectMapping: 0.044600 ms MarkObjects: 2.012900 ms DeleteObjects: 0.025900 ms) +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2590. +Total: 2.249600 ms (FindLiveObjects: 0.168600 ms CreateObjectMapping: 0.050600 ms MarkObjects: 2.006300 ms DeleteObjects: 0.023200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -363,249 +368,25 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001506 seconds. +Registered in 0.001162 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.738 seconds +- Completed reload, in 0.724 seconds Domain Reload Profiling: - ReloadAssembly (738ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (610ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -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: 2590. -Total: 2.081800 ms (FindLiveObjects: 0.124300 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.884500 ms DeleteObjects: 0.027800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001223 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.752 seconds -Domain Reload Profiling: - ReloadAssembly (752ms) - BeginReloadAssembly (91ms) + ReloadAssembly (724ms) + BeginReloadAssembly (96ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (25ms) - EndReloadAssembly (616ms) - LoadAssemblies (65ms) + EndReloadAssembly (588ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 2592. -Total: 2.228700 ms (FindLiveObjects: 0.134800 ms CreateObjectMapping: 0.042000 ms MarkObjects: 2.023700 ms DeleteObjects: 0.027000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001355 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.715 seconds -Domain Reload Profiling: - ReloadAssembly (715ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (593ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (162ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - 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.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. -Total: 2.159300 ms (FindLiveObjects: 0.124200 ms CreateObjectMapping: 0.041800 ms MarkObjects: 1.977900 ms DeleteObjects: 0.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001256 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 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 (769ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (625ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - 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.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: 2596. -Total: 2.037000 ms (FindLiveObjects: 0.162600 ms CreateObjectMapping: 0.058200 ms MarkObjects: 1.801500 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.712 seconds -Domain Reload Profiling: - ReloadAssembly (712ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (577ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) + SetupTypeCache (188ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (38ms) SetupLoadedEditorAssemblies (230ms) @@ -619,128 +400,16 @@ Domain Reload Profiling: 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.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. -Total: 1.978800 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.788200 ms DeleteObjects: 0.026200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001109 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.721 seconds -Domain Reload Profiling: - ReloadAssembly (721ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (586ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (161ms) - 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: 2600. -Total: 2.096900 ms (FindLiveObjects: 0.123400 ms CreateObjectMapping: 0.041300 ms MarkObjects: 1.905900 ms DeleteObjects: 0.025400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001871 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.696 seconds -Domain Reload Profiling: - ReloadAssembly (696ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (566ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.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. +System memory in use before: 97.6 MB. +System memory in use after: 97.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. -Total: 2.033100 ms (FindLiveObjects: 0.117500 ms CreateObjectMapping: 0.042400 ms MarkObjects: 1.847200 ms DeleteObjects: 0.025000 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. +Total: 2.336500 ms (FindLiveObjects: 0.118600 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.144000 ms DeleteObjects: 0.029300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -753,218 +422,82 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001146 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.713 seconds -Domain Reload Profiling: - ReloadAssembly (713ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (568ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -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. +Received Import Request. + Time since last request: 462.859089 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '870971db9fe404793206ef042fe00f57') in 0.037455 seconds + Import took 0.040235 seconds . -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. -Total: 2.119900 ms (FindLiveObjects: 0.127100 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.935800 ms DeleteObjects: 0.014100 ms) +======================================================================== +Received Import Request. + Time since last request: 0.000223 seconds. + path: Assets/Prefabs/Enemy/MiniGolem.prefab + artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72b15646062116ef01c773598baa33c4') in 0.007236 seconds + Import took 0.010390 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000137 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0f298e3e73ba8e09aba5ac469291b9b') in 0.007880 seconds + Import took 0.010760 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000158 seconds. + path: Assets/Prefabs/Enemy/Shaman.prefab + artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4473763fcec1f20d68b8da55facfc3a') in 0.013675 seconds + Import took 0.016270 seconds . -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001235 seconds. +Registered in 0.001761 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.693 seconds +- Completed reload, in 0.705 seconds Domain Reload Profiling: - ReloadAssembly (693ms) - BeginReloadAssembly (91ms) + ReloadAssembly (706ms) + BeginReloadAssembly (85ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (559ms) - LoadAssemblies (58ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (572ms) + LoadAssemblies (59ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (169ms) + SetupTypeCache (183ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (228ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (225ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (151ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 2606. -Total: 1.977400 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.040800 ms MarkObjects: 1.804500 ms DeleteObjects: 0.011300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001154 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.696 seconds -Domain Reload Profiling: - ReloadAssembly (697ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (561ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) ProcessInitializeOnLoadAttributes (146ms) - 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.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2608. -Total: 2.489400 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.048600 ms MarkObjects: 2.294700 ms DeleteObjects: 0.016400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001235 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 seconds -Domain Reload Profiling: - ReloadAssembly (701ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (571ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (169ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. 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. +System memory in use before: 97.6 MB. +System memory in use after: 97.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. -Total: 2.046200 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.046400 ms MarkObjects: 1.853800 ms DeleteObjects: 0.016300 ms) +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2594. +Total: 1.899000 ms (FindLiveObjects: 0.121700 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.715200 ms DeleteObjects: 0.016500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -979,34 +512,34 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001243 seconds. +Registered in 0.001468 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.706 seconds +- Completed reload, in 0.695 seconds Domain Reload Profiling: - ReloadAssembly (707ms) - BeginReloadAssembly (77ms) + ReloadAssembly (696ms) + BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (588ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (569ms) LoadAssemblies (57ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) + SetupTypeCache (184ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) + RebuildScriptCaches (37ms) SetupLoadedEditorAssemblies (227ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (147ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -1016,11 +549,11 @@ 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. +System memory in use before: 97.6 MB. +System memory in use after: 97.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2612. -Total: 1.936200 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.753400 ms DeleteObjects: 0.012500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. +Total: 2.011700 ms (FindLiveObjects: 0.134200 ms CreateObjectMapping: 0.053400 ms MarkObjects: 1.806500 ms DeleteObjects: 0.016300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1035,272 +568,48 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001183 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.716 seconds -Domain Reload Profiling: - ReloadAssembly (716ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (576ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - 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.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2614. -Total: 1.912800 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.044100 ms MarkObjects: 1.735600 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001260 seconds. +Registered in 0.001199 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.697 seconds +- Completed reload, in 0.722 seconds Domain Reload Profiling: - ReloadAssembly (698ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (562ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (148ms) - 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.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2616. -Total: 2.161900 ms (FindLiveObjects: 0.123600 ms CreateObjectMapping: 0.046200 ms MarkObjects: 1.972700 ms DeleteObjects: 0.018600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.43 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 (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (556ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (223ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (145ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 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: 2618. -Total: 1.936300 ms (FindLiveObjects: 0.122600 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.754100 ms DeleteObjects: 0.012100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom: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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.746 seconds -Domain Reload Profiling: - ReloadAssembly (746ms) - BeginReloadAssembly (94ms) + ReloadAssembly (723ms) + BeginReloadAssembly (99ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (607ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - 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.38 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: 2620. -Total: 2.210600 ms (FindLiveObjects: 0.126000 ms CreateObjectMapping: 0.045400 ms MarkObjects: 2.023500 ms DeleteObjects: 0.014800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001313 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.776 seconds -Domain Reload Profiling: - ReloadAssembly (776ms) - BeginReloadAssembly (97ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (634ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (579ms) LoadAssemblies (62ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (203ms) + SetupTypeCache (182ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (250ms) + SetupLoadedEditorAssemblies (227ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (167ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 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. +System memory in use before: 97.6 MB. +System memory in use after: 97.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2622. -Total: 2.195200 ms (FindLiveObjects: 0.138400 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.995100 ms DeleteObjects: 0.015500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. +Total: 1.974100 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.795300 ms DeleteObjects: 0.013900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1318,45 +627,5381 @@ Registering precompiled user dll's ... Registered in 0.001242 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.695 seconds +- Completed reload, in 0.763 seconds Domain Reload Profiling: - ReloadAssembly (696ms) - BeginReloadAssembly (80ms) + ReloadAssembly (763ms) + BeginReloadAssembly (86ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (573ms) - LoadAssemblies (56ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (634ms) + LoadAssemblies (76ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) + SetupTypeCache (209ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (242ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (232ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (167ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (154ms) 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: 97.6 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. +Total: 1.924400 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.736600 ms DeleteObjects: 0.011500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001210 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.701 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (563ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + 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. +System memory in use before: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. +Total: 1.928100 ms (FindLiveObjects: 0.122200 ms CreateObjectMapping: 0.051500 ms MarkObjects: 1.741700 ms DeleteObjects: 0.011900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001292 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.675 seconds +Domain Reload Profiling: + ReloadAssembly (675ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (554ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (217ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + 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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. +Total: 2.011900 ms (FindLiveObjects: 0.122400 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.814400 ms DeleteObjects: 0.026000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001304 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.687 seconds +Domain Reload Profiling: + ReloadAssembly (688ms) + BeginReloadAssembly (75ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (573ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2606. +Total: 2.028100 ms (FindLiveObjects: 0.153000 ms CreateObjectMapping: 0.048200 ms MarkObjects: 1.811000 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.001151 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.741 seconds +Domain Reload Profiling: + ReloadAssembly (741ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (622ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + 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.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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2608. +Total: 2.576100 ms (FindLiveObjects: 0.135900 ms CreateObjectMapping: 0.058300 ms MarkObjects: 2.365700 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.001145 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.755 seconds +Domain Reload Profiling: + ReloadAssembly (755ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (619ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. +Total: 2.058200 ms (FindLiveObjects: 0.125900 ms CreateObjectMapping: 0.039700 ms MarkObjects: 1.876900 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001863 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.751 seconds +Domain Reload Profiling: + ReloadAssembly (752ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (625ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (260ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2612. +Total: 2.067000 ms (FindLiveObjects: 0.178200 ms CreateObjectMapping: 0.057800 ms MarkObjects: 1.814700 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.001173 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.719 seconds +Domain Reload Profiling: + ReloadAssembly (719ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (588ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (162ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + 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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2614. +Total: 2.162200 ms (FindLiveObjects: 0.181800 ms CreateObjectMapping: 0.052700 ms MarkObjects: 1.886900 ms DeleteObjects: 0.027900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001262 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.801 seconds +Domain Reload Profiling: + ReloadAssembly (802ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (667ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (277ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2616. +Total: 2.071500 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.860200 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.001324 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.751 seconds +Domain Reload Profiling: + ReloadAssembly (751ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (625ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (167ms) + 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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2618. +Total: 2.136500 ms (FindLiveObjects: 0.128200 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.948000 ms DeleteObjects: 0.014000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001269 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.762 seconds +Domain Reload Profiling: + ReloadAssembly (762ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (625ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (193ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + 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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2620. +Total: 2.170500 ms (FindLiveObjects: 0.158400 ms CreateObjectMapping: 0.048100 ms MarkObjects: 1.948700 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.001263 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.711 seconds +Domain Reload Profiling: + ReloadAssembly (712ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (587ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2622. +Total: 1.998400 ms (FindLiveObjects: 0.141500 ms CreateObjectMapping: 0.044600 ms MarkObjects: 1.795000 ms DeleteObjects: 0.016500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001309 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.743 seconds +Domain Reload Profiling: + ReloadAssembly (743ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (610ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + 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.40 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: 97.7 MB. +System memory in use after: 97.8 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2624. -Total: 1.936700 ms (FindLiveObjects: 0.121500 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.754500 ms DeleteObjects: 0.014900 ms) +Total: 2.039400 ms (FindLiveObjects: 0.128600 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.849600 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.001146 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.702 seconds +Domain Reload Profiling: + ReloadAssembly (703ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (575ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.7 MB. +System memory in use after: 97.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2626. +Total: 2.076500 ms (FindLiveObjects: 0.132900 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.873100 ms DeleteObjects: 0.016400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001251 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.755 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (624ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (201ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2628. +Total: 2.049000 ms (FindLiveObjects: 0.140400 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.841500 ms DeleteObjects: 0.017600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001156 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.692 seconds +Domain Reload Profiling: + ReloadAssembly (692ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (561ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +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: 97.7 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. +Total: 1.908000 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.730600 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001284 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.741 seconds +Domain Reload Profiling: + ReloadAssembly (741ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (603ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. +Total: 1.990500 ms (FindLiveObjects: 0.121000 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.811200 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.001311 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.744 seconds +Domain Reload Profiling: + ReloadAssembly (745ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (615ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.51 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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. +Total: 2.030100 ms (FindLiveObjects: 0.130800 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.837700 ms DeleteObjects: 0.012800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001465 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.778 seconds +Domain Reload Profiling: + ReloadAssembly (778ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (638ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (256ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (168ms) + 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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2636. +Total: 2.117500 ms (FindLiveObjects: 0.133000 ms CreateObjectMapping: 0.041500 ms MarkObjects: 1.928100 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.001260 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.729 seconds +Domain Reload Profiling: + ReloadAssembly (730ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (606ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (162ms) + 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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. +Total: 1.990100 ms (FindLiveObjects: 0.131700 ms CreateObjectMapping: 0.047000 ms MarkObjects: 1.793000 ms DeleteObjects: 0.017400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001365 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.744 seconds +Domain Reload Profiling: + ReloadAssembly (744ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (617ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + 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.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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. +Total: 2.155700 ms (FindLiveObjects: 0.146600 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.940400 ms DeleteObjects: 0.018000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001174 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.685 seconds +Domain Reload Profiling: + ReloadAssembly (685ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (558ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. +Total: 2.274800 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.065400 ms DeleteObjects: 0.026200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001320 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.696 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (572ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + 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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. +Total: 1.974300 ms (FindLiveObjects: 0.121600 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.795000 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.001367 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.724 seconds +Domain Reload Profiling: + ReloadAssembly (725ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (579ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. +Total: 2.030000 ms (FindLiveObjects: 0.121800 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.849200 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001210 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.721 seconds +Domain Reload Profiling: + ReloadAssembly (721ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (589ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (148ms) + 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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. +Total: 2.016100 ms (FindLiveObjects: 0.119200 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.835600 ms DeleteObjects: 0.012700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001280 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.697 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (572ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2650. +Total: 2.041400 ms (FindLiveObjects: 0.143400 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.834300 ms DeleteObjects: 0.015900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001222 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.698 seconds +Domain Reload Profiling: + ReloadAssembly (699ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (571ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. +Total: 2.191100 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.986900 ms DeleteObjects: 0.029400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001148 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.708 seconds +Domain Reload Profiling: + ReloadAssembly (708ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (572ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.8 MB. +System memory in use after: 97.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2654. +Total: 2.095200 ms (FindLiveObjects: 0.131400 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.898300 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: 2615.943845 seconds. + path: Assets/Prefabs/Enemy/MiniGolem.prefab + artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22e4f3efbbde72906e86c7b848ab2804') in 0.060848 seconds + Import took 0.063967 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.646041 seconds. + path: Assets/Prefabs/Enemy/MiniGolem.prefab + artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9bd3f86ba8d8b8a2ef1906e8eafb09c') in 0.014367 seconds + Import took 0.017024 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001178 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 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 (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (562ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (219ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (145ms) + 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: 97.8 MB. +System memory in use after: 98.0 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2656. +Total: 2.305900 ms (FindLiveObjects: 0.173700 ms CreateObjectMapping: 0.062700 ms MarkObjects: 2.048900 ms DeleteObjects: 0.019700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001169 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.707 seconds +Domain Reload Profiling: + ReloadAssembly (707ms) + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (570ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. +Total: 2.146000 ms (FindLiveObjects: 0.137500 ms CreateObjectMapping: 0.060500 ms MarkObjects: 1.932200 ms DeleteObjects: 0.014800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001229 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.711 seconds +Domain Reload Profiling: + ReloadAssembly (712ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (569ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2660. +Total: 2.029800 ms (FindLiveObjects: 0.123900 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.847500 ms DeleteObjects: 0.012800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001224 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.740 seconds +Domain Reload Profiling: + ReloadAssembly (741ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (611ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. +Total: 2.090900 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.897300 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.001298 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.779 seconds +Domain Reload Profiling: + ReloadAssembly (779ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (641ms) + LoadAssemblies (68ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. +Total: 2.151900 ms (FindLiveObjects: 0.132400 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.959900 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001263 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 (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (619ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. +Total: 2.145600 ms (FindLiveObjects: 0.125700 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.961600 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.001173 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 (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (575ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. +Total: 2.191300 ms (FindLiveObjects: 0.164400 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.953900 ms DeleteObjects: 0.025700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001221 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.714 seconds +Domain Reload Profiling: + ReloadAssembly (714ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (582ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. +Total: 2.387800 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.045800 ms MarkObjects: 2.197300 ms DeleteObjects: 0.015800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001166 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.703 seconds +Domain Reload Profiling: + ReloadAssembly (704ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (575ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + 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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. +Total: 2.349000 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.047400 ms MarkObjects: 2.160900 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001239 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.744 seconds +Domain Reload Profiling: + ReloadAssembly (744ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (623ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + 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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. +Total: 2.340600 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.046600 ms MarkObjects: 2.150600 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001171 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.711 seconds +Domain Reload Profiling: + ReloadAssembly (711ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (587ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + 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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. +Total: 2.075900 ms (FindLiveObjects: 0.132700 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.880700 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.001311 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.735 seconds +Domain Reload Profiling: + ReloadAssembly (736ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (604ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (162ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. +Total: 2.223000 ms (FindLiveObjects: 0.152800 ms CreateObjectMapping: 0.070400 ms MarkObjects: 1.985700 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001155 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.764 seconds +Domain Reload Profiling: + ReloadAssembly (764ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (624ms) + LoadAssemblies (70ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. +Total: 2.057000 ms (FindLiveObjects: 0.129700 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.867900 ms DeleteObjects: 0.013800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001318 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.725 seconds +Domain Reload Profiling: + ReloadAssembly (725ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (592ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2682. +Total: 1.991400 ms (FindLiveObjects: 0.123500 ms CreateObjectMapping: 0.043800 ms MarkObjects: 1.798400 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001247 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.752 seconds +Domain Reload Profiling: + ReloadAssembly (753ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (620ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +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: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2684. +Total: 1.992400 ms (FindLiveObjects: 0.132500 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.800300 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.001241 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.689 seconds +Domain Reload Profiling: + ReloadAssembly (689ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (565ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2686. +Total: 2.018600 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.050000 ms MarkObjects: 1.832600 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001122 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.716 seconds +Domain Reload Profiling: + ReloadAssembly (717ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (596ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (181ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2688. +Total: 1.981800 ms (FindLiveObjects: 0.132800 ms CreateObjectMapping: 0.045600 ms MarkObjects: 1.789600 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.001173 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.701 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (75ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (586ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (160ms) + 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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2690. +Total: 2.056400 ms (FindLiveObjects: 0.138000 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.855100 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.001893 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.739 seconds +Domain Reload Profiling: + ReloadAssembly (739ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (609ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2692. +Total: 2.090100 ms (FindLiveObjects: 0.133900 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.894000 ms DeleteObjects: 0.015900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001122 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.735 seconds +Domain Reload Profiling: + ReloadAssembly (735ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (596ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + 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.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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2694. +Total: 1.995800 ms (FindLiveObjects: 0.124200 ms CreateObjectMapping: 0.047600 ms MarkObjects: 1.809400 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.001383 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.706 seconds +Domain Reload Profiling: + ReloadAssembly (707ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (589ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (165ms) + 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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2696. +Total: 1.975800 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.770900 ms DeleteObjects: 0.026800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001143 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.678 seconds +Domain Reload Profiling: + ReloadAssembly (678ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (560ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2698. +Total: 2.008700 ms (FindLiveObjects: 0.131500 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.817000 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.001182 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.739 seconds +Domain Reload Profiling: + ReloadAssembly (739ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (615ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (199ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2700. +Total: 2.718100 ms (FindLiveObjects: 0.142900 ms CreateObjectMapping: 0.047600 ms MarkObjects: 2.507200 ms DeleteObjects: 0.019000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001530 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.719 seconds +Domain Reload Profiling: + ReloadAssembly (719ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (587ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.49 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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2702. +Total: 2.040700 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.852700 ms DeleteObjects: 0.014400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001454 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.700 seconds +Domain Reload Profiling: + ReloadAssembly (700ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (582ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2704. +Total: 1.943900 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.051800 ms MarkObjects: 1.749800 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001210 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.692 seconds +Domain Reload Profiling: + ReloadAssembly (692ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (561ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (147ms) + 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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2706. +Total: 2.004700 ms (FindLiveObjects: 0.135900 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.804900 ms DeleteObjects: 0.014800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001154 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.748 seconds +Domain Reload Profiling: + ReloadAssembly (749ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (613ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2708. +Total: 2.338400 ms (FindLiveObjects: 0.133300 ms CreateObjectMapping: 0.047400 ms MarkObjects: 2.132100 ms DeleteObjects: 0.024700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001994 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.726 seconds +Domain Reload Profiling: + ReloadAssembly (726ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (597ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.0 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2710. +Total: 1.973800 ms (FindLiveObjects: 0.130200 ms CreateObjectMapping: 0.047500 ms MarkObjects: 1.783000 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001263 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.744 seconds +Domain Reload Profiling: + ReloadAssembly (744ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (607ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.1 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2712. +Total: 2.778400 ms (FindLiveObjects: 0.226800 ms CreateObjectMapping: 0.059300 ms MarkObjects: 2.463900 ms DeleteObjects: 0.026500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001218 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.753 seconds +Domain Reload Profiling: + ReloadAssembly (753ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (628ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (160ms) + 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: 98.1 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2714. +Total: 2.037900 ms (FindLiveObjects: 0.163000 ms CreateObjectMapping: 0.052900 ms MarkObjects: 1.807400 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.001365 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.753 seconds +Domain Reload Profiling: + ReloadAssembly (753ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (620ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.1 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2716. +Total: 2.240200 ms (FindLiveObjects: 0.155200 ms CreateObjectMapping: 0.048600 ms MarkObjects: 2.021500 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.001295 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.768 seconds +Domain Reload Profiling: + ReloadAssembly (768ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (622ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + 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.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: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2718. +Total: 2.273200 ms (FindLiveObjects: 0.146800 ms CreateObjectMapping: 0.050300 ms MarkObjects: 2.060400 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001256 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.755 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (621ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.40 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: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2720. +Total: 2.272400 ms (FindLiveObjects: 0.149600 ms CreateObjectMapping: 0.047100 ms MarkObjects: 2.059700 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.001181 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.740 seconds +Domain Reload Profiling: + ReloadAssembly (741ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (607ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (158ms) + 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2722. +Total: 2.025800 ms (FindLiveObjects: 0.141000 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.821100 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001211 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.725 seconds +Domain Reload Profiling: + ReloadAssembly (725ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (608ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2724. +Total: 2.061100 ms (FindLiveObjects: 0.146400 ms CreateObjectMapping: 0.052600 ms MarkObjects: 1.833800 ms DeleteObjects: 0.027600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001159 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.688 seconds +Domain Reload Profiling: + ReloadAssembly (688ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (568ms) + LoadAssemblies (52ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + 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.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2726. +Total: 2.182500 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.054500 ms MarkObjects: 1.966100 ms DeleteObjects: 0.016500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001187 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.718 seconds +Domain Reload Profiling: + ReloadAssembly (718ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (583ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2728. +Total: 2.118500 ms (FindLiveObjects: 0.150700 ms CreateObjectMapping: 0.055000 ms MarkObjects: 1.897200 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001157 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.714 seconds +Domain Reload Profiling: + ReloadAssembly (714ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (591ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2730. +Total: 2.185000 ms (FindLiveObjects: 0.181700 ms CreateObjectMapping: 0.060100 ms MarkObjects: 1.928200 ms DeleteObjects: 0.014000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001191 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.715 seconds +Domain Reload Profiling: + ReloadAssembly (715ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (584ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + 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.40 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2732. +Total: 2.062600 ms (FindLiveObjects: 0.150100 ms CreateObjectMapping: 0.051200 ms MarkObjects: 1.846500 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.001333 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.682 seconds +Domain Reload Profiling: + ReloadAssembly (682ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (556ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2734. +Total: 2.072200 ms (FindLiveObjects: 0.142200 ms CreateObjectMapping: 0.051700 ms MarkObjects: 1.866300 ms DeleteObjects: 0.011400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001202 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.795 seconds +Domain Reload Profiling: + ReloadAssembly (795ms) + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (631ms) + LoadAssemblies (70ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2736. +Total: 2.156600 ms (FindLiveObjects: 0.146300 ms CreateObjectMapping: 0.052300 ms MarkObjects: 1.941800 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001116 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.689 seconds +Domain Reload Profiling: + ReloadAssembly (690ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (555ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + 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.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2738. +Total: 2.570900 ms (FindLiveObjects: 0.143100 ms CreateObjectMapping: 0.054400 ms MarkObjects: 2.353000 ms DeleteObjects: 0.019300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001212 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.738 seconds +Domain Reload Profiling: + ReloadAssembly (739ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (600ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2740. +Total: 2.175800 ms (FindLiveObjects: 0.164100 ms CreateObjectMapping: 0.062900 ms MarkObjects: 1.932700 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.001294 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.719 seconds +Domain Reload Profiling: + ReloadAssembly (720ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (588ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (167ms) + 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2742. +Total: 2.132100 ms (FindLiveObjects: 0.151100 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.917100 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001935 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.684 seconds +Domain Reload Profiling: + ReloadAssembly (684ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (565ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.53 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2744. +Total: 2.683000 ms (FindLiveObjects: 0.186700 ms CreateObjectMapping: 0.066200 ms MarkObjects: 2.396400 ms DeleteObjects: 0.020000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001728 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.722 seconds +Domain Reload Profiling: + ReloadAssembly (723ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (593ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2746. +Total: 2.282500 ms (FindLiveObjects: 0.151600 ms CreateObjectMapping: 0.050100 ms MarkObjects: 2.041600 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001845 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.759 seconds +Domain Reload Profiling: + ReloadAssembly (759ms) + BeginReloadAssembly (76ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (637ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.53 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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2748. +Total: 2.023600 ms (FindLiveObjects: 0.148500 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.813800 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001126 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.729 seconds +Domain Reload Profiling: + ReloadAssembly (729ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (600ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2750. +Total: 2.201400 ms (FindLiveObjects: 0.146800 ms CreateObjectMapping: 0.049300 ms MarkObjects: 1.988800 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.001166 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.728 seconds +Domain Reload Profiling: + ReloadAssembly (728ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (605ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2752. +Total: 2.022800 ms (FindLiveObjects: 0.146000 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.811200 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001229 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.704 seconds +Domain Reload Profiling: + ReloadAssembly (704ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (578ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (196ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (142ms) + 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2754. +Total: 2.043800 ms (FindLiveObjects: 0.147200 ms CreateObjectMapping: 0.058900 ms MarkObjects: 1.825600 ms DeleteObjects: 0.011400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001194 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.684 seconds +Domain Reload Profiling: + ReloadAssembly (684ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (566ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (144ms) + 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2756. +Total: 2.261300 ms (FindLiveObjects: 0.160500 ms CreateObjectMapping: 0.057800 ms MarkObjects: 2.025800 ms DeleteObjects: 0.016200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001558 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 (76ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (574ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2758. +Total: 2.092700 ms (FindLiveObjects: 0.150800 ms CreateObjectMapping: 0.051400 ms MarkObjects: 1.875000 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.001880 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.768 seconds +Domain Reload Profiling: + ReloadAssembly (768ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (641ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (258ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2760. +Total: 2.375500 ms (FindLiveObjects: 0.156200 ms CreateObjectMapping: 0.054400 ms MarkObjects: 2.147200 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.001518 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.733 seconds +Domain Reload Profiling: + ReloadAssembly (734ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (597ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2762. +Total: 2.193300 ms (FindLiveObjects: 0.147600 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.969100 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001169 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.725 seconds +Domain Reload Profiling: + ReloadAssembly (725ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (599ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + 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.40 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2764. +Total: 2.769200 ms (FindLiveObjects: 0.208300 ms CreateObjectMapping: 0.068300 ms MarkObjects: 2.453300 ms DeleteObjects: 0.037600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001167 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.714 seconds +Domain Reload Profiling: + ReloadAssembly (714ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (593ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2766. +Total: 2.104700 ms (FindLiveObjects: 0.145700 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.884200 ms DeleteObjects: 0.024100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001847 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.735 seconds +Domain Reload Profiling: + ReloadAssembly (735ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (601ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2768. +Total: 2.111000 ms (FindLiveObjects: 0.161900 ms CreateObjectMapping: 0.058500 ms MarkObjects: 1.876300 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.001097 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 (697ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (562ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2770. +Total: 2.203100 ms (FindLiveObjects: 0.195800 ms CreateObjectMapping: 0.071300 ms MarkObjects: 1.906400 ms DeleteObjects: 0.028300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001331 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.702 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (575ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2772. +Total: 2.428400 ms (FindLiveObjects: 0.154100 ms CreateObjectMapping: 0.050600 ms MarkObjects: 2.208300 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001120 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.743 seconds +Domain Reload Profiling: + ReloadAssembly (744ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (616ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2774. +Total: 2.184800 ms (FindLiveObjects: 0.158600 ms CreateObjectMapping: 0.055600 ms MarkObjects: 1.954600 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001171 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.734 seconds +Domain Reload Profiling: + ReloadAssembly (734ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (595ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (174ms) + 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2776. +Total: 2.132300 ms (FindLiveObjects: 0.153400 ms CreateObjectMapping: 0.054600 ms MarkObjects: 1.906400 ms DeleteObjects: 0.017100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001305 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.771 seconds +Domain Reload Profiling: + ReloadAssembly (771ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (634ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2778. +Total: 2.269100 ms (FindLiveObjects: 0.153900 ms CreateObjectMapping: 0.057300 ms MarkObjects: 2.042600 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001184 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.725 seconds +Domain Reload Profiling: + ReloadAssembly (725ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (607ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +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: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2780. +Total: 2.472700 ms (FindLiveObjects: 0.157200 ms CreateObjectMapping: 0.055800 ms MarkObjects: 2.229800 ms DeleteObjects: 0.028700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001325 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.701 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (575ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +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: 98.3 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2782. +Total: 2.067500 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.054100 ms MarkObjects: 1.845600 ms DeleteObjects: 0.016400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001250 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.695 seconds +Domain Reload Profiling: + ReloadAssembly (695ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (569ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + 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.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: 98.3 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2784. +Total: 2.137400 ms (FindLiveObjects: 0.161600 ms CreateObjectMapping: 0.054800 ms MarkObjects: 1.893100 ms DeleteObjects: 0.026300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001104 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 (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (557ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +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: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2786. +Total: 2.080400 ms (FindLiveObjects: 0.155600 ms CreateObjectMapping: 0.055200 ms MarkObjects: 1.853500 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.001196 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.700 seconds +Domain Reload Profiling: + ReloadAssembly (701ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (569ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (224ms) + 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.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: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2788. +Total: 2.026400 ms (FindLiveObjects: 0.150100 ms CreateObjectMapping: 0.054300 ms MarkObjects: 1.809200 ms DeleteObjects: 0.012100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001605 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.693 seconds +Domain Reload Profiling: + ReloadAssembly (693ms) + BeginReloadAssembly (74ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (577ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + 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: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2790. +Total: 2.195700 ms (FindLiveObjects: 0.169500 ms CreateObjectMapping: 0.058200 ms MarkObjects: 1.948200 ms DeleteObjects: 0.018700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 329361d8..68aee0cf 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -1,6 +1,6 @@ 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.1526; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB +OS: 'Windows 10 Pro; OS build 19043.1586; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 COMMAND LINE ARGUMENTS: @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -57239 +52310 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 29.18 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 35.82 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems @@ -35,89 +35,89 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56080 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56124 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.001221 seconds. +Registered in 0.002229 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 31.30 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.74 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.498 seconds +- Completed reload, in 1.598 seconds Domain Reload Profiling: - ReloadAssembly (1498ms) - BeginReloadAssembly (36ms) + ReloadAssembly (1598ms) + BeginReloadAssembly (66ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (279ms) - LoadAssemblies (34ms) + EndReloadAssembly (311ms) + LoadAssemblies (64ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (91ms) + SetupTypeCache (97ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (22ms) - SetupLoadedEditorAssemblies (119ms) + RebuildScriptCaches (26ms) + SetupLoadedEditorAssemblies (134ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (31ms) - BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (53ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + RefreshPlugins (34ms) + BeforeProcessingInitializeOnLoad (13ms) + ProcessInitializeOnLoadAttributes (60ms) + ProcessInitializeOnLoadMethodAttributes (23ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001222 seconds. +Registered in 0.003740 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 30.50 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 35.21 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.736 seconds +- Completed reload, in 1.029 seconds Domain Reload Profiling: - ReloadAssembly (737ms) - BeginReloadAssembly (90ms) + ReloadAssembly (1030ms) + BeginReloadAssembly (100ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - EndReloadAssembly (606ms) - LoadAssemblies (56ms) + CreateAndSetChildDomain (13ms) + EndReloadAssembly (887ms) + LoadAssemblies (225ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) + SetupTypeCache (222ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (255ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (300ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (31ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (150ms) + RefreshPlugins (35ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (177ms) ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2141 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: 2582. -Total: 2.040900 ms (FindLiveObjects: 0.123800 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.794300 ms DeleteObjects: 0.075000 ms) +Total: 2.099300 ms (FindLiveObjects: 0.127800 ms CreateObjectMapping: 0.059300 ms MarkObjects: 1.845800 ms DeleteObjects: 0.065300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -131,2830 +131,57 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/Configs/CardConfigs/BigHealing.asset - artifactKey: Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/BigHealing.asset using Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc08159ef9d90a45280df2390088f09a') in 0.041795 seconds - Import took 0.044013 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000235 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallHealing.asset - artifactKey: Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallHealing.asset using Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29aaf2fa2a875f729521eb9b2763ee43') in 0.001679 seconds - Import took 0.003742 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000215 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset - artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0c2ea0b5ff3bc328cb6de5bab85e6e3') in 0.004733 seconds - Import took 0.007170 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000248 seconds. - path: Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset - artifactKey: Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset using Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d9ad7b58a56fbeb9765ca6085540392') in 0.001599 seconds - Import took 0.003976 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000282 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: 'ac40ca20d6343c9168f89ecbaa27ad57') in 0.001669 seconds - Import took 0.004399 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000134 seconds. - path: Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset - artifactKey: Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '274e7c71eaf88751ce00ebc8efafecba') in 0.001485 seconds - Import took 0.003777 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000143 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: '51eeed4e8bca48b6e9763bad984a231a') in 0.001486 seconds - Import took 0.003685 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000119 seconds. - path: Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset - artifactKey: Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset using Guid(fb9c61e1fbe230545b62b2dc4cdb1472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c543cb99f1c4bad3cb259af6a57492b4') in 0.001517 seconds - Import took 0.003807 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000128 seconds. - path: Assets/Scripts/Configs/CardConfigs/SniperRifle.asset - artifactKey: Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SniperRifle.asset using Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fac3e8b856d3709892a134d7a43d7115') in 0.001393 seconds - Import took 0.003689 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.174220 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: '3cb2051b54f2729885c8e3c53b4406fb') in 0.042869 seconds - Import took 0.045082 seconds . - -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 13 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 52.9 MB. -System memory in use after: 53.0 MB. - -Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 2582. -Total: 2.402100 ms (FindLiveObjects: 0.142700 ms CreateObjectMapping: 0.070500 ms MarkObjects: 2.176900 ms DeleteObjects: 0.011300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 316.511448 seconds. - path: Assets/Graphics/Effects/vector-stars-icon-png_308883-removebg-preview.png - artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/vector-stars-icon-png_308883-removebg-preview.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b7552520d79e021850e1bc9a8038d2f') in 0.062564 seconds - Import took 0.065499 seconds . +Start importing Assets/Scripts/LibraryEffects.cs using Guid(28a7b70cce701c64c8157922e23b706c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '753ea0afb14429ee82086c9b25c7dfab') in 0.027155 seconds + Import took 0.040100 seconds . ======================================================================== Received Import Request. - Time since last request: 12.705777 seconds. - path: Assets/Graphics/Effects/ыегт.png - artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/ыегт.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ffcb4b6523bd9821c682a228beeb6df') in 0.014460 seconds - Import took 0.016860 seconds . + Time since last request: 30.356928 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: '299f90d0c2c5e7076eb7454f5b0d2e4f') in 0.001154 seconds + Import took 0.003595 seconds . ======================================================================== Received Import Request. - Time since last request: 7.703790 seconds. - path: Assets/Graphics/Effects/stun.png - artifactKey: Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/stun.png using Guid(6ec6424c00ba76e468b14f90e4bf20b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04f884984d4281ffc856531f459ceb9e') in 0.031560 seconds - Import took 0.033934 seconds . + Time since last request: 221.325445 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: '88688abd8cead54a9b12cc1481287f10') in 0.001171 seconds + Import took 0.003854 seconds . ======================================================================== Received Import Request. - Time since last request: 26.716498 seconds. - path: Assets/Graphics/Effects/poison_dop.png - artifactKey: Guid(aaede90ffe96b2940b8e63f884f5e7d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/poison_dop.png using Guid(aaede90ffe96b2940b8e63f884f5e7d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e866d98699201727422ca934c29b7958') in 0.018251 seconds - Import took 0.020756 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.400800 seconds. - path: Assets/Graphics/Effects/poison.png - artifactKey: Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/poison.png using Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17db854e7f64fd0735d69cc95ce9d20c') in 0.016081 seconds - Import took 0.018483 seconds . - -======================================================================== -Received Import Request. - Time since last request: 128.961928 seconds. - path: Assets/Prefabs/Enemy - artifactKey: Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy using Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fce1d80a97414ba1c8e8727fb455b85') in 0.021807 seconds - Import took 0.024317 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.047640 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d065d5852b482d0a3a820c1da83be76') in 0.242974 seconds - Import took 0.245553 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000208 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e25fda4fead1bea451da015ae9cae607') in 0.009790 seconds - Import took 0.012350 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000238 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44c7593b8fca4651011a3ae236456f0c') in 0.005114 seconds - Import took 0.007656 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000255 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bd5648068e034400a979f2e5e14d1d5') in 0.004254 seconds - Import took 0.006718 seconds . + Time since last request: 42.104534 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: 'd17e3d47edb2602a4f2515ed1de3b16e') in 0.000922 seconds + Import took 0.003525 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001120 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.745 seconds -Domain Reload Profiling: - ReloadAssembly (745ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (617ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.7 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2590. -Total: 2.249600 ms (FindLiveObjects: 0.168600 ms CreateObjectMapping: 0.050600 ms MarkObjects: 2.006300 ms DeleteObjects: 0.023200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001162 seconds. +Registered in 0.001307 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.724 seconds -Domain Reload Profiling: - ReloadAssembly (724ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (588ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (152ms) - 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: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. -Total: 2.336500 ms (FindLiveObjects: 0.118600 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.144000 ms DeleteObjects: 0.029300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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: 462.859089 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '870971db9fe404793206ef042fe00f57') in 0.037455 seconds - Import took 0.040235 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000223 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72b15646062116ef01c773598baa33c4') in 0.007236 seconds - Import took 0.010390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000137 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0f298e3e73ba8e09aba5ac469291b9b') in 0.007880 seconds - Import took 0.010760 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000158 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4473763fcec1f20d68b8da55facfc3a') in 0.013675 seconds - Import took 0.016270 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001761 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.705 seconds -Domain Reload Profiling: - ReloadAssembly (706ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (572ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - 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.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: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2594. -Total: 1.899000 ms (FindLiveObjects: 0.121700 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.715200 ms DeleteObjects: 0.016500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001468 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.695 seconds -Domain Reload Profiling: - ReloadAssembly (696ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (569ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - 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: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. -Total: 2.011700 ms (FindLiveObjects: 0.134200 ms CreateObjectMapping: 0.053400 ms MarkObjects: 1.806500 ms DeleteObjects: 0.016300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001199 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.722 seconds -Domain Reload Profiling: - ReloadAssembly (723ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (579ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (148ms) - 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: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. -Total: 1.974100 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.795300 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.001242 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.763 seconds -Domain Reload Profiling: - ReloadAssembly (763ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (634ms) - LoadAssemblies (76ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (154ms) - 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: 97.6 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. -Total: 1.924400 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.736600 ms DeleteObjects: 0.011500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 seconds -Domain Reload Profiling: - ReloadAssembly (702ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (563ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. -Total: 1.928100 ms (FindLiveObjects: 0.122200 ms CreateObjectMapping: 0.051500 ms MarkObjects: 1.741700 ms DeleteObjects: 0.011900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001292 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.675 seconds -Domain Reload Profiling: - ReloadAssembly (675ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (554ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (217ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. -Total: 2.011900 ms (FindLiveObjects: 0.122400 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.814400 ms DeleteObjects: 0.026000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001304 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.687 seconds -Domain Reload Profiling: - ReloadAssembly (688ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (573ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2606. -Total: 2.028100 ms (FindLiveObjects: 0.153000 ms CreateObjectMapping: 0.048200 ms MarkObjects: 1.811000 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.001151 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.741 seconds -Domain Reload Profiling: - ReloadAssembly (741ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (622ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - 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.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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2608. -Total: 2.576100 ms (FindLiveObjects: 0.135900 ms CreateObjectMapping: 0.058300 ms MarkObjects: 2.365700 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.001145 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.755 seconds -Domain Reload Profiling: - ReloadAssembly (755ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (619ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (254ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. -Total: 2.058200 ms (FindLiveObjects: 0.125900 ms CreateObjectMapping: 0.039700 ms MarkObjects: 1.876900 ms DeleteObjects: 0.014700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001863 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.751 seconds -Domain Reload Profiling: - ReloadAssembly (752ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (625ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (260ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2612. -Total: 2.067000 ms (FindLiveObjects: 0.178200 ms CreateObjectMapping: 0.057800 ms MarkObjects: 1.814700 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.001173 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.719 seconds -Domain Reload Profiling: - ReloadAssembly (719ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (588ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (246ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (162ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2614. -Total: 2.162200 ms (FindLiveObjects: 0.181800 ms CreateObjectMapping: 0.052700 ms MarkObjects: 1.886900 ms DeleteObjects: 0.027900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001262 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.801 seconds -Domain Reload Profiling: - ReloadAssembly (802ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (667ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (277ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (183ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2616. -Total: 2.071500 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.860200 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.001324 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.751 seconds -Domain Reload Profiling: - ReloadAssembly (751ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (625ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (254ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (167ms) - 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2618. -Total: 2.136500 ms (FindLiveObjects: 0.128200 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.948000 ms DeleteObjects: 0.014000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001269 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.762 seconds -Domain Reload Profiling: - ReloadAssembly (762ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (625ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (248ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2620. -Total: 2.170500 ms (FindLiveObjects: 0.158400 ms CreateObjectMapping: 0.048100 ms MarkObjects: 1.948700 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.001263 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.711 seconds Domain Reload Profiling: ReloadAssembly (712ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (587ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2622. -Total: 1.998400 ms (FindLiveObjects: 0.141500 ms CreateObjectMapping: 0.044600 ms MarkObjects: 1.795000 ms DeleteObjects: 0.016500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001309 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.743 seconds -Domain Reload Profiling: - ReloadAssembly (743ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (610ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.40 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: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2624. -Total: 2.039400 ms (FindLiveObjects: 0.128600 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.849600 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.001146 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.702 seconds -Domain Reload Profiling: - ReloadAssembly (703ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (575ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2626. -Total: 2.076500 ms (FindLiveObjects: 0.132900 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.873100 ms DeleteObjects: 0.016400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001251 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.755 seconds -Domain Reload Profiling: - ReloadAssembly (756ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (624ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (201ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.7 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2628. -Total: 2.049000 ms (FindLiveObjects: 0.140400 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.841500 ms DeleteObjects: 0.017600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001156 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.692 seconds -Domain Reload Profiling: - ReloadAssembly (692ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (561ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -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: 97.7 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. -Total: 1.908000 ms (FindLiveObjects: 0.119900 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.730600 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001284 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.741 seconds -Domain Reload Profiling: - ReloadAssembly (741ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (603ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. -Total: 1.990500 ms (FindLiveObjects: 0.121000 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.811200 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.001311 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.744 seconds -Domain Reload Profiling: - ReloadAssembly (745ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (615ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (249ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.51 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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. -Total: 2.030100 ms (FindLiveObjects: 0.130800 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.837700 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001465 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.778 seconds -Domain Reload Profiling: - ReloadAssembly (778ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (638ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (256ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (168ms) - 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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2636. -Total: 2.117500 ms (FindLiveObjects: 0.133000 ms CreateObjectMapping: 0.041500 ms MarkObjects: 1.928100 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.001260 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.729 seconds -Domain Reload Profiling: - ReloadAssembly (730ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (606ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (162ms) - 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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. -Total: 1.990100 ms (FindLiveObjects: 0.131700 ms CreateObjectMapping: 0.047000 ms MarkObjects: 1.793000 ms DeleteObjects: 0.017400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001365 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.744 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (617ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (246ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - 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.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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. -Total: 2.155700 ms (FindLiveObjects: 0.146600 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.940400 ms DeleteObjects: 0.018000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001174 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.685 seconds -Domain Reload Profiling: - ReloadAssembly (685ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (558ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. -Total: 2.274800 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.065400 ms DeleteObjects: 0.026200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001320 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.696 seconds -Domain Reload Profiling: - ReloadAssembly (697ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (572ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - 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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. -Total: 1.974300 ms (FindLiveObjects: 0.121600 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.795000 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.001367 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.724 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (97ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (579ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. -Total: 2.030000 ms (FindLiveObjects: 0.121800 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.849200 ms DeleteObjects: 0.013200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 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.721 seconds -Domain Reload Profiling: - ReloadAssembly (721ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (589ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (148ms) - 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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. -Total: 2.016100 ms (FindLiveObjects: 0.119200 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.835600 ms DeleteObjects: 0.012700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001280 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.697 seconds -Domain Reload Profiling: - ReloadAssembly (697ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (572ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2650. -Total: 2.041400 ms (FindLiveObjects: 0.143400 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.834300 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001222 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.698 seconds -Domain Reload Profiling: - ReloadAssembly (699ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (571ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. -Total: 2.191100 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.986900 ms DeleteObjects: 0.029400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001148 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.708 seconds -Domain Reload Profiling: - ReloadAssembly (708ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - EndReloadAssembly (572ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (229ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2654. -Total: 2.095200 ms (FindLiveObjects: 0.131400 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.898300 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: 2615.943845 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22e4f3efbbde72906e86c7b848ab2804') in 0.060848 seconds - Import took 0.063967 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.646041 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9bd3f86ba8d8b8a2ef1906e8eafb09c') in 0.014367 seconds - Import took 0.017024 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001178 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 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 (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (562ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (145ms) - 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: 97.8 MB. -System memory in use after: 98.0 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2656. -Total: 2.305900 ms (FindLiveObjects: 0.173700 ms CreateObjectMapping: 0.062700 ms MarkObjects: 2.048900 ms DeleteObjects: 0.019700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001169 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.707 seconds -Domain Reload Profiling: - ReloadAssembly (707ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (570ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.8 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. -Total: 2.146000 ms (FindLiveObjects: 0.137500 ms CreateObjectMapping: 0.060500 ms MarkObjects: 1.932200 ms DeleteObjects: 0.014800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001229 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.711 seconds -Domain Reload Profiling: - ReloadAssembly (712ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (569ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2660. -Total: 2.029800 ms (FindLiveObjects: 0.123900 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.847500 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001224 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.740 seconds -Domain Reload Profiling: - ReloadAssembly (741ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (611ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (248ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. -Total: 2.090900 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.897300 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.001298 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.779 seconds -Domain Reload Profiling: - ReloadAssembly (779ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (641ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. -Total: 2.151900 ms (FindLiveObjects: 0.132400 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.959900 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 Prepare -Registering precompiled user dll's ... -Registered in 0.001263 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 (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (619ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. -Total: 2.145600 ms (FindLiveObjects: 0.125700 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.961600 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.001173 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 (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (575ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. -Total: 2.191300 ms (FindLiveObjects: 0.164400 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.953900 ms DeleteObjects: 0.025700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001221 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.714 seconds -Domain Reload Profiling: - ReloadAssembly (714ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (582ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (166ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. -Total: 2.387800 ms (FindLiveObjects: 0.128000 ms CreateObjectMapping: 0.045800 ms MarkObjects: 2.197300 ms DeleteObjects: 0.015800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001166 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.703 seconds -Domain Reload Profiling: - ReloadAssembly (704ms) BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (575ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - 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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. -Total: 2.349000 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.047400 ms MarkObjects: 2.160900 ms DeleteObjects: 0.015200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001239 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.744 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (623ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - 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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. -Total: 2.340600 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.046600 ms MarkObjects: 2.150600 ms DeleteObjects: 0.014700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001171 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.711 seconds -Domain Reload Profiling: - ReloadAssembly (711ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (587ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - 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: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. -Total: 2.075900 ms (FindLiveObjects: 0.132700 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.880700 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.001311 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.735 seconds -Domain Reload Profiling: - ReloadAssembly (736ms) - BeginReloadAssembly (87ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (604ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (162ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. -Total: 2.223000 ms (FindLiveObjects: 0.152800 ms CreateObjectMapping: 0.070400 ms MarkObjects: 1.985700 ms DeleteObjects: 0.013200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001155 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.764 seconds -Domain Reload Profiling: - ReloadAssembly (764ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (26ms) - EndReloadAssembly (624ms) - LoadAssemblies (70ms) + EndReloadAssembly (584ms) + LoadAssemblies (59ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. -Total: 2.057000 ms (FindLiveObjects: 0.129700 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.867900 ms DeleteObjects: 0.013800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001318 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.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (592ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) + SetupTypeCache (181ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (43ms) SetupLoadedEditorAssemblies (234ms) @@ -2962,9 +189,9 @@ Domain Reload Profiling: InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (4ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -2973,11 +200,11 @@ 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: 97.9 MB. -System memory in use after: 98.0 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2682. -Total: 1.991400 ms (FindLiveObjects: 0.123500 ms CreateObjectMapping: 0.043800 ms MarkObjects: 1.798400 ms DeleteObjects: 0.024800 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2584. +Total: 2.118000 ms (FindLiveObjects: 0.151500 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.901400 ms DeleteObjects: 0.016200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2990,1771 +217,51 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001247 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.752 seconds -Domain Reload Profiling: - ReloadAssembly (753ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (620ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -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: 97.9 MB. -System memory in use after: 98.0 MB. +Received Import Request. + Time since last request: 31.658241 seconds. + path: Assets/Scripts/Configs/BattleConfig.cs + artifactKey: Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfig.cs using Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f36e9185ad7489b87b5b709667b6098b') in 0.003463 seconds + Import took 0.005900 seconds . -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2684. -Total: 1.992400 ms (FindLiveObjects: 0.132500 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.800300 ms DeleteObjects: 0.013900 ms) +======================================================================== +Received Import Request. + Time since last request: 2.552936 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: 'cacfb7f2df2490456432de425c7aaedf') in 0.043411 seconds + Import took 0.048301 seconds . -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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. +Registered in 0.001205 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.689 seconds +- Completed reload, in 0.732 seconds Domain Reload Profiling: - ReloadAssembly (689ms) + ReloadAssembly (732ms) BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (565ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (220ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2686. -Total: 2.018600 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.050000 ms MarkObjects: 1.832600 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001122 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.716 seconds -Domain Reload Profiling: - ReloadAssembly (717ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (596ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (159ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 97.9 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2688. -Total: 1.981800 ms (FindLiveObjects: 0.132800 ms CreateObjectMapping: 0.045600 ms MarkObjects: 1.789600 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.001173 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 seconds -Domain Reload Profiling: - ReloadAssembly (702ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (586ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (160ms) - 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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2690. -Total: 2.056400 ms (FindLiveObjects: 0.138000 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.855100 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.001893 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.739 seconds -Domain Reload Profiling: - ReloadAssembly (739ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (609ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2692. -Total: 2.090100 ms (FindLiveObjects: 0.133900 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.894000 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001122 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.735 seconds -Domain Reload Profiling: - ReloadAssembly (735ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (596ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - 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.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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2694. -Total: 1.995800 ms (FindLiveObjects: 0.124200 ms CreateObjectMapping: 0.047600 ms MarkObjects: 1.809400 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.001383 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.706 seconds -Domain Reload Profiling: - ReloadAssembly (707ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (589ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (246ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (165ms) - 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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2696. -Total: 1.975800 ms (FindLiveObjects: 0.130600 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.770900 ms DeleteObjects: 0.026800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001143 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.678 seconds -Domain Reload Profiling: - ReloadAssembly (678ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (560ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2698. -Total: 2.008700 ms (FindLiveObjects: 0.131500 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.817000 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.001182 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.739 seconds -Domain Reload Profiling: - ReloadAssembly (739ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (615ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2700. -Total: 2.718100 ms (FindLiveObjects: 0.142900 ms CreateObjectMapping: 0.047600 ms MarkObjects: 2.507200 ms DeleteObjects: 0.019000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001530 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.719 seconds -Domain Reload Profiling: - ReloadAssembly (719ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (587ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.49 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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2702. -Total: 2.040700 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.852700 ms DeleteObjects: 0.014400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001454 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.700 seconds -Domain Reload Profiling: - ReloadAssembly (700ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (582ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2704. -Total: 1.943900 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.051800 ms MarkObjects: 1.749800 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.692 seconds -Domain Reload Profiling: - ReloadAssembly (692ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (561ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (147ms) - 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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2706. -Total: 2.004700 ms (FindLiveObjects: 0.135900 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.804900 ms DeleteObjects: 0.014800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001154 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.748 seconds -Domain Reload Profiling: - ReloadAssembly (749ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (613ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (257ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (174ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2708. -Total: 2.338400 ms (FindLiveObjects: 0.133300 ms CreateObjectMapping: 0.047400 ms MarkObjects: 2.132100 ms DeleteObjects: 0.024700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001994 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.726 seconds -Domain Reload Profiling: - ReloadAssembly (726ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (597ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.0 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2710. -Total: 1.973800 ms (FindLiveObjects: 0.130200 ms CreateObjectMapping: 0.047500 ms MarkObjects: 1.783000 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001263 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.744 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (607ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (244ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.1 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2712. -Total: 2.778400 ms (FindLiveObjects: 0.226800 ms CreateObjectMapping: 0.059300 ms MarkObjects: 2.463900 ms DeleteObjects: 0.026500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001218 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.753 seconds -Domain Reload Profiling: - ReloadAssembly (753ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (628ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (160ms) - 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: 98.1 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2714. -Total: 2.037900 ms (FindLiveObjects: 0.163000 ms CreateObjectMapping: 0.052900 ms MarkObjects: 1.807400 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.001365 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.753 seconds -Domain Reload Profiling: - ReloadAssembly (753ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (620ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.1 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2716. -Total: 2.240200 ms (FindLiveObjects: 0.155200 ms CreateObjectMapping: 0.048600 ms MarkObjects: 2.021500 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.001295 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.768 seconds -Domain Reload Profiling: - ReloadAssembly (768ms) - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (622ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.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: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2718. -Total: 2.273200 ms (FindLiveObjects: 0.146800 ms CreateObjectMapping: 0.050300 ms MarkObjects: 2.060400 ms DeleteObjects: 0.014700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001256 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.755 seconds -Domain Reload Profiling: - ReloadAssembly (756ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (621ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (249ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.40 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: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2720. -Total: 2.272400 ms (FindLiveObjects: 0.149600 ms CreateObjectMapping: 0.047100 ms MarkObjects: 2.059700 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.001181 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.740 seconds -Domain Reload Profiling: - ReloadAssembly (741ms) - BeginReloadAssembly (87ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (26ms) - EndReloadAssembly (607ms) - LoadAssemblies (64ms) + EndReloadAssembly (603ms) + LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) + SetupTypeCache (191ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (158ms) - 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2722. -Total: 2.025800 ms (FindLiveObjects: 0.141000 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.821100 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001211 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.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (608ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (5ms) - 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2724. -Total: 2.061100 ms (FindLiveObjects: 0.146400 ms CreateObjectMapping: 0.052600 ms MarkObjects: 1.833800 ms DeleteObjects: 0.027600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001159 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.688 seconds -Domain Reload Profiling: - ReloadAssembly (688ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (568ms) - LoadAssemblies (52ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - 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.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2726. -Total: 2.182500 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.054500 ms MarkObjects: 1.966100 ms DeleteObjects: 0.016500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001187 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.718 seconds -Domain Reload Profiling: - ReloadAssembly (718ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (583ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2728. -Total: 2.118500 ms (FindLiveObjects: 0.150700 ms CreateObjectMapping: 0.055000 ms MarkObjects: 1.897200 ms DeleteObjects: 0.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001157 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.714 seconds -Domain Reload Profiling: - ReloadAssembly (714ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (591ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) + RebuildScriptCaches (41ms) SetupLoadedEditorAssemblies (240ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2730. -Total: 2.185000 ms (FindLiveObjects: 0.181700 ms CreateObjectMapping: 0.060100 ms MarkObjects: 1.928200 ms DeleteObjects: 0.014000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001191 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.715 seconds -Domain Reload Profiling: - ReloadAssembly (715ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (584ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - 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.40 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2732. -Total: 2.062600 ms (FindLiveObjects: 0.150100 ms CreateObjectMapping: 0.051200 ms MarkObjects: 1.846500 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.001333 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.682 seconds -Domain Reload Profiling: - ReloadAssembly (682ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (556ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (220ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2734. -Total: 2.072200 ms (FindLiveObjects: 0.142200 ms CreateObjectMapping: 0.051700 ms MarkObjects: 1.866300 ms DeleteObjects: 0.011400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001202 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.795 seconds -Domain Reload Profiling: - ReloadAssembly (795ms) - BeginReloadAssembly (112ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (631ms) - LoadAssemblies (70ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (264ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2736. -Total: 2.156600 ms (FindLiveObjects: 0.146300 ms CreateObjectMapping: 0.052300 ms MarkObjects: 1.941800 ms DeleteObjects: 0.015200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001116 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.689 seconds -Domain Reload Profiling: - ReloadAssembly (690ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (555ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (223ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - 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.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2738. -Total: 2.570900 ms (FindLiveObjects: 0.143100 ms CreateObjectMapping: 0.054400 ms MarkObjects: 2.353000 ms DeleteObjects: 0.019300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001212 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.738 seconds -Domain Reload Profiling: - ReloadAssembly (739ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (600ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (163ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2740. -Total: 2.175800 ms (FindLiveObjects: 0.164100 ms CreateObjectMapping: 0.062900 ms MarkObjects: 1.932700 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.001294 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.719 seconds -Domain Reload Profiling: - ReloadAssembly (720ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (588ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (167ms) - 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2742. -Total: 2.132100 ms (FindLiveObjects: 0.151100 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.917100 ms DeleteObjects: 0.013200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001935 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.684 seconds -Domain Reload Profiling: - ReloadAssembly (684ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (565ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (227ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.53 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2744. -Total: 2.683000 ms (FindLiveObjects: 0.186700 ms CreateObjectMapping: 0.066200 ms MarkObjects: 2.396400 ms DeleteObjects: 0.020000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001728 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.722 seconds -Domain Reload Profiling: - ReloadAssembly (723ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (593ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) + BeforeProcessingInitializeOnLoad (68ms) ProcessInitializeOnLoadAttributes (159ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) @@ -4762,182 +269,14 @@ Domain Reload Profiling: 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2746. -Total: 2.282500 ms (FindLiveObjects: 0.151600 ms CreateObjectMapping: 0.050100 ms MarkObjects: 2.041600 ms DeleteObjects: 0.038300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001845 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.759 seconds -Domain Reload Profiling: - ReloadAssembly (759ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (637ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (257ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.53 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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2748. -Total: 2.023600 ms (FindLiveObjects: 0.148500 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.813800 ms DeleteObjects: 0.013400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001126 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.729 seconds -Domain Reload Profiling: - ReloadAssembly (729ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (600ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (247ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2750. -Total: 2.201400 ms (FindLiveObjects: 0.146800 ms CreateObjectMapping: 0.049300 ms MarkObjects: 1.988800 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.001166 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.728 seconds -Domain Reload Profiling: - ReloadAssembly (728ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (605ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.5 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2752. -Total: 2.022800 ms (FindLiveObjects: 0.146000 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.811200 ms DeleteObjects: 0.012300 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. +Total: 2.091900 ms (FindLiveObjects: 0.124300 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.906700 ms DeleteObjects: 0.014100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4952,66 +291,10 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001229 seconds. +Registered in 0.001253 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.704 seconds -Domain Reload Profiling: - ReloadAssembly (704ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (578ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (142ms) - 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2754. -Total: 2.043800 ms (FindLiveObjects: 0.147200 ms CreateObjectMapping: 0.058900 ms MarkObjects: 1.825600 ms DeleteObjects: 0.011400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001194 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly - Completed reload, in 0.684 seconds @@ -5023,369 +306,33 @@ Domain Reload Profiling: BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (23ms) - EndReloadAssembly (566ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (144ms) - 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2756. -Total: 2.261300 ms (FindLiveObjects: 0.160500 ms CreateObjectMapping: 0.057800 ms MarkObjects: 2.025800 ms DeleteObjects: 0.016200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001558 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 (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (574ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2758. -Total: 2.092700 ms (FindLiveObjects: 0.150800 ms CreateObjectMapping: 0.051400 ms MarkObjects: 1.875000 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.001880 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.768 seconds -Domain Reload Profiling: - ReloadAssembly (768ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (641ms) + EndReloadAssembly (564ms) LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) + SetupTypeCache (182ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (258ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2760. -Total: 2.375500 ms (FindLiveObjects: 0.156200 ms CreateObjectMapping: 0.054400 ms MarkObjects: 2.147200 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.001518 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.733 seconds -Domain Reload Profiling: - ReloadAssembly (734ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (597ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2762. -Total: 2.193300 ms (FindLiveObjects: 0.147600 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.969100 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001169 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (599ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - 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.40 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2764. -Total: 2.769200 ms (FindLiveObjects: 0.208300 ms CreateObjectMapping: 0.068300 ms MarkObjects: 2.453300 ms DeleteObjects: 0.037600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001167 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.714 seconds -Domain Reload Profiling: - ReloadAssembly (714ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (593ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2766. -Total: 2.104700 ms (FindLiveObjects: 0.145700 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.884200 ms DeleteObjects: 0.024100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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.001847 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.735 seconds -Domain Reload Profiling: - ReloadAssembly (735ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (601ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (227ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (222ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2768. -Total: 2.111000 ms (FindLiveObjects: 0.161900 ms CreateObjectMapping: 0.058500 ms MarkObjects: 1.876300 ms DeleteObjects: 0.013300 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. +Total: 2.088900 ms (FindLiveObjects: 0.121900 ms CreateObjectMapping: 0.045100 ms MarkObjects: 1.908100 ms DeleteObjects: 0.012700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5400,48 +347,48 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001097 seconds. +Registered in 0.001110 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.697 seconds +- Completed reload, in 0.689 seconds Domain Reload Profiling: - ReloadAssembly (697ms) - BeginReloadAssembly (95ms) + ReloadAssembly (690ms) + BeginReloadAssembly (85ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (562ms) - LoadAssemblies (54ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (565ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (171ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (230ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (148ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (154ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. +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: 2770. -Total: 2.203100 ms (FindLiveObjects: 0.195800 ms CreateObjectMapping: 0.071300 ms MarkObjects: 1.906400 ms DeleteObjects: 0.028300 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. +Total: 1.935600 ms (FindLiveObjects: 0.124500 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.749700 ms DeleteObjects: 0.014000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5459,310 +406,30 @@ Registering precompiled user dll's ... Registered in 0.001331 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.702 seconds +- Completed reload, in 0.754 seconds Domain Reload Profiling: - ReloadAssembly (702ms) - BeginReloadAssembly (85ms) + ReloadAssembly (754ms) + BeginReloadAssembly (97ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (575ms) - LoadAssemblies (55ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (610ms) + LoadAssemblies (71ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (229ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (153ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.37 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2772. -Total: 2.428400 ms (FindLiveObjects: 0.154100 ms CreateObjectMapping: 0.050600 ms MarkObjects: 2.208300 ms DeleteObjects: 0.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001120 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.743 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (616ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) + SetupTypeCache (189ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (250ms) + SetupLoadedEditorAssemblies (245ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2774. -Total: 2.184800 ms (FindLiveObjects: 0.158600 ms CreateObjectMapping: 0.055600 ms MarkObjects: 1.954600 ms DeleteObjects: 0.015200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001171 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.734 seconds -Domain Reload Profiling: - ReloadAssembly (734ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (595ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (174ms) - 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2776. -Total: 2.132300 ms (FindLiveObjects: 0.153400 ms CreateObjectMapping: 0.054600 ms MarkObjects: 1.906400 ms DeleteObjects: 0.017100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001305 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.771 seconds -Domain Reload Profiling: - ReloadAssembly (771ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (634ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.37 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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2778. -Total: 2.269100 ms (FindLiveObjects: 0.153900 ms CreateObjectMapping: 0.057300 ms MarkObjects: 2.042600 ms DeleteObjects: 0.014100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001184 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.725 seconds -Domain Reload Profiling: - ReloadAssembly (725ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (607ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (169ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -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: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2780. -Total: 2.472700 ms (FindLiveObjects: 0.157200 ms CreateObjectMapping: 0.055800 ms MarkObjects: 2.229800 ms DeleteObjects: 0.028700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001325 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 seconds -Domain Reload Profiling: - ReloadAssembly (702ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (575ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) ProcessInitializeOnLoadAttributes (152ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) @@ -5770,14 +437,1022 @@ Domain Reload Profiling: 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: 1.992200 ms (FindLiveObjects: 0.121400 ms CreateObjectMapping: 0.046900 ms MarkObjects: 1.810300 ms DeleteObjects: 0.012700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.33 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 (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (578ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (180ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + 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.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. +Total: 2.045000 ms (FindLiveObjects: 0.125000 ms CreateObjectMapping: 0.047700 ms MarkObjects: 1.858300 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001284 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.742 seconds +Domain Reload Profiling: + ReloadAssembly (743ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (615ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + 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.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. +Total: 2.025400 ms (FindLiveObjects: 0.129900 ms CreateObjectMapping: 0.053400 ms MarkObjects: 1.828400 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001178 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.751 seconds +Domain Reload Profiling: + ReloadAssembly (751ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (612ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +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: 2598. +Total: 2.158300 ms (FindLiveObjects: 0.144400 ms CreateObjectMapping: 0.053500 ms MarkObjects: 1.943700 ms DeleteObjects: 0.015700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001440 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.682 seconds +Domain Reload Profiling: + ReloadAssembly (682ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (556ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + 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.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: 98.3 MB. -System memory in use after: 98.6 MB. +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2782. -Total: 2.067500 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.054100 ms MarkObjects: 1.845600 ms DeleteObjects: 0.016400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. +Total: 1.984100 ms (FindLiveObjects: 0.118200 ms CreateObjectMapping: 0.043100 ms MarkObjects: 1.796300 ms DeleteObjects: 0.025600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001188 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.730 seconds +Domain Reload Profiling: + ReloadAssembly (730ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (602ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +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: 2602. +Total: 2.167800 ms (FindLiveObjects: 0.123600 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.974300 ms DeleteObjects: 0.026500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001819 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.706 seconds +Domain Reload Profiling: + ReloadAssembly (706ms) + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (570ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + 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.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.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. +Total: 1.878500 ms (FindLiveObjects: 0.125300 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.692500 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001256 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.708 seconds +Domain Reload Profiling: + ReloadAssembly (709ms) + BeginReloadAssembly (76ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (580ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + 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.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: 2606. +Total: 1.970700 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.044700 ms MarkObjects: 1.777000 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001221 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.659 seconds +Domain Reload Profiling: + ReloadAssembly (660ms) + BeginReloadAssembly (76ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (544ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (216ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + 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.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: 2608. +Total: 1.967100 ms (FindLiveObjects: 0.120900 ms CreateObjectMapping: 0.047700 ms MarkObjects: 1.785100 ms DeleteObjects: 0.012600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001181 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.674 seconds +Domain Reload Profiling: + ReloadAssembly (674ms) + BeginReloadAssembly (74ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (560ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (217ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + 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.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. +Total: 2.021900 ms (FindLiveObjects: 0.132700 ms CreateObjectMapping: 0.051400 ms MarkObjects: 1.822600 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001274 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.751 seconds +Domain Reload Profiling: + ReloadAssembly (752ms) + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (614ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 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: 2612. +Total: 2.115100 ms (FindLiveObjects: 0.119000 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.925600 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.001331 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.691 seconds +Domain Reload Profiling: + ReloadAssembly (691ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (558ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (217ms) + 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.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.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2614. +Total: 1.957600 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.048500 ms MarkObjects: 1.767200 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.001226 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.706 seconds +Domain Reload Profiling: + ReloadAssembly (706ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (575ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (140ms) + 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.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2616. +Total: 1.956900 ms (FindLiveObjects: 0.117000 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.772300 ms DeleteObjects: 0.023300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001200 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.758 seconds +Domain Reload Profiling: + ReloadAssembly (758ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (624ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (193ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 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: 2618. +Total: 1.893000 ms (FindLiveObjects: 0.118100 ms CreateObjectMapping: 0.043200 ms MarkObjects: 1.720500 ms DeleteObjects: 0.010600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001121 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.737 seconds +Domain Reload Profiling: + ReloadAssembly (737ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (603ms) + LoadAssemblies (69ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (159ms) + 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.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2620. +Total: 1.938700 ms (FindLiveObjects: 0.129500 ms CreateObjectMapping: 0.052700 ms MarkObjects: 1.743400 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001225 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.697 seconds +Domain Reload Profiling: + ReloadAssembly (697ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (563ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (219ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + 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.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: 2622. +Total: 2.139100 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.958100 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001169 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 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 (711ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (590ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 2624. +Total: 2.177700 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.984900 ms DeleteObjects: 0.017000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001225 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.780 seconds +Domain Reload Profiling: + ReloadAssembly (781ms) + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (635ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.53 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: 2626. +Total: 2.700700 ms (FindLiveObjects: 0.283200 ms CreateObjectMapping: 0.064700 ms MarkObjects: 2.326200 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001086 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.698 seconds +Domain Reload Profiling: + ReloadAssembly (698ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (576ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 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: 2628. +Total: 1.981300 ms (FindLiveObjects: 0.121800 ms CreateObjectMapping: 0.041100 ms MarkObjects: 1.792100 ms DeleteObjects: 0.025600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5795,31 +1470,31 @@ Registering precompiled user dll's ... Registered in 0.001250 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.695 seconds +- Completed reload, in 0.700 seconds Domain Reload Profiling: - ReloadAssembly (695ms) + ReloadAssembly (700ms) BeginReloadAssembly (84ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (24ms) - EndReloadAssembly (569ms) - LoadAssemblies (55ms) + EndReloadAssembly (577ms) + LoadAssemblies (54ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) + SetupTypeCache (171ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (227ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (240ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (150ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (160ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -5829,11 +1504,11 @@ 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: 98.3 MB. -System memory in use after: 98.6 MB. +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2784. -Total: 2.137400 ms (FindLiveObjects: 0.161600 ms CreateObjectMapping: 0.054800 ms MarkObjects: 1.893100 ms DeleteObjects: 0.026300 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. +Total: 1.954600 ms (FindLiveObjects: 0.134100 ms CreateObjectMapping: 0.066200 ms MarkObjects: 1.728200 ms DeleteObjects: 0.025100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5848,34 +1523,90 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001104 seconds. +Registered in 0.001148 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +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.688 seconds +- Completed reload, in 0.703 seconds Domain Reload Profiling: - ReloadAssembly (688ms) - BeginReloadAssembly (84ms) + ReloadAssembly (703ms) + BeginReloadAssembly (96ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (557ms) - LoadAssemblies (55ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (558ms) + LoadAssemblies (60ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (173ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (220ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (146ms) + BeforeProcessingInitializeOnLoad (64ms) + 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.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: 2632. +Total: 2.092300 ms (FindLiveObjects: 0.146200 ms CreateObjectMapping: 0.051600 ms MarkObjects: 1.865400 ms DeleteObjects: 0.027900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001663 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.687 seconds +Domain Reload Profiling: + ReloadAssembly (688ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (567ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (149ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) @@ -5885,11 +1616,11 @@ 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: 98.4 MB. -System memory in use after: 98.6 MB. +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2786. -Total: 2.080400 ms (FindLiveObjects: 0.155600 ms CreateObjectMapping: 0.055200 ms MarkObjects: 1.853500 ms DeleteObjects: 0.015000 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. +Total: 1.932600 ms (FindLiveObjects: 0.123700 ms CreateObjectMapping: 0.048900 ms MarkObjects: 1.747100 ms DeleteObjects: 0.011900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5904,16 +1635,464 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001196 seconds. +Registered in 0.001144 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.700 seconds +- Completed reload, in 0.722 seconds Domain Reload Profiling: - ReloadAssembly (701ms) - BeginReloadAssembly (92ms) + ReloadAssembly (723ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (586ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 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: 2636. +Total: 2.072200 ms (FindLiveObjects: 0.135600 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.859600 ms DeleteObjects: 0.028500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001379 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.693 seconds +Domain Reload Profiling: + ReloadAssembly (694ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (560ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 2638. +Total: 1.885600 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.703000 ms DeleteObjects: 0.011300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001110 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.685 seconds +Domain Reload Profiling: + ReloadAssembly (685ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (558ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (224ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (145ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 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: 2640. +Total: 1.988400 ms (FindLiveObjects: 0.121000 ms CreateObjectMapping: 0.045200 ms MarkObjects: 1.808500 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.001163 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 1.166 seconds +Domain Reload Profiling: + ReloadAssembly (1166ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (1030ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (170ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (611ms) + 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: 2642. +Total: 1.984200 ms (FindLiveObjects: 0.134100 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.790800 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.001141 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.734 seconds +Domain Reload Profiling: + ReloadAssembly (734ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (584ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 2644. +Total: 2.070600 ms (FindLiveObjects: 0.131100 ms CreateObjectMapping: 0.048600 ms MarkObjects: 1.875800 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.001182 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.747 seconds +Domain Reload Profiling: + ReloadAssembly (748ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (608ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (173ms) + 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.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. +Total: 2.187700 ms (FindLiveObjects: 0.126700 ms CreateObjectMapping: 0.048800 ms MarkObjects: 1.997400 ms DeleteObjects: 0.013800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001386 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.728 seconds +Domain Reload Profiling: + ReloadAssembly (728ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (598ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.43 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: 2648. +Total: 2.430200 ms (FindLiveObjects: 0.140200 ms CreateObjectMapping: 0.049100 ms MarkObjects: 2.217800 ms DeleteObjects: 0.022100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001122 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.702 seconds +Domain Reload Profiling: + ReloadAssembly (703ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (564ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.43 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: 2650. +Total: 2.177600 ms (FindLiveObjects: 0.150000 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.968200 ms DeleteObjects: 0.012700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001168 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.701 seconds +Domain Reload Profiling: + ReloadAssembly (702ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) @@ -5922,30 +2101,198 @@ Domain Reload Profiling: EndReloadAssembly (569ms) LoadAssemblies (55ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) + SetupTypeCache (173ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (224ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (238ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +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: 98.4 MB. -System memory in use after: 98.6 MB. +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: 2788. -Total: 2.026400 ms (FindLiveObjects: 0.150100 ms CreateObjectMapping: 0.054300 ms MarkObjects: 1.809200 ms DeleteObjects: 0.012100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. +Total: 2.037200 ms (FindLiveObjects: 0.140500 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.834100 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 3552.653235 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c79240d4c0d80dc1172b0f442576ea23') in 0.072416 seconds + Import took 0.075150 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.821018 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstMission/1.asset + artifactKey: Guid(1cc64428fd69f5341bb81fae9b8ca51a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstMission/1.asset using Guid(1cc64428fd69f5341bb81fae9b8ca51a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fa60596ff770d86c06f2eacd4ab99c5') in 0.003068 seconds + Import took 0.005515 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000299 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstMission/2.asset + artifactKey: Guid(d8a2a8d8a1d211c4f82cb61312abd421) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstMission/2.asset using Guid(d8a2a8d8a1d211c4f82cb61312abd421) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '757d08719e8ddae189b48a39a5130738') in 0.002528 seconds + Import took 0.004528 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000283 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstMission/3.asset + artifactKey: Guid(fdf98edb4e6c0bf4d804a86f67483f38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstMission/3.asset using Guid(fdf98edb4e6c0bf4d804a86f67483f38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec232160e518a4e1e3a6cb8ef246b57') in 0.002347 seconds + Import took 0.004229 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7.486083 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b78a052c9231aff3a29745203aba11f') in 0.007496 seconds + Import took 0.010329 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.408376 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '623ceee813a76df4b6c9806ee3daac72') in 0.014240 seconds + Import took 0.016959 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.433574 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3526b38b6aff9a12d54a21a8e709ef1') in 0.006591 seconds + Import took 0.009127 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.615904 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cde91efec4444dc4cb45278aaea9c00a') in 0.006714 seconds + Import took 0.009278 seconds . + +======================================================================== +Received Import Request. + Time since last request: 21.369710 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fc02beb027547098c125b397fac34ca') in 0.007743 seconds + Import took 0.010398 seconds . + +======================================================================== +Received Import Request. + Time since last request: 150.525477 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0dc5ab7f034b1a862432f6bf67af84e5') in 0.007210 seconds + Import took 0.010318 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.176591 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35d3bce37b2961fa9d52c08ca0452247') in 0.015128 seconds + Import took 0.017838 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.559972 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0881b3709ce875a4e72cc85bd312f7ed') in 0.008877 seconds + Import took 0.011553 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.214417 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'caac343f6088744d7a6bcc95df0bb466') in 0.014260 seconds + Import took 0.017051 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.427982 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '847dc5749c7ff65fc90196556c461db5') in 0.016944 seconds + Import took 0.019716 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001272 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.759 seconds +Domain Reload Profiling: + ReloadAssembly (760ms) + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (612ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (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.9 MB. +System memory in use after: 95.0 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2654. +Total: 2.468300 ms (FindLiveObjects: 0.170300 ms CreateObjectMapping: 0.069000 ms MarkObjects: 2.207300 ms DeleteObjects: 0.020400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5960,25 +2307,81 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001605 seconds. +Registered in 0.001261 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.693 seconds +- Completed reload, in 0.750 seconds Domain Reload Profiling: - ReloadAssembly (693ms) - BeginReloadAssembly (74ms) + ReloadAssembly (750ms) + BeginReloadAssembly (93ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (577ms) - LoadAssemblies (55ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (613ms) + LoadAssemblies (65ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + 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: 2656. +Total: 2.181400 ms (FindLiveObjects: 0.140400 ms CreateObjectMapping: 0.043200 ms MarkObjects: 1.983100 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.001189 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.830 seconds +Domain Reload Profiling: + ReloadAssembly (830ms) + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (670ms) + LoadAssemblies (68ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (259ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (44ms) SetupLoadedEditorAssemblies (227ms) @@ -5986,9 +2389,177 @@ Domain Reload Profiling: InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (6ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (148ms) + 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.9 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. +Total: 2.159300 ms (FindLiveObjects: 0.132300 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.966600 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.001363 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 (692ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (561ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 2660. +Total: 2.050700 ms (FindLiveObjects: 0.129400 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.863600 ms DeleteObjects: 0.012300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001290 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 (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (583ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + 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.9 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. +Total: 2.109200 ms (FindLiveObjects: 0.126700 ms CreateObjectMapping: 0.046300 ms MarkObjects: 1.908700 ms DeleteObjects: 0.026600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001305 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.746 seconds +Domain Reload Profiling: + ReloadAssembly (746ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (608ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -5997,11 +2568,1627 @@ 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: 98.4 MB. -System memory in use after: 98.6 MB. +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2790. -Total: 2.195700 ms (FindLiveObjects: 0.169500 ms CreateObjectMapping: 0.058200 ms MarkObjects: 1.948200 ms DeleteObjects: 0.018700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. +Total: 2.421100 ms (FindLiveObjects: 0.124800 ms CreateObjectMapping: 0.042800 ms MarkObjects: 2.238400 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001856 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.756 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (610ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (161ms) + 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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. +Total: 2.197500 ms (FindLiveObjects: 0.131200 ms CreateObjectMapping: 0.051300 ms MarkObjects: 1.989300 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received 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.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.800 seconds +Domain Reload Profiling: + ReloadAssembly (801ms) + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (648ms) + LoadAssemblies (73ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. +Total: 2.307200 ms (FindLiveObjects: 0.143900 ms CreateObjectMapping: 0.049200 ms MarkObjects: 2.096500 ms DeleteObjects: 0.016300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001221 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.671 seconds +Domain Reload Profiling: + ReloadAssembly (672ms) + BeginReloadAssembly (75ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (558ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (168ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. +Total: 2.435100 ms (FindLiveObjects: 0.138200 ms CreateObjectMapping: 0.046800 ms MarkObjects: 2.232400 ms DeleteObjects: 0.016400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001364 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.696 seconds +Domain Reload Profiling: + ReloadAssembly (696ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (562ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. +Total: 2.135200 ms (FindLiveObjects: 0.131900 ms CreateObjectMapping: 0.047200 ms MarkObjects: 1.929000 ms DeleteObjects: 0.025900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001810 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.792 seconds +Domain Reload Profiling: + ReloadAssembly (792ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (657ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (205ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. +Total: 2.106900 ms (FindLiveObjects: 0.142200 ms CreateObjectMapping: 0.051900 ms MarkObjects: 1.898200 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 Prepare +Registering precompiled user dll's ... +Registered in 0.001503 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.727 seconds +Domain Reload Profiling: + ReloadAssembly (727ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (596ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. +Total: 2.054800 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.048500 ms MarkObjects: 1.850100 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.001182 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.683 seconds +Domain Reload Profiling: + ReloadAssembly (683ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (564ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (167ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. +Total: 2.001700 ms (FindLiveObjects: 0.126700 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.819100 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.001214 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.677 seconds +Domain Reload Profiling: + ReloadAssembly (678ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (554ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (217ms) + 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.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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. +Total: 1.986000 ms (FindLiveObjects: 0.125800 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.802400 ms DeleteObjects: 0.011800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001218 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.708 seconds +Domain Reload Profiling: + ReloadAssembly (708ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (572ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (167ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (161ms) + 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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2682. +Total: 1.997900 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.044700 ms MarkObjects: 1.814400 ms DeleteObjects: 0.012200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001130 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.759 seconds +Domain Reload Profiling: + ReloadAssembly (760ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (631ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2684. +Total: 2.335500 ms (FindLiveObjects: 0.133400 ms CreateObjectMapping: 0.044400 ms MarkObjects: 2.129400 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.001142 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.775 seconds +Domain Reload Profiling: + ReloadAssembly (776ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (590ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2686. +Total: 1.999800 ms (FindLiveObjects: 0.155000 ms CreateObjectMapping: 0.061400 ms MarkObjects: 1.769800 ms DeleteObjects: 0.012700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001173 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.720 seconds +Domain Reload Profiling: + ReloadAssembly (721ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (589ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + 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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2688. +Total: 1.998400 ms (FindLiveObjects: 0.129600 ms CreateObjectMapping: 0.048200 ms MarkObjects: 1.806800 ms DeleteObjects: 0.012600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001065 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.685 seconds +Domain Reload Profiling: + ReloadAssembly (685ms) + BeginReloadAssembly (74ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (564ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (145ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2690. +Total: 2.325200 ms (FindLiveObjects: 0.138800 ms CreateObjectMapping: 0.061800 ms MarkObjects: 2.106100 ms DeleteObjects: 0.017400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001182 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.726 seconds +Domain Reload Profiling: + ReloadAssembly (726ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (599ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +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: 95.0 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2692. +Total: 2.050100 ms (FindLiveObjects: 0.127300 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.862700 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001163 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.724 seconds +Domain Reload Profiling: + ReloadAssembly (724ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (604ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + 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.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: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2694. +Total: 2.060500 ms (FindLiveObjects: 0.135400 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.849700 ms DeleteObjects: 0.025600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001109 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.716 seconds +Domain Reload Profiling: + ReloadAssembly (716ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (589ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2696. +Total: 2.015100 ms (FindLiveObjects: 0.137700 ms CreateObjectMapping: 0.048800 ms MarkObjects: 1.812900 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001230 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.710 seconds +Domain Reload Profiling: + ReloadAssembly (711ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (578ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + 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: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2698. +Total: 1.975900 ms (FindLiveObjects: 0.125900 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.781100 ms DeleteObjects: 0.024100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001217 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 (693ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (558ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (147ms) + 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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2700. +Total: 2.221900 ms (FindLiveObjects: 0.135800 ms CreateObjectMapping: 0.047900 ms MarkObjects: 2.021100 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.001133 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.699 seconds +Domain Reload Profiling: + ReloadAssembly (700ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (576ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (222ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (145ms) + 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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2702. +Total: 1.961700 ms (FindLiveObjects: 0.127800 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.773700 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.001560 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.819 seconds +Domain Reload Profiling: + ReloadAssembly (820ms) + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (676ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (281ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2704. +Total: 2.123000 ms (FindLiveObjects: 0.135900 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.924500 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.001187 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.785 seconds +Domain Reload Profiling: + ReloadAssembly (785ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (648ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (203ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2706. +Total: 1.999700 ms (FindLiveObjects: 0.133600 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.805600 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001981 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.713 seconds +Domain Reload Profiling: + ReloadAssembly (713ms) + BeginReloadAssembly (78ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (596ms) + LoadAssemblies (53ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2708. +Total: 2.098800 ms (FindLiveObjects: 0.132900 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.895600 ms DeleteObjects: 0.025100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.001102 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.700 seconds +Domain Reload Profiling: + ReloadAssembly (700ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (561ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + 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.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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2710. +Total: 2.106900 ms (FindLiveObjects: 0.129400 ms CreateObjectMapping: 0.048400 ms MarkObjects: 1.913900 ms DeleteObjects: 0.014400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001357 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.678 seconds +Domain Reload Profiling: + ReloadAssembly (678ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (557ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (171ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + 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: 95.1 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2712. +Total: 1.903900 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.721400 ms DeleteObjects: 0.012100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001478 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.653 seconds +Domain Reload Profiling: + ReloadAssembly (654ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (536ms) + LoadAssemblies (52ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (166ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (213ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + 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: 95.2 MB. +System memory in use after: 95.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2714. +Total: 1.993300 ms (FindLiveObjects: 0.143000 ms CreateObjectMapping: 0.049600 ms MarkObjects: 1.786900 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 Import Request. + Time since last request: 1469.007030 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset + artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89ead5114f02aefab3baca35b5988fe2') in 0.030673 seconds + Import took 0.033274 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000269 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Zombie.asset + artifactKey: Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Zombie.asset using Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b5a7ad4963ccd352dc3c0e9e4e5f624') in 0.001619 seconds + Import took 0.003873 seconds . + +======================================================================== +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.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.757 seconds +Domain Reload Profiling: + ReloadAssembly (757ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (612ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + 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: 95.2 MB. +System memory in use after: 95.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2716. +Total: 2.229200 ms (FindLiveObjects: 0.150900 ms CreateObjectMapping: 0.055100 ms MarkObjects: 2.008000 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: 170.805036 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bc69ae91090db783a032fcacd392b2e') in 0.043372 seconds + Import took 0.046530 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.393490 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c28ff793ef7c81268a8368d82904e135') in 0.007681 seconds + Import took 0.010266 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.683325 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '45829bd9fc083a60a2c2cbe281ec527a') in 0.015633 seconds + Import took 0.018356 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.613212 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b41425a413a51bc36ae26ebb5edde1fa') in 0.015377 seconds + Import took 0.018300 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001460 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.756 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (615ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + 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.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: 95.2 MB. +System memory in use after: 95.3 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2718. +Total: 2.279300 ms (FindLiveObjects: 0.144900 ms CreateObjectMapping: 0.045900 ms MarkObjects: 2.069200 ms DeleteObjects: 0.018100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001169 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.692 seconds +Domain Reload Profiling: + ReloadAssembly (692ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (571ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (222ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + 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.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: 95.2 MB. +System memory in use after: 95.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2720. +Total: 2.068400 ms (FindLiveObjects: 0.146300 ms CreateObjectMapping: 0.052500 ms MarkObjects: 1.855200 ms DeleteObjects: 0.013200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe10.log b/Logs/shadercompiler-UnityShaderCompiler.exe10.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe10.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe10.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/Logs/shadercompiler-UnityShaderCompiler.exe11.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe11.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe11.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe5.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe6.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe7.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe9.log b/Logs/shadercompiler-UnityShaderCompiler.exe9.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe9.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe9.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process