diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index f5cf3827..7746d85c 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/Scripts/Card.cs b/Assets/Scripts/Card.cs index 061823b0..34e53f6c 100644 --- a/Assets/Scripts/Card.cs +++ b/Assets/Scripts/Card.cs @@ -10,7 +10,6 @@ public class Card : MonoBehaviour [SerializeField] public CardConfig cardConfig; private CardCharacteristics _card; - [Space(3)] [HideInInspector] public int number; @@ -23,17 +22,10 @@ public class Card : MonoBehaviour [SerializeField] private Text type; [SerializeField] private Text quantity; - //этот колхоз надо переделать 100 процентов - [HideInInspector] int localquantityStamina = 0; - [HideInInspector] int localquantityHealth = 0; - [HideInInspector] int localdamage = 0; - [HideInInspector] int localaddHealth = 0; - [HideInInspector] int localaddStamina = 0; - [HideInInspector] int localaddArmor = 0; private void Start() { - SaveStartCharacterisics(cardObject); + //SaveStartCharacterisics(cardObject); CheckLevel(cardObject); picture.sprite = cardConfig.CardCharacteristics.picture; _card = cardConfig.CardCharacteristics; @@ -117,7 +109,7 @@ public class Card : MonoBehaviour DestroyObject(); return; } - else + else { DeckManager.main.currentCard = cardConfig; DeckManager.main.numberCurrentCard = number; @@ -125,49 +117,21 @@ public class Card : MonoBehaviour } } - public void SaveStartCharacterisics(GameObject _card) - { - var _cardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristics; - - localquantityStamina = _cardCharacteristics.quantityStamina; - localquantityHealth = _cardCharacteristics.quantityHealth; - localdamage = _cardCharacteristics.damage; - localaddHealth = _cardCharacteristics.addHealth; - localaddStamina = _cardCharacteristics.addStamina; - localaddArmor = _cardCharacteristics.addArmor; - } - public void CheckLevel(GameObject _card) { - // Мне за это стыдно, но в голову иных варинтов не приходит - var _cardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristics; - if (_cardCharacteristics.improvedLevel is true) + if(_card.GetComponent().cardConfig.improvedLevel) { - _cardCharacteristics.quantityStamina = _cardCharacteristics.quantityStamina2; - _cardCharacteristics.quantityHealth = _cardCharacteristics.quantityHealth2; - _cardCharacteristics.damage = _cardCharacteristics.damage2; - _cardCharacteristics.addHealth = _cardCharacteristics.addHealth2; - _cardCharacteristics.addStamina = _cardCharacteristics.addStamina2; - _cardCharacteristics.addArmor = _cardCharacteristics.addArmor2; + _card.GetComponent().cardConfig.CardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristicslvl2; } - } - - public void ResetCardCharacteristic(GameObject _card) - { - var _cardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristics; - - _cardCharacteristics.quantityStamina = localquantityStamina; - _cardCharacteristics.quantityHealth = localquantityHealth; - _cardCharacteristics.damage = localdamage; - _cardCharacteristics.addHealth = localaddHealth; - _cardCharacteristics.addStamina = localaddStamina; - _cardCharacteristics.addArmor = localaddArmor; + else + { + _card.GetComponent().cardConfig.CardCharacteristics = _card.GetComponent().cardConfig.CardCharacteristicslvl1; + } + } public void DestroyObject() { - ResetCardCharacteristic(cardObject); Destroy(cardObject); - //Camera.main.GetComponent().CardInTable.RemoveAt(number); } } diff --git a/Assets/Scripts/Configs/CardConfig.cs b/Assets/Scripts/Configs/CardConfig.cs index 1bbbd862..99e99fdf 100644 --- a/Assets/Scripts/Configs/CardConfig.cs +++ b/Assets/Scripts/Configs/CardConfig.cs @@ -7,7 +7,12 @@ using System.Collections.Generic; [CreateAssetMenu(fileName = "CardConfig", menuName = "Configs/CardConfig")] public class CardConfig : ScriptableObject { - public CardCharacteristics CardCharacteristics; + [Header("Level")] + public bool improvedLevel; + + [HideInInspector] public CardCharacteristics CardCharacteristics; + public CardCharacteristics CardCharacteristicslvl1; + public CardCharacteristics CardCharacteristicslvl2; } [Serializable] @@ -47,9 +52,6 @@ public class CardCharacteristics [Tooltip("specialization is necessary for the right choice of goals")] public Specialization specialization; - [Header("Level")] - public bool improvedLevel; - [Header("Cost")] public int quantityStamina; public int quantityHealth; @@ -74,19 +76,5 @@ public class CardCharacteristics } public ListEffects[] effects; - - [Header("Cost")] - [Header("SecondLevelCharacteristic")] - public int quantityStamina2; - public int quantityHealth2; - [Space] - [Header("Damage")] - public int damage2; - [Space] - [Header("Effects")] - public int addHealth2; - public int addStamina2; - public int addArmor2; - - } + \ No newline at end of file diff --git a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset index 66bb6661..7077ba28 100644 --- a/Assets/Scripts/Configs/CardConfigs/AddStamina.asset +++ b/Assets/Scripts/Configs/CardConfigs/AddStamina.asset @@ -12,12 +12,38 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: AddStamina m_EditorClassIdentifier: + improvedLevel: 1 CardCharacteristics: - cardName: Add stamina + cardName: Add Stamina picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} - description: this is horosho + description: + specialization: 2 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 2 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Add Stamina + picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} + description: + specialization: 2 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 1 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: Add Stamina + picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} + description: specialization: 2 - improvedLevel: 1 quantityStamina: 0 quantityHealth: 0 damage: 0 @@ -26,9 +52,3 @@ MonoBehaviour: addArmor: 0 enemyCount: 0 effects: [] - quantityStamina2: 0 - quantityHealth2: 0 - damage2: 0 - addHealth2: 0 - addStamina2: 2 - addArmor2: 0 diff --git a/Assets/Scripts/Configs/CardConfigs/BigHealing.asset b/Assets/Scripts/Configs/CardConfigs/BigHealing.asset index fe380cca..ba08af50 100644 --- a/Assets/Scripts/Configs/CardConfigs/BigHealing.asset +++ b/Assets/Scripts/Configs/CardConfigs/BigHealing.asset @@ -12,14 +12,43 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: BigHealing m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Big Healing picture: {fileID: 21300000, guid: 8e806042cc9fab349a847987c076f85d, type: 3} - description: This is big healing + description: specialization: 2 quantityStamina: 2 quantityHealth: 0 damage: 0 - addHealth: 5 + addHealth: 8 addStamina: 0 addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Big Healing + picture: {fileID: 21300000, guid: 8e806042cc9fab349a847987c076f85d, type: 3} + description: + specialization: 2 + quantityStamina: 2 + quantityHealth: 0 + damage: 0 + addHealth: 8 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset b/Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset index 0cc60034..eee041a6 100644 --- a/Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset +++ b/Assets/Scripts/Configs/CardConfigs/GrenadeLauncher.asset @@ -12,6 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: GrenadeLauncher m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Grenade Launcher picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} @@ -23,3 +24,31 @@ MonoBehaviour: addHealth: 0 addStamina: 0 addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Grenade Launcher + picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} + description: + specialization: 1 + quantityStamina: 2 + quantityHealth: 0 + damage: 5 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 2 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset b/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset index 4837d337..29de6232 100644 --- a/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset +++ b/Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset @@ -12,12 +12,12 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: LongSmallDamage m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: - cardName: Long small damage + cardName: Long Small Damage picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} description: specialization: 1 - improvedLevel: 0 quantityStamina: 1 quantityHealth: 0 damage: 3 @@ -29,9 +29,32 @@ MonoBehaviour: - effect: 0 turns: 2 damage: 1 - quantityStamina2: 0 - quantityHealth2: 0 - damage2: 0 - addHealth2: 0 - addStamina2: 0 - addArmor2: 0 + CardCharacteristicslvl1: + cardName: Long Small Damage + picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} + description: + specialization: 1 + quantityStamina: 1 + quantityHealth: 0 + damage: 3 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: + - effect: 0 + turns: 2 + damage: 1 + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset b/Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset index b7291c5a..ff1dac11 100644 --- a/Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset +++ b/Assets/Scripts/Configs/CardConfigs/MassiveDamage.asset @@ -12,15 +12,43 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: MassiveDamage m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Massive Damage picture: {fileID: 21300000, guid: 9e63c26e66e64e841b4b52c94e08a31b, type: 3} - description: Dealing damage to all enemies on the table + description: specialization: 1 quantityStamina: 2 quantityHealth: 0 - damage: 4 + damage: 3 addHealth: 0 addStamina: 0 addArmor: 0 enemyCount: 3 + effects: [] + CardCharacteristicslvl1: + cardName: Massive Damage + picture: {fileID: 21300000, guid: 9e63c26e66e64e841b4b52c94e08a31b, type: 3} + description: + specialization: 1 + quantityStamina: 2 + quantityHealth: 0 + damage: 3 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 3 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset b/Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset index 5660ec74..0aa88da7 100644 --- a/Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset +++ b/Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset @@ -12,12 +12,12 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: MeleeSmallDamage m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: - cardName: Melee small damage + cardName: Melee Small picture: {fileID: 21300000, guid: 81903c5799d202f458fd2fa30bb13cd9, type: 3} - description: This is small damage + description: specialization: 0 - improvedLevel: 0 quantityStamina: 1 quantityHealth: 0 damage: 5 @@ -25,13 +25,30 @@ MonoBehaviour: addStamina: 0 addArmor: 0 enemyCount: 0 - effects: - - effect: 0 - turns: 1 - damage: 1 - quantityStamina2: 0 - quantityHealth2: 0 - damage2: 0 - addHealth2: 0 - addStamina2: 0 - addArmor2: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Melee Small + picture: {fileID: 21300000, guid: 81903c5799d202f458fd2fa30bb13cd9, type: 3} + description: + specialization: 0 + quantityStamina: 1 + quantityHealth: 0 + damage: 5 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerPunch.asset b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerPunch.asset index 5ee70e0d..6122ace2 100644 --- a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerPunch.asset +++ b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerPunch.asset @@ -12,6 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: RangerPunch m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Punch picture: {fileID: 21300000, guid: 81903c5799d202f458fd2fa30bb13cd9, type: 3} @@ -24,3 +25,30 @@ MonoBehaviour: addStamina: 0 addArmor: 0 enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Ranger Punch + picture: {fileID: 21300000, guid: 81903c5799d202f458fd2fa30bb13cd9, type: 3} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 4 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerReload.asset b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerReload.asset index 1b767fb8..f441b322 100644 --- a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerReload.asset +++ b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerReload.asset @@ -12,6 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: RangerReload m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Reload picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} @@ -24,3 +25,30 @@ MonoBehaviour: addStamina: 1 addArmor: 0 enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: 'Reload ' + picture: {fileID: 21300000, guid: 11194064875365e48be6ed64b065cb41, type: 3} + description: + specialization: 2 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 1 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerRepair.asset b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerRepair.asset index e01ea51b..2595fa56 100644 --- a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerRepair.asset +++ b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerRepair.asset @@ -12,6 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: RangerRepair m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Repair picture: {fileID: 21300000, guid: 7ab8624721af8974b9d81950d6603da1, type: 3} @@ -24,3 +25,30 @@ MonoBehaviour: addStamina: 0 addArmor: 5 enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: 'Repair ' + picture: {fileID: 21300000, guid: 7ab8624721af8974b9d81950d6603da1, type: 3} + description: + specialization: 2 + quantityStamina: 1 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 5 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerShot.asset b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerShot.asset index ea91a4b0..e694e1fd 100644 --- a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerShot.asset +++ b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerShot.asset @@ -12,8 +12,9 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: RangerShot m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: - cardName: Shot + cardName: 'Shot ' picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} description: specialization: 1 @@ -24,3 +25,30 @@ MonoBehaviour: addStamina: 0 addArmor: 0 enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: 'Shot ' + picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} + description: + specialization: 1 + quantityStamina: 1 + quantityHealth: 0 + damage: 7 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerVolley.asset b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerVolley.asset index a09b4f41..1f9b388f 100644 --- a/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerVolley.asset +++ b/Assets/Scripts/Configs/CardConfigs/RangerPack/RangerVolley.asset @@ -12,11 +12,12 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: RangerVolley m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: - cardName: Vooley + cardName: 'Volley ' picture: {fileID: 21300000, guid: 9e63c26e66e64e841b4b52c94e08a31b, type: 3} - description: Massive attack - specialization: 1 + description: + specialization: 0 quantityStamina: 2 quantityHealth: 0 damage: 5 @@ -24,3 +25,30 @@ MonoBehaviour: addStamina: 0 addArmor: 0 enemyCount: 3 + effects: [] + CardCharacteristicslvl1: + cardName: 'Volley ' + picture: {fileID: 21300000, guid: 9e63c26e66e64e841b4b52c94e08a31b, type: 3} + description: + specialization: 0 + quantityStamina: 2 + quantityHealth: 0 + damage: 5 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 3 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/SmallArmor.asset b/Assets/Scripts/Configs/CardConfigs/SmallArmor.asset index c02731db..1fd8bb94 100644 --- a/Assets/Scripts/Configs/CardConfigs/SmallArmor.asset +++ b/Assets/Scripts/Configs/CardConfigs/SmallArmor.asset @@ -12,10 +12,11 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: SmallArmor m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Small Armor picture: {fileID: 21300000, guid: 7ab8624721af8974b9d81950d6603da1, type: 3} - description: This is small armor + description: specialization: 2 quantityStamina: 1 quantityHealth: 0 @@ -23,3 +24,31 @@ MonoBehaviour: addHealth: 0 addStamina: 0 addArmor: 2 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Small Armor + picture: {fileID: 21300000, guid: 7ab8624721af8974b9d81950d6603da1, type: 3} + description: + specialization: 2 + quantityStamina: 1 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 2 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/SmallHealing.asset b/Assets/Scripts/Configs/CardConfigs/SmallHealing.asset index 2a717f83..0bf956ef 100644 --- a/Assets/Scripts/Configs/CardConfigs/SmallHealing.asset +++ b/Assets/Scripts/Configs/CardConfigs/SmallHealing.asset @@ -12,10 +12,11 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: SmallHealing m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: - cardName: Small healing + cardName: Small Healing picture: {fileID: 21300000, guid: 8e806042cc9fab349a847987c076f85d, type: 3} - description: This is small healing + description: specialization: 2 quantityStamina: 1 quantityHealth: 0 @@ -23,3 +24,31 @@ MonoBehaviour: addHealth: 3 addStamina: 0 addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Small Healing + picture: {fileID: 21300000, guid: 8e806042cc9fab349a847987c076f85d, type: 3} + description: + specialization: 2 + quantityStamina: 1 + quantityHealth: 0 + damage: 0 + addHealth: 3 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Assets/Scripts/Configs/CardConfigs/SniperRifle.asset b/Assets/Scripts/Configs/CardConfigs/SniperRifle.asset index 01a471dd..1e670689 100644 --- a/Assets/Scripts/Configs/CardConfigs/SniperRifle.asset +++ b/Assets/Scripts/Configs/CardConfigs/SniperRifle.asset @@ -12,14 +12,43 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} m_Name: SniperRifle m_EditorClassIdentifier: + improvedLevel: 0 CardCharacteristics: cardName: Sniper Rifle picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} description: specialization: 1 - quantityStamina: 3 + quantityStamina: 1 quantityHealth: 0 - damage: 20 + damage: 7 addHealth: 0 addStamina: 0 addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl1: + cardName: Sniper Rifle + picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} + description: + specialization: 1 + quantityStamina: 1 + quantityHealth: 0 + damage: 7 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] + CardCharacteristicslvl2: + cardName: + picture: {fileID: 0} + description: + specialization: 0 + quantityStamina: 0 + quantityHealth: 0 + damage: 0 + addHealth: 0 + addStamina: 0 + addArmor: 0 + enemyCount: 0 + effects: [] diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 4b086ac9..0f58ba8e 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index 15bab202..06523e91 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 1920 height: 997 m_ShowMode: 4 - m_Title: Project + m_Title: Game m_RootView: {fileID: 6} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -45,8 +45,8 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 679, y: 492} - m_MaxSize: {x: 14002, y: 14042} + m_MinSize: {x: 679, y: 342} + m_MaxSize: {x: 12004, y: 8042} vertical: 0 controlID: 17 --- !u!114 &3 @@ -112,7 +112,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser + m_Name: ConsoleWindow m_EditorClassIdentifier: m_Children: [] m_Position: @@ -121,14 +121,14 @@ MonoBehaviour: y: 589 width: 1531 height: 358 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 14} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 19} m_Panes: - {fileID: 14} - {fileID: 19} - m_Selected: 0 - m_LastSelected: 1 + m_Selected: 1 + m_LastSelected: 0 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -224,8 +224,8 @@ MonoBehaviour: y: 0 width: 1531 height: 947 - m_MinSize: {x: 403, y: 492} - m_MaxSize: {x: 10001, y: 14042} + m_MinSize: {x: 403, y: 342} + m_MaxSize: {x: 8003, y: 8042} vertical: 1 controlID: 68 --- !u!114 &10 @@ -369,22 +369,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Scripts + - Assets/Scripts/Configs/CardConfigs m_Globs: [] m_OriginalText: m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets/Scripts + - Assets/Scripts/Configs/CardConfigs m_LastFoldersGridSize: -1 m_LastProjectPath: "E:\\Projects \u0441#\\Unity\\omega" m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 3e470000 - m_LastClickedID: 18238 - m_ExpandedIDs: 000000002a4700003447000000ca9a3b + m_SelectedIDs: 52470000 + m_LastClickedID: 18258 + m_ExpandedIDs: 000000002a4700003e470000424700005247000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -437,8 +437,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 + m_SelectedInstanceIDs: d0b5ffff + m_LastClickedInstanceID: -18992 m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000 m_RenameOverlay: @@ -533,9 +533,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 480a0000 + m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: + m_ExpandedIDs: 76b9ffff96660000a8660000c2660000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -741,11 +741,11 @@ MonoBehaviour: m_DrawArea: serializedVersion: 2 x: 0 - y: 0 + y: 21 width: 1150 - height: 568 - m_Scale: {x: 0.47916666, y: 0.47916666} - m_Translation: {x: 575, y: 284} + height: 547 + m_Scale: {x: 0.47916666, y: 0.4791667} + m_Translation: {x: 575, y: 273.5} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 @@ -753,9 +753,9 @@ MonoBehaviour: m_LastShownAreaInsideMargins: serializedVersion: 2 x: -1200 - y: -592.6957 + y: -570.7826 width: 2400 - height: 1185.3914 + height: 1141.5652 m_MinimalGUI: 1 m_defaultScale: 0.47916666 m_LastWindowPixelSize: {x: 1150, y: 568} diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 2a727e12..af423115 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index bca5e205..eac9c087 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 052688d0..6930ae54 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 605b69ba..7a4c27f6 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 22ad19ec..c9816561 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt index d42717e1..3e19bdaf 100644 --- a/Logs/ApiUpdaterCheck.txt +++ b/Logs/ApiUpdaterCheck.txt @@ -859,3 +859,23 @@ C# parse time : 128ms candidates check time : 40ms console write time : 0ms +[api-updater (non-obsolete-error-filter)] 03.03.2022 17:38: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 : 301,6594ms +moved types parse time: 39ms +candidates parse time : 9ms +C# parse time : 205ms +candidates check time : 45ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 03.03.2022 18:14:45 : 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 : 58,6308ms +moved types parse time: 37ms +candidates parse time : 7ms +C# parse time : 123ms +candidates check time : 35ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index 4b26747c..35786a0a 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -55515 +64007 Successfully changed project path to: E:/Projects с#/Unity/omega E:/Projects с#/Unity/omega Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 31.26 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.83 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,2248 +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:56912 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56192 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.001219 seconds. +Registered in 0.001200 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 28.72 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 31.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.482 seconds +- Completed reload, in 1.511 seconds Domain Reload Profiling: - ReloadAssembly (1483ms) - BeginReloadAssembly (37ms) + ReloadAssembly (1511ms) + BeginReloadAssembly (36ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (282ms) + EndReloadAssembly (292ms) LoadAssemblies (35ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (93ms) + SetupTypeCache (95ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (22ms) - SetupLoadedEditorAssemblies (117ms) + RebuildScriptCaches (24ms) + SetupLoadedEditorAssemblies (124ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (29ms) + RefreshPlugins (31ms) BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (55ms) - ProcessInitializeOnLoadMethodAttributes (18ms) + ProcessInitializeOnLoadAttributes (57ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001104 seconds. +Registered in 0.001229 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 28.50 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 34.89 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.780 seconds +- Completed reload, in 0.998 seconds Domain Reload Profiling: - ReloadAssembly (781ms) - BeginReloadAssembly (95ms) + ReloadAssembly (999ms) + BeginReloadAssembly (96ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (13ms) - EndReloadAssembly (646ms) - LoadAssemblies (102ms) + CreateAndSetChildDomain (14ms) + EndReloadAssembly (862ms) + LoadAssemblies (184ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) + SetupTypeCache (190ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (245ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (331ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (29ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + RefreshPlugins (35ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (12ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) + AwakeInstancesAfterBackupRestoration (6ms) 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.39 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.65 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.059400 ms (FindLiveObjects: 0.121600 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.831200 ms DeleteObjects: 0.063600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - path: Assets/Prefabs/BattleScene.unity - artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/BattleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9adf1ea34d006c7ce52b4acb1307e30c') in 0.020867 seconds - Import took 0.023015 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.213674 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24b92bbf42949ef0029db7bcefb58243') in 0.036313 seconds - Import took 0.039175 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.931002 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4da034a49b03abb185b86277f6e1f646') in 0.005043 seconds - Import took 0.007706 seconds . - -======================================================================== -Received Import Request. - Time since last request: 10.527913 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff6570d180454f9f1a56e7710c5dd2c6') in 0.013241 seconds - Import took 0.015895 seconds . - -======================================================================== -Received Import Request. - Time since last request: 40.201073 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6724ac42d559fa35fd14e34849d8bcdf') in 0.006063 seconds - Import took 0.009314 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001328 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.43 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 (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (571ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (65ms) - 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.6 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. -Total: 1.927700 ms (FindLiveObjects: 0.122400 ms CreateObjectMapping: 0.047100 ms MarkObjects: 1.744500 ms DeleteObjects: 0.012500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001151 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.693 seconds -Domain Reload Profiling: - ReloadAssembly (693ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (566ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (157ms) - 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.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. -Total: 1.918000 ms (FindLiveObjects: 0.118900 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.741200 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.001251 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.743 seconds -Domain Reload Profiling: - ReloadAssembly (743ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (603ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. -Total: 1.919800 ms (FindLiveObjects: 0.118300 ms CreateObjectMapping: 0.044100 ms MarkObjects: 1.744900 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.001195 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.698 seconds -Domain Reload Profiling: - ReloadAssembly (698ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (569ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - 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.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: 2592. -Total: 2.079500 ms (FindLiveObjects: 0.121900 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.896200 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.001141 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.729 seconds -Domain Reload Profiling: - ReloadAssembly (729ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (599ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - 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: 94.7 MB. -System memory in use after: 94.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. -Total: 1.959900 ms (FindLiveObjects: 0.122100 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.781400 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.001279 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.731 seconds -Domain Reload Profiling: - ReloadAssembly (731ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (608ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - 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: 94.7 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. -Total: 3.057900 ms (FindLiveObjects: 0.149500 ms CreateObjectMapping: 0.069700 ms MarkObjects: 2.818400 ms DeleteObjects: 0.019100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001127 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.721 seconds -Domain Reload Profiling: - ReloadAssembly (722ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (597ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. -Total: 1.929700 ms (FindLiveObjects: 0.120100 ms CreateObjectMapping: 0.044600 ms MarkObjects: 1.752000 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.002060 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.684 seconds -Domain Reload Profiling: - ReloadAssembly (684ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (561ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - 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.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: 94.7 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. -Total: 1.986700 ms (FindLiveObjects: 0.130900 ms CreateObjectMapping: 0.047000 ms MarkObjects: 1.793300 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.001148 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.745 seconds -Domain Reload Profiling: - ReloadAssembly (745ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (606ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (59ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - 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: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. -Total: 2.420600 ms (FindLiveObjects: 0.161700 ms CreateObjectMapping: 0.052500 ms MarkObjects: 2.176800 ms DeleteObjects: 0.028200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001165 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.712 seconds -Domain Reload Profiling: - ReloadAssembly (713ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (585ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. -Total: 1.932200 ms (FindLiveObjects: 0.120500 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.750800 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.001175 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 (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (579ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.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: 2606. -Total: 2.132900 ms (FindLiveObjects: 0.130400 ms CreateObjectMapping: 0.054500 ms MarkObjects: 1.933800 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.001344 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.720 seconds -Domain Reload Profiling: - ReloadAssembly (721ms) - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (582ms) - LoadAssemblies (70ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - 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.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: 2608. -Total: 3.012100 ms (FindLiveObjects: 0.199500 ms CreateObjectMapping: 0.061700 ms MarkObjects: 2.719400 ms DeleteObjects: 0.030600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001813 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.740 seconds -Domain Reload Profiling: - ReloadAssembly (740ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - EndReloadAssembly (594ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - 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.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: 2610. -Total: 2.018400 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.830300 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.001145 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.693 seconds -Domain Reload Profiling: - ReloadAssembly (693ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (567ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (169ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (156ms) - 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: 2612. -Total: 2.124700 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.047300 ms MarkObjects: 1.895500 ms DeleteObjects: 0.030300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-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.698 seconds -Domain Reload Profiling: - ReloadAssembly (698ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (561ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (146ms) - 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: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2614. -Total: 1.992200 ms (FindLiveObjects: 0.127000 ms CreateObjectMapping: 0.048000 ms MarkObjects: 1.802300 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.001121 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.727 seconds -Domain Reload Profiling: - ReloadAssembly (727ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (598ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -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: 2616. -Total: 2.236100 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.045300 ms MarkObjects: 2.046400 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.001186 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.712 seconds -Domain Reload Profiling: - ReloadAssembly (712ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (576ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (229ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2618. -Total: 2.001900 ms (FindLiveObjects: 0.123000 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.821400 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.001106 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.681 seconds -Domain Reload Profiling: - ReloadAssembly (681ms) - BeginReloadAssembly (74ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (568ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (232ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - 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.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2620. -Total: 1.972300 ms (FindLiveObjects: 0.126300 ms CreateObjectMapping: 0.044600 ms MarkObjects: 1.786400 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.001152 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.651 seconds -Domain Reload Profiling: - ReloadAssembly (651ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (534ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (166ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (139ms) - 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: 1.985900 ms (FindLiveObjects: 0.126700 ms CreateObjectMapping: 0.043000 ms MarkObjects: 1.803300 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.001131 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.704 seconds -Domain Reload Profiling: - ReloadAssembly (704ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (584ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.8 MB. -System memory in use after: 94.9 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2624. -Total: 2.068900 ms (FindLiveObjects: 0.143300 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.860600 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.001162 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.719 seconds -Domain Reload Profiling: - ReloadAssembly (719ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (598ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.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: 2626. -Total: 2.297700 ms (FindLiveObjects: 0.155700 ms CreateObjectMapping: 0.100400 ms MarkObjects: 2.022000 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.001384 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.684 seconds -Domain Reload Profiling: - ReloadAssembly (685ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (559ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.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: 2628. -Total: 6.298900 ms (FindLiveObjects: 0.139600 ms CreateObjectMapping: 0.046800 ms MarkObjects: 6.081700 ms DeleteObjects: 0.029000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.689 seconds -Domain Reload Profiling: - ReloadAssembly (689ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (561ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (229ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - 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.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: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. -Total: 2.384000 ms (FindLiveObjects: 0.128800 ms CreateObjectMapping: 0.044500 ms MarkObjects: 2.193800 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.001262 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.695 seconds -Domain Reload Profiling: - ReloadAssembly (695ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (575ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (154ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. -Total: 1.998400 ms (FindLiveObjects: 0.127600 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.811800 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.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. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.686 seconds -Domain Reload Profiling: - ReloadAssembly (686ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (558ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - 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: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. -Total: 2.176100 ms (FindLiveObjects: 0.126500 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.986600 ms DeleteObjects: 0.015300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001257 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.740 seconds -Domain Reload Profiling: - ReloadAssembly (740ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (611ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - 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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2636. -Total: 1.997200 ms (FindLiveObjects: 0.136900 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.799300 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.001316 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.781 seconds -Domain Reload Profiling: - ReloadAssembly (781ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (649ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (258ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (168ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - 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: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. -Total: 2.110100 ms (FindLiveObjects: 0.132100 ms CreateObjectMapping: 0.048200 ms MarkObjects: 1.914000 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.001242 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.787 seconds -Domain Reload Profiling: - ReloadAssembly (787ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (662ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (211ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (263ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (172ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - 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 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. -Total: 2.160600 ms (FindLiveObjects: 0.125900 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.974500 ms DeleteObjects: 0.014300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001165 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.681 seconds -Domain Reload Profiling: - ReloadAssembly (681ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (565ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (145ms) - 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 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. -Total: 2.670600 ms (FindLiveObjects: 0.205200 ms CreateObjectMapping: 0.089300 ms MarkObjects: 2.342900 ms DeleteObjects: 0.032000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001103 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.686 seconds -Domain Reload Profiling: - ReloadAssembly (686ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (571ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. -Total: 1.970700 ms (FindLiveObjects: 0.122900 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.788100 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.001273 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.678 seconds -Domain Reload Profiling: - ReloadAssembly (679ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (545ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. -Total: 1.946200 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.763100 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 Import Request. - Time since last request: 2952.388724 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b60f00cdb6be4d164a5e3d1cfc7376d') in 0.044719 seconds - Import took 0.047114 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.029705 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f265ce095a052fd5c120ff54593fd87') in 0.004998 seconds - Import took 0.007613 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.006972 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa24a4e9dd9d17d4967989df752fb371') in 0.013692 seconds - Import took 0.016391 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.001203 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80bc2c10d4f4b7f55bda09c9b9d4395f') in 0.012492 seconds - Import took 0.015068 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.434900 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4f6414f439b13c0f79be97aad54567c') in 0.012146 seconds - Import took 0.014712 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001208 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 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 (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (611ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - 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.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. -Total: 2.168900 ms (FindLiveObjects: 0.133600 ms CreateObjectMapping: 0.049000 ms MarkObjects: 1.971000 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: 8.923069 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf05f3fd29e24cd208ce0a652ca4aac0') in 0.026238 seconds - Import took 0.029149 seconds . - -======================================================================== -Received Import Request. - Time since last request: 38.920105 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b8cb72733beefb6582a6796c7c8bffe') in 0.012296 seconds - Import took 0.014906 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.590985 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62922822be00953d46e52be07142e662') in 0.012361 seconds - Import took 0.015129 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.249666 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4925955664eb1b76bdf583cf50aeb679') in 0.012415 seconds - Import took 0.015017 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001423 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.749 seconds -Domain Reload Profiling: - ReloadAssembly (750ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (618ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (241ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - 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: 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.045300 ms (FindLiveObjects: 0.137700 ms CreateObjectMapping: 0.049400 ms MarkObjects: 1.844100 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 Import Request. - Time since last request: 7.329675 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23ca71a2e73d04912723f1af253ae97f') in 0.023379 seconds - Import took 0.025785 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.907867 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4462ce4b162ad633db2382026276335') in 0.005105 seconds - Import took 0.007693 seconds . - -======================================================================== -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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.750 seconds -Domain Reload Profiling: - ReloadAssembly (750ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (619ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (243ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - 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.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.9 MB. -System memory in use after: 95.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. -Total: 2.339000 ms (FindLiveObjects: 0.193900 ms CreateObjectMapping: 0.049700 ms MarkObjects: 2.079500 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 Import Request. - Time since last request: 11.188599 seconds. - path: Assets/Prefabs/Effect.prefab - artifactKey: Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Effect.prefab using Guid(68a81a1d82a983543b7f52b5dd9a9190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '706ff4dd6f6e3f65cde2561cbe8bd5a9') in 0.027203 seconds - Import took 0.029703 seconds . - -======================================================================== -Received Import Request. - Time since last request: 96.255940 seconds. - path: Assets/Graphics/Effects/po-removebg-preview.png - artifactKey: Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Effects/po-removebg-preview.png using Guid(664fb4e4278a75745bf61ff9b2105118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ade40c8108977ef39b865adcf3936ebf') in 0.051328 seconds - Import took 0.054178 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001997 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.768 seconds -Domain Reload Profiling: - ReloadAssembly (768ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (631ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (250ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -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.206400 ms (FindLiveObjects: 0.136500 ms CreateObjectMapping: 0.046000 ms MarkObjects: 2.008200 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.001298 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.672 seconds -Domain Reload Profiling: - ReloadAssembly (672ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (552ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (169ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.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: 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.032500 ms (FindLiveObjects: 0.131200 ms CreateObjectMapping: 0.042700 ms MarkObjects: 1.843700 ms DeleteObjects: 0.014000 ms) +Total: 2.648900 ms (FindLiveObjects: 0.353500 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.146600 ms DeleteObjects: 0.060800 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 35786a0a..4a966f19 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ E:/Projects с#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -64007 +52040 Successfully changed project path to: E:/Projects с#/Unity/omega E:/Projects с#/Unity/omega Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 32.83 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 27.86 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems @@ -35,89 +35,1328 @@ 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:56192 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56316 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.001200 seconds. +Registered in 0.001198 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 31.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.80 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.511 seconds +- Completed reload, in 1.451 seconds Domain Reload Profiling: - ReloadAssembly (1511ms) - BeginReloadAssembly (36ms) + ReloadAssembly (1451ms) + BeginReloadAssembly (38ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (292ms) - LoadAssemblies (35ms) + EndReloadAssembly (279ms) + LoadAssemblies (37ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (95ms) + SetupTypeCache (91ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (24ms) - SetupLoadedEditorAssemblies (124ms) + RebuildScriptCaches (23ms) + SetupLoadedEditorAssemblies (116ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (31ms) - BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (57ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + RefreshPlugins (30ms) + BeforeProcessingInitializeOnLoad (11ms) + ProcessInitializeOnLoadAttributes (53ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.001229 seconds. +Registered in 0.001149 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 34.89 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 31.20 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.998 seconds +- Completed reload, in 0.855 seconds Domain Reload Profiling: - ReloadAssembly (999ms) - BeginReloadAssembly (96ms) + ReloadAssembly (855ms) + BeginReloadAssembly (91ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - EndReloadAssembly (862ms) - LoadAssemblies (184ms) + CreateAndSetChildDomain (12ms) + EndReloadAssembly (725ms) + LoadAssemblies (204ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) + SetupTypeCache (168ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (331ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (242ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (35ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (205ms) - ProcessInitializeOnLoadMethodAttributes (12ms) + RefreshPlugins (31ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (140ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (4ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds -Refreshing native plugins compatible for Editor in 0.65 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 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.648900 ms (FindLiveObjects: 0.353500 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.146600 ms DeleteObjects: 0.060800 ms) +Total: 2.072600 ms (FindLiveObjects: 0.128300 ms CreateObjectMapping: 0.042200 ms MarkObjects: 1.826700 ms DeleteObjects: 0.074500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + path: Assets/Scripts/Configs/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 . + +======================================================================== +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 . + +======================================================================== +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 . + +======================================================================== +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 . + +======================================================================== +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. + 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 . + +======================================================================== +Received Import Request. + Time since last request: 0.030117 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 . + +======================================================================== +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. +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 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) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001155 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.732 seconds +Domain Reload Profiling: + ReloadAssembly (732ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (582ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (233ms) + 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.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. + +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) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001506 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 (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) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (616ms) + LoadAssemblies (65ms) + 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) + 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 (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. + +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) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-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.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. + +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) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-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.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 (693ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (559ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (169ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + 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. +Preloading 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.046200 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.046400 ms MarkObjects: 1.853800 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.001243 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 (707ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (588ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + 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.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: 1.936200 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.753400 ms DeleteObjects: 0.012500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.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. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.697 seconds +Domain Reload Profiling: + ReloadAssembly (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) + 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) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (203ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + 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.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: 2622. +Total: 2.195200 ms (FindLiveObjects: 0.138400 ms CreateObjectMapping: 0.044800 ms MarkObjects: 1.995100 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.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. +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 (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (573ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (167ms) + 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: 94.8 MB. +System memory in use after: 94.9 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) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/Logs/shadercompiler-UnityShaderCompiler.exe11.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe11.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe11.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/Logs/shadercompiler-UnityShaderCompiler.exe8.log index 75cc7b08..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe8.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe8.log @@ -2,5 +2,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown - -Quitting shader compiler process diff --git a/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 diff --git a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 4d59da17..44587aa6 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 1251fd80..4d056b70 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ