From a37121c057d43c5e6793771363f4e4ebf35a614e Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Fri, 26 Nov 2021 14:20:56 -0500 Subject: [PATCH 1/7] added encryption and policy functions --- .../Assets/Scripts/CardanoManager.cs | 82 +++++++++++++++++-- 1 file changed, 74 insertions(+), 8 deletions(-) diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index 25957b6..4d51485 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -13,12 +13,18 @@ using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine; +using CardanoSharp.Wallet.Models.Derivations; +using System.Text.Json; +using CardanoSharp.Wallet.Models.Transactions; +using CardanoSharp.Wallet.TransactionBuilding; +using CardanoSharp.Wallet.Utilities; +using CardanoSharp.Wallet.Models.Transactions.Scripts; public class CardanoManager : MonoBehaviour { private readonly MnemonicService _mnemonicService; private readonly AddressService _addressService; - + private readonly DataManager _dataManager; private readonly ICardanoService _cardanoService; public CardanoManager() @@ -29,7 +35,9 @@ public CardanoManager() .GetRequiredService(); _mnemonicService = new MnemonicService(); - _addressService = new AddressService(); + _addressService = new AddressService(); + + _dataManager = GetComponent(); } // Start is called before the first frame update @@ -38,39 +46,94 @@ void Start() } + #region Wallet Creation public Mnemonic GenerateMnemonic(int size = 24, WordLists wordLists = WordLists.English) { return _mnemonicService.Generate(size, wordLists); } + public Mnemonic RestoreMnemonic(string words) + { + return _mnemonicService.Restore(words); + } + + public IAccountNodeDerivation GetAccountNode(string words) + { + Mnemonic mnemonic = _mnemonicService.Restore(words); + + // Fluent derivation API + return mnemonic + .GetMasterNode() // IMasterNodeDerivation + .Derive(PurposeType.Shelley) // IPurposeNodeDerivation + .Derive(CoinType.Ada) // ICoinNodeDerivation + .Derive(0); // IAccountNodeDerivation + } + + public KeyPair GenerateKeyPair() + { + return KeyPair.GenerateKeyPair(); + } + #endregion + + #region Encryption + public string EncryptKeys(PrivateKey accountPrivateKey, PublicKey accountPublicKey) + { + return JsonSerializer.Serialize((accountPrivateKey.Encrypt("spending_password"), accountPublicKey)); + } + + public (PrivateKey, PublicKey) DecryptKeys(string accountNode) + { + var load = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(accountNode); + return (load.Item1.Decrypt("spending_password"), load.Item2); + } + #endregion + + #region Addresses public Address GetPaymentAddress(string words) { Mnemonic mnemonic = _mnemonicService.Restore(words); - + // Fluent derivation API var account = mnemonic - .GetMasterNode() // IMasterNodeDerivation + .GetMasterNode() // IMasterNodeDerivation .Derive(PurposeType.Shelley) // IPurposeNodeDerivation .Derive(CoinType.Ada) // ICoinNodeDerivation .Derive(0); // IAccountNodeDerivation - + var payment = account.Derive(RoleType.ExternalChain).Derive(0); var staking = account.Derive(RoleType.Staking).Derive(0); Address baseAddr = _addressService.GetAddress( payment.PublicKey, staking.PublicKey, - NetworkType.Testnet, + NetworkType.Testnet, AddressType.Base); return baseAddr; } + #endregion - public Mnemonic RestoreMnemonic(string words) + #region Minting + public void CreateNativeScript(string name, List publicKeys, uint? after = null, uint? before = null) { - return _mnemonicService.Restore(words); + var scriptBuilder = ScriptAllBuilder.Create; + foreach (var pubKey in publicKeys) + { + var policyKeyHash = HashUtility.Blake2b244(pubKey.Key); + scriptBuilder.SetScript(NativeScriptBuilder.Create.SetKeyHash(policyKeyHash)); + } + var nativeScript = scriptBuilder.Build(); + var policyId = nativeScript.GetPolicyId(); + + _dataManager.SaveData($"PolicyId:{name}", JsonSerializer.Serialize(policyId)); } + #endregion + #region Transactions + + #endregion + + #region Blockfrost public async Task GetFundsAsync(string address) { try @@ -84,4 +147,7 @@ public async Task GetFundsAsync(string address) return 0; } } + + + #endregion } From 9fbfb3c28562336eeb97447a0d584f0045998b66 Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Sun, 28 Nov 2021 14:27:45 -0500 Subject: [PATCH 2/7] added event system. starting to add quest triggers for cardano hooks --- .../Assets/Scenes/Game.unity | 89 ++++++++++++++++++- .../Assets/Scenes/MainMenu.unity | 14 ++- .../ScriptableObjects/Quests/Events.meta | 8 ++ .../Quests/Events/Quest1Complete.asset | 14 +++ .../Quests/Events/Quest1Complete.asset.meta | 8 ++ .../Quests/Events/Quest1Start.asset | 14 +++ .../Quests/Events/Quest1Start.asset.meta | 8 ++ .../Quests/TestQuest 1.asset | 2 + .../Assets/Scripts/CardanoManager.cs | 6 +- .../Assets/Scripts/Quests/Quest.cs | 4 + .../Assets/Scripts/Quests/QuestEvents.cs | 19 ++++ .../Assets/Scripts/Quests/QuestEvents.cs.meta | 11 +++ .../Assets/Scripts/Quests/QuestManager.cs | 7 ++ .../Assets/Scripts/Utils/GameEvent.cs | 40 +++++++++ .../Assets/Scripts/Utils/GameEvent.cs.meta | 11 +++ .../Assets/Scripts/Utils/GameEventListener.cs | 34 +++++++ .../Scripts/Utils/GameEventListener.cs.meta | 11 +++ 17 files changed, 297 insertions(+), 3 deletions(-) create mode 100644 CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events.meta create mode 100644 CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset create mode 100644 CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset.meta create mode 100644 CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset create mode 100644 CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset.meta create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs.meta create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs.meta create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs create mode 100644 CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs.meta diff --git a/CardanoSharp Unity Project/Assets/Scenes/Game.unity b/CardanoSharp Unity Project/Assets/Scenes/Game.unity index e258099..6cab3ec 100644 --- a/CardanoSharp Unity Project/Assets/Scenes/Game.unity +++ b/CardanoSharp Unity Project/Assets/Scenes/Game.unity @@ -38,7 +38,7 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} + m_IndirectSpecularColor: {r: 0, g: 0.99999946, b: 0.99999946, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: @@ -443,6 +443,7 @@ GameObject: m_Component: - component: {fileID: 20531134} - component: {fileID: 20531135} + - component: {fileID: 20531136} m_Layer: 0 m_Name: QuestsSystem m_TagString: Untagged @@ -482,6 +483,34 @@ MonoBehaviour: questPanel: {fileID: 2021913048} questText: {fileID: 314036557} fadeTextDuration: 1.5 +--- !u!114 &20531136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 20531133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d3d7897a18e9cb243b2329a7b2b1810c, type: 3} + m_Name: + m_EditorClassIdentifier: + event: {fileID: 11400000, guid: f42b91b5206bc8d42ad7eac685fc1b56, type: 2} + _response: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 0} + m_TargetAssemblyTypeName: QuestStart, Assembly-CSharp + m_MethodName: Quest1 + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 --- !u!1001 &24253582 PrefabInstance: m_ObjectHideFlags: 0 @@ -11798,6 +11827,7 @@ Transform: - {fileID: 86855284} - {fileID: 1380923561} - {fileID: 764763085} + - {fileID: 1999618501} m_Father: {fileID: 0} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -21450,6 +21480,7 @@ GameObject: m_Component: - component: {fileID: 1380923561} - component: {fileID: 1380923562} + - component: {fileID: 1380923563} m_Layer: 0 m_Name: CardanoSystem m_TagString: Untagged @@ -21483,6 +21514,18 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 020655a535b13da439dc6b563fe77026, type: 3} m_Name: m_EditorClassIdentifier: +--- !u!114 &1380923563 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1380923560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b52f6c4cbd321446be2403b7653eaf1, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1382235443 PrefabInstance: m_ObjectHideFlags: 0 @@ -31299,6 +31342,50 @@ Transform: m_CorrespondingSourceObject: {fileID: 5825524859676944412, guid: 6058628fd4fe61d4189de1c3c4b87e8c, type: 3} m_PrefabInstance: {fileID: 1997511309} m_PrefabAsset: {fileID: 0} +--- !u!1 &1999618500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1999618501} + - component: {fileID: 1999618502} + m_Layer: 0 + m_Name: QuestEvents + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1999618501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1999618500} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 767220448} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1999618502 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1999618500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6c2ba1858cfc88043b22a089f840bb9a, type: 3} + m_Name: + m_EditorClassIdentifier: + CardanoManager: {fileID: 1380923562} --- !u!1001 &2002800752 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/CardanoSharp Unity Project/Assets/Scenes/MainMenu.unity b/CardanoSharp Unity Project/Assets/Scenes/MainMenu.unity index b322125..129a194 100644 --- a/CardanoSharp Unity Project/Assets/Scenes/MainMenu.unity +++ b/CardanoSharp Unity Project/Assets/Scenes/MainMenu.unity @@ -2363,6 +2363,7 @@ GameObject: - component: {fileID: 834105314} - component: {fileID: 834105312} - component: {fileID: 834105311} + - component: {fileID: 834105315} m_Layer: 0 m_Name: -- MANAGER -- m_TagString: Untagged @@ -2383,7 +2384,6 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: mnemonicWords: {fileID: 269961319} - mnemonicText: {fileID: 656579819} addressText: {fileID: 674035691} playButton: {fileID: 707060593} --- !u!114 &834105312 @@ -2424,6 +2424,18 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 020655a535b13da439dc6b563fe77026, type: 3} m_Name: m_EditorClassIdentifier: +--- !u!114 &834105315 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 834105310} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b52f6c4cbd321446be2403b7653eaf1, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &974300119 GameObject: m_ObjectHideFlags: 0 diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events.meta b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events.meta new file mode 100644 index 0000000..518db2a --- /dev/null +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4897ac160d0818040968c5ddeee84692 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset new file mode 100644 index 0000000..efd6238 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b7b581234606f94185678a0d6e55e39, type: 3} + m_Name: Quest1Complete + m_EditorClassIdentifier: diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset.meta b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset.meta new file mode 100644 index 0000000..d452100 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc447db33075af3428239af9aa37c4b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset new file mode 100644 index 0000000..dbd1b7d --- /dev/null +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b7b581234606f94185678a0d6e55e39, type: 3} + m_Name: Quest1Start + m_EditorClassIdentifier: diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset.meta b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset.meta new file mode 100644 index 0000000..5790fb2 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/Events/Quest1Start.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f42b91b5206bc8d42ad7eac685fc1b56 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest 1.asset b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest 1.asset index 4a0ff00..138300f 100644 --- a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest 1.asset +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest 1.asset @@ -14,3 +14,5 @@ MonoBehaviour: m_EditorClassIdentifier: id: questInfo: Second quest + OnStart: {fileID: 11400000, guid: f42b91b5206bc8d42ad7eac685fc1b56, type: 2} + OnComplete: {fileID: 11400000, guid: cc447db33075af3428239af9aa37c4b2, type: 2} diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index 4d51485..a20772a 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -22,9 +22,10 @@ public class CardanoManager : MonoBehaviour { + private DataManager _dataManager; + private readonly MnemonicService _mnemonicService; private readonly AddressService _addressService; - private readonly DataManager _dataManager; private readonly ICardanoService _cardanoService; public CardanoManager() @@ -36,7 +37,10 @@ public CardanoManager() _mnemonicService = new MnemonicService(); _addressService = new AddressService(); + } + private void Awake() + { _dataManager = GetComponent(); } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs index 4787344..052b590 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs @@ -1,3 +1,4 @@ +using Assets.Scripts.Utils; using System.Collections; using System.Collections.Generic; using UnityEngine; @@ -8,4 +9,7 @@ public class Quest : ScriptableObject public string id; [TextArea(1, 3)] public string questInfo; + + public GameEvent OnStart; + public GameEvent OnComplete; } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs new file mode 100644 index 0000000..2153bb5 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class QuestEvents : MonoBehaviour +{ + public CardanoManager CardanoManager; + + public void StartQuest1() + { + Debug.Log("Quest 1 Started!"); + } + + public void CompleteQuest1() + { + Debug.Log("Quest 1 Completed!"); + } +} diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs.meta b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs.meta new file mode 100644 index 0000000..bda6e05 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6c2ba1858cfc88043b22a089f840bb9a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs index 37db240..872f4ec 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs @@ -25,12 +25,19 @@ private void Start() public void SetCurrentQuestInfo() { questText.text = quests[currentQuestIndex].questInfo; + + if(quests[currentQuestIndex].OnStart != null) + quests[currentQuestIndex].OnStart.Raise(); + NewQuestAnimation(); } [ContextMenu("Complete Quest")] public void CompleteCurrentQuest() { + if(quests[currentQuestIndex].OnComplete != null) + quests[currentQuestIndex].OnComplete.Raise(); + if (currentQuestIndex < quests.Count - 1) { currentQuestIndex++; diff --git a/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs new file mode 100644 index 0000000..e71e0f2 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using UnityEngine; +using UnityEngine.Events; + +namespace Assets.Scripts.Utils +{ + [CreateAssetMenu(fileName = "GameEvent", menuName = "Events/Game Event")] + public class GameEvent: ScriptableObject + { + private readonly List _eventListeners = new List(); + + public void Raise() + { + for(int i = _eventListeners.Count - 1; i >= 0; i--) + { + _eventListeners[i].OnEventRaised(); + } + } + + public void RegisterListener(IGameEventListener listener) + { + if (!_eventListeners.Contains(listener)) + { + _eventListeners.Add(listener); + } + } + + public void UnregisterListener(IGameEventListener listener) + { + if (_eventListeners.Contains(listener)) + { + _eventListeners.Remove(listener); + } + } + } +} diff --git a/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs.meta b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs.meta new file mode 100644 index 0000000..4fc7908 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEvent.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5b7b581234606f94185678a0d6e55e39 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs new file mode 100644 index 0000000..ee32859 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs @@ -0,0 +1,34 @@ +using System; +using UnityEngine; +using UnityEngine.Events; + +namespace Assets.Scripts.Utils +{ + public interface IGameEventListener + { + void OnEventRaised(); + } + + [Serializable] + public class GameEventListener : MonoBehaviour, IGameEventListener + { + [SerializeField] private GameEvent @event; + + [SerializeField] private UnityEvent _response; + + public void OnEventRaised() + { + _response?.Invoke(); + } + + public void OnEnable() + { + if (@event != null) @event.RegisterListener(this); + } + + public void OnDisable() + { + @event.UnregisterListener(this); + } + } +} diff --git a/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs.meta b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs.meta new file mode 100644 index 0000000..f588504 --- /dev/null +++ b/CardanoSharp Unity Project/Assets/Scripts/Utils/GameEventListener.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d3d7897a18e9cb243b2329a7b2b1810c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: From 56ffd642994588ffd68e82b5cf2895199b36a2d7 Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Sun, 28 Nov 2021 16:03:42 -0500 Subject: [PATCH 3/7] added the first quest events and stubbed out the last quest --- .../Assets/Scripts/CardanoManager.cs | 39 ++++++++++++++++++- .../Assets/Scripts/Data/DataManager.cs | 10 ++++- .../Assets/Scripts/Quests/QuestEvents.cs | 7 +++- 3 files changed, 53 insertions(+), 3 deletions(-) diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index a20772a..0ad16e2 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -19,6 +19,7 @@ using CardanoSharp.Wallet.TransactionBuilding; using CardanoSharp.Wallet.Utilities; using CardanoSharp.Wallet.Models.Transactions.Scripts; +using System; public class CardanoManager : MonoBehaviour { @@ -51,6 +52,39 @@ void Start() } #region Wallet Creation + public void CreateWallet(string walletName) + { + walletName = $"Wallet:{walletName}"; + + if (_dataManager.Exists(walletName)) + _dataManager.DeleteData(walletName); + + var mnemonic = new MnemonicService().Generate(24); + + var accountNode = mnemonic.GetMasterNode() + .Derive(PurposeType.Shelley) + .Derive(CoinType.Ada) + .Derive(0); + + var paymentIx = accountNode + .Derive(RoleType.ExternalChain) + .Derive(0); + paymentIx.SetPublicKey(); + + var stakingIx = accountNode + .Derive(RoleType.Staking) + .Derive(0); + paymentIx.SetPublicKey(); + + var baseAddr = new AddressService() + .GetAddress(paymentIx.PublicKey, + stakingIx.PublicKey, + NetworkType.Testnet, + AddressType.Base); + + _dataManager.SaveData(walletName, baseAddr.ToString()); + } + public Mnemonic GenerateMnemonic(int size = 24, WordLists wordLists = WordLists.English) { return _mnemonicService.Generate(size, wordLists); @@ -134,7 +168,10 @@ public void CreateNativeScript(string name, List publicKeys, uint? af #endregion #region Transactions - + public async void MintNFT(string nft) + { + throw new NotImplementedException(); + } #endregion #region Blockfrost diff --git a/CardanoSharp Unity Project/Assets/Scripts/Data/DataManager.cs b/CardanoSharp Unity Project/Assets/Scripts/Data/DataManager.cs index 2bf7cbf..461840d 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Data/DataManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Data/DataManager.cs @@ -16,5 +16,13 @@ public string GetData(string name) return PlayerPrefs.GetString(name); } - public void DeleteData() { PlayerPrefs.DeleteAll(); } + public bool Exists(string name) + { + return PlayerPrefs.HasKey(name); + } + + public void DeleteData(string name) + { + PlayerPrefs.DeleteKey(name); + } } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs index 2153bb5..6dd8b7a 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs @@ -9,11 +9,16 @@ public class QuestEvents : MonoBehaviour public void StartQuest1() { - Debug.Log("Quest 1 Started!"); + CardanoManager.CreateWallet("Player"); } public void CompleteQuest1() { Debug.Log("Quest 1 Completed!"); } + + public void CompleteQuest3() + { + CardanoManager.MintNFT("Sword"); + } } From 27813ff86dc8de7878a372c21dd805354b4524cd Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Thu, 9 Dec 2021 14:25:07 -0500 Subject: [PATCH 4/7] first pass at the nft minting --- .../Assets/Scripts/CardanoManager.cs | 207 +++++++++++++++++- .../Assets/Scripts/Quests/QuestEvents.cs | 2 +- 2 files changed, 196 insertions(+), 13 deletions(-) diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index 0ad16e2..2b67d40 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -6,6 +6,7 @@ using CardanoSharp.Wallet.Enums; using CardanoSharp.Wallet.Models.Keys; using CardanoSharp.Wallet.Models.Addresses; +using CardanoSharp.Wallet.Extensions; using CardanoSharp.Wallet.Extensions.Models; using Microsoft.Extensions.DependencyInjection; using System.Linq; @@ -20,6 +21,8 @@ using CardanoSharp.Wallet.Utilities; using CardanoSharp.Wallet.Models.Transactions.Scripts; using System; +using CardanoSharp.Wallet.Extensions.Models.Transactions; +using System.IO; public class CardanoManager : MonoBehaviour { @@ -52,9 +55,9 @@ void Start() } #region Wallet Creation - public void CreateWallet(string walletName) + public void CreatePlayerWallet(string walletName) { - walletName = $"Wallet:{walletName}"; + walletName = getWalletDataName(walletName); if (_dataManager.Exists(walletName)) _dataManager.DeleteData(walletName); @@ -82,7 +85,26 @@ public void CreateWallet(string walletName) NetworkType.Testnet, AddressType.Base); - _dataManager.SaveData(walletName, baseAddr.ToString()); + _dataManager.SaveData(walletName, JsonSerializer.Serialize(baseAddr)); + } + public void CreateDeveloperWallet(string walletName) + { + walletName = getWalletDataName(walletName); + + if (_dataManager.Exists(walletName)) + _dataManager.DeleteData(walletName); + + var mnemonic = new MnemonicService().Generate(24); + + var accountNode = mnemonic.GetMasterNode() + .Derive(PurposeType.Shelley) + .Derive(CoinType.Ada) + .Derive(0); + accountNode.SetPublicKey(); + + //DEMO ONLY + //Never save private key unencrypted + _dataManager.SaveData(walletName, JsonSerializer.Serialize((accountNode.PrivateKey, accountNode.PublicKey))); } public Mnemonic GenerateMnemonic(int size = 24, WordLists wordLists = WordLists.English) @@ -152,28 +174,141 @@ public Address GetPaymentAddress(string words) #endregion #region Minting - public void CreateNativeScript(string name, List publicKeys, uint? after = null, uint? before = null) + public void CreateNativeScript(string name, uint? after = null, uint? before = null) { + var keypair = KeyPair.GenerateKeyPair(); + var scriptBuilder = ScriptAllBuilder.Create; - foreach (var pubKey in publicKeys) - { - var policyKeyHash = HashUtility.Blake2b244(pubKey.Key); - scriptBuilder.SetScript(NativeScriptBuilder.Create.SetKeyHash(policyKeyHash)); - } + var policyKeyHash = HashUtility.Blake2b244(keypair.PublicKey.Key); + scriptBuilder.SetScript(NativeScriptBuilder.Create.SetKeyHash(policyKeyHash)); + + _dataManager.SaveData(getPolicyScriptDataName(name), JsonSerializer.Serialize(scriptBuilder)); + var nativeScript = scriptBuilder.Build(); var policyId = nativeScript.GetPolicyId(); - _dataManager.SaveData($"PolicyId:{name}", JsonSerializer.Serialize(policyId)); + _dataManager.SaveData(getPolicyDataName(name), JsonSerializer.Serialize((keypair.PrivateKey, keypair.PublicKey))); + _dataManager.SaveData(getPolicyIdDataName(name), policyId.ToStringHex()); } #endregion #region Transactions - public async void MintNFT(string nft) + public async void MintNFT(string fromWalletName, string toWalletName, string tokenName, uint quantity, object metadata) { - throw new NotImplementedException(); + //DEMO + //we know "from" is game dev wallet + // "to" is player address + var fromPolicyIdString = getPolicyIdDataName(fromWalletName); + var fromPolicyKeysSerialized = getPolicyDataName(fromWalletName); + var fromPolicyScriptSerialized = getPolicyScriptDataName(fromWalletName); + fromWalletName = getWalletDataName(fromWalletName); + toWalletName = getWalletDataName(toWalletName); + + var fromPolicyId = _dataManager.GetData(fromPolicyIdString).HexToByteArray(); + var fromPolicyScript = JsonSerializer.Deserialize(_dataManager.GetData(fromPolicyScriptSerialized)); + var fromPolicyKeys = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(_dataManager.GetData(fromPolicyKeysSerialized)); + var fromWallet = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(_dataManager.GetData(fromWalletName)); + var toAddress = JsonSerializer.Deserialize
(_dataManager.GetData(toWalletName)); + + var fromAccount = new AccountNodeDerivation(fromWallet.Item1, 0); + var paymentIx = fromAccount + .Derive(RoleType.ExternalChain) + .Derive(0); + paymentIx.SetPublicKey(); + + var stakingIx = fromAccount + .Derive(RoleType.Staking) + .Derive(0); + paymentIx.SetPublicKey(); + + var baseAddr = new AddressService() + .GetAddress(paymentIx.PublicKey, + stakingIx.PublicKey, + NetworkType.Testnet, + AddressType.Base); + + var utxos = await GetUtxos(baseAddr.ToString()); + var feeParams = await GetFeeParameters(); + var latestSlot = await GetLatestSlot(); + + var transactionBody = TransactionBodyBuilder.Create; + + foreach (var utxo in utxos) + { + transactionBody.AddInput(utxo.TxHash.HexToByteArray(), (uint)utxo.TxIndex); + } + + long totalBalance = utxos.SelectMany(m => m.Amount).Where(m => m.Unit == "lovelace").Sum(m => long.Parse(m.Quantity)); + ulong sendingAdaQuantity = 2000000; + ulong totalChange = (ulong)totalBalance - sendingAdaQuantity; + + var mintAsset = TokenBundleBuilder.Create + .AddToken(fromPolicyId, tokenName.ToBytes(), quantity); + + TransactionOutput changeOutput = new TransactionOutput() + { + Address = baseAddr.GetBytes(), + Value = new TransactionOutputValue() + { + Coin = totalChange + } + }; + + transactionBody + .AddOutput(toAddress.GetBytes(), sendingAdaQuantity, mintAsset) + .AddOutput(changeOutput.Address, changeOutput.Value.Coin) + .SetFee(0) + .SetTtl(0); + + var witnesses = TransactionWitnessSetBuilder.Create + .AddVKeyWitness(fromWallet.Item2, fromWallet.Item1) + .AddVKeyWitness(fromPolicyKeys.Item2, fromPolicyKeys.Item1) + .SetNativeScript(fromPolicyScript); + + var auxData = AuxiliaryDataBuilder.Create + .AddMetadata(1337, metadata); + + var transactionBuilder = TransactionBuilder.Create + .SetBody(transactionBody) + .SetWitnesses(witnesses) + .SetAuxData(auxData); + + var transaction = transactionBuilder.Build(); + + var fee = transaction.CalculateFee((uint)feeParams.Item1, (uint)feeParams.Item2); + + transactionBody.SetFee(fee); + changeOutput.Value.Coin = changeOutput.Value.Coin - fee; + transaction = transactionBuilder.Build(); + + //serialize the transaction + var signedTx = transaction.Serialize(); + + var txHash = await SubmitTx(signedTx); + Debug.Log($"Minting Transaction: {txHash}"); } #endregion + private string getWalletDataName(string name) + { + return $"Wallet:{name}"; + } + + private string getPolicyIdDataName(string name) + { + return $"PolicyId:{name}"; + } + + private string getPolicyScriptDataName(string name) + { + return $"PolicyScript:{name}"; + } + + private string getPolicyDataName(string name) + { + return $"Policy:{name}"; + } + #region Blockfrost public async Task GetFundsAsync(string address) { @@ -189,6 +324,54 @@ public async Task GetFundsAsync(string address) } } + public async Task GetUtxos(string address) + { + try + { + return await _cardanoService.Addresses.GetUtxosAsync(address); + }catch + { + return null; + } + } + + public async Task<(long, long)> GetFeeParameters() + { + try + { + var pps = await _cardanoService.Epochs.GetLatestParametersAsync(); + return (pps.MinFeeA, pps.MinFeeB); + } + catch + { + return (-1, -1); + } + } + + public async Task GetLatestSlot() + { + try + { + var block = await _cardanoService.Blocks.GetLatestAsync(); + return block.Slot; + } + catch + { + return -1; + } + } + public async Task SubmitTx(byte[] signedTx) + { + try + { + using (MemoryStream stream = new MemoryStream(signedTx)) + return await _cardanoService.Transactions.PostTxSubmitAsync(stream); + } + catch + { + return null; + } + } #endregion } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs index 6dd8b7a..1c60a07 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs @@ -9,7 +9,7 @@ public class QuestEvents : MonoBehaviour public void StartQuest1() { - CardanoManager.CreateWallet("Player"); + CardanoManager.CreatePlayerWallet("Player"); } public void CompleteQuest1() From 458724ba338a1b14d3355eb7a89660a0318a7b9f Mon Sep 17 00:00:00 2001 From: Javier Date: Mon, 17 Jan 2022 17:50:27 +0100 Subject: [PATCH 5/7] Quest events --- .../.idea/encodings.xml | 4 + .../.idea/indexLayout.xml | 8 + .../.idea/projectSettingsUpdater.xml | 6 + .../.idea/workspace.xml | 51 + .../ScriptableObjects/Quests/TestQuest.asset | 2 + .../Assets/Scripts/Quests/Quest.cs | 45 +- .../Assets/Scripts/Quests/QuestEvents.cs | 6 +- .../Assets/Scripts/Quests/QuestManager.cs | 11 +- .../Logs/AssetImportWorker0.log | 2340 ++++------------- .../shadercompiler-AssetImportWorker0.log | 3 - 10 files changed, 681 insertions(+), 1795 deletions(-) create mode 100644 CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/encodings.xml create mode 100644 CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/indexLayout.xml create mode 100644 CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/projectSettingsUpdater.xml create mode 100644 CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/workspace.xml diff --git a/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/encodings.xml b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/indexLayout.xml b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/indexLayout.xml new file mode 100644 index 0000000..f5a863a --- /dev/null +++ b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/projectSettingsUpdater.xml b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/projectSettingsUpdater.xml new file mode 100644 index 0000000..bd1d7c7 --- /dev/null +++ b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/projectSettingsUpdater.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/workspace.xml b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/workspace.xml new file mode 100644 index 0000000..1d835a7 --- /dev/null +++ b/CardanoSharp Unity Project/.idea/.idea.CardanoSharp Unity Project/.idea/workspace.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest.asset b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest.asset index b183325..4a32b2d 100644 --- a/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest.asset +++ b/CardanoSharp Unity Project/Assets/ScriptableObjects/Quests/TestQuest.asset @@ -14,3 +14,5 @@ MonoBehaviour: m_EditorClassIdentifier: id: questInfo: First quest + OnStartEvent: 1 + OnCompleteEvent: 1 diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs index 052b590..531428e 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs @@ -10,6 +10,47 @@ public class Quest : ScriptableObject [TextArea(1, 3)] public string questInfo; - public GameEvent OnStart; - public GameEvent OnComplete; + public startEvent OnStartEvent; + public completeEvent OnCompleteEvent; + + //public GameEvent OnStart; + //public GameEvent OnComplete; + + public enum startEvent //Add enum variables for every event case. + { + Nothing, + StartQuest1 + }; + + public enum completeEvent + { + Nothing, + CompleteQuest1 + }; + + public void OnStart() //Add case for every event. + { + switch (OnStartEvent) + { + case startEvent.Nothing: + break; + + case startEvent.StartQuest1: + QuestEvents.Instance.StartQuest1(); + break; + } + } + + public void OnComplete() //Add case for every event. + { + switch (OnCompleteEvent) + { + case completeEvent.Nothing: + break; + + case completeEvent.CompleteQuest1: + QuestEvents.Instance.CompleteQuest1(); + break; + } + } } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs index 1c60a07..a74c26e 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs @@ -2,14 +2,16 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; +using Utils; -public class QuestEvents : MonoBehaviour +public class QuestEvents : Singleton { public CardanoManager CardanoManager; public void StartQuest1() { CardanoManager.CreatePlayerWallet("Player"); + Debug.Log("Player wallet created"); } public void CompleteQuest1() @@ -19,6 +21,6 @@ public void CompleteQuest1() public void CompleteQuest3() { - CardanoManager.MintNFT("Sword"); + //CardanoManager.MintNFT("Sword"); } } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs index 872f4ec..8b68b89 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestManager.cs @@ -25,9 +25,9 @@ private void Start() public void SetCurrentQuestInfo() { questText.text = quests[currentQuestIndex].questInfo; - - if(quests[currentQuestIndex].OnStart != null) - quests[currentQuestIndex].OnStart.Raise(); + quests[currentQuestIndex].OnStart(); + /*if(quests[currentQuestIndex].OnStart != null) + quests[currentQuestIndex].OnStart.Raise();*/ NewQuestAnimation(); } @@ -35,8 +35,9 @@ public void SetCurrentQuestInfo() [ContextMenu("Complete Quest")] public void CompleteCurrentQuest() { - if(quests[currentQuestIndex].OnComplete != null) - quests[currentQuestIndex].OnComplete.Raise(); + quests[currentQuestIndex].OnComplete(); + /*if(quests[currentQuestIndex].OnComplete != null) + quests[currentQuestIndex].OnComplete.Raise();*/ if (currentQuestIndex < quests.Count - 1) { diff --git a/CardanoSharp Unity Project/Logs/AssetImportWorker0.log b/CardanoSharp Unity Project/Logs/AssetImportWorker0.log index ced4d75..55e4aaf 100644 --- a/CardanoSharp Unity Project/Logs/AssetImportWorker0.log +++ b/CardanoSharp Unity Project/Logs/AssetImportWorker0.log @@ -1,6 +1,6 @@ Using pre-set license Built from '2020.3/staging' branch; Version is '2020.3.16f1 (049d6eca3c44) revision 302446'; Using compiler version '192528614'; Build Type 'Release' -OS: 'Windows 10 Pro; OS build 19043.1348; Version 2009; 64bit' Language: 'es' Physical Memory: 16334 MB +OS: 'Windows 10 Pro; OS build 19044.1466; Version 2009; 64bit' Language: 'es' Physical Memory: 16334 MB BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 COMMAND LINE ARGUMENTS: @@ -15,11 +15,11 @@ D:/Users/Javier/Desktop/Unity Projects/CardanoSharp Unity/CardanoSharp Unity Pro -logFile Logs/AssetImportWorker0.log -srvPort -58117 +52082 Successfully changed project path to: D:/Users/Javier/Desktop/Unity Projects/CardanoSharp Unity/CardanoSharp Unity Project D:/Users/Javier/Desktop/Unity Projects/CardanoSharp Unity/CardanoSharp Unity Project Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 65.69 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 74.02 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.16f1 (049d6eca3c44) [Subsystems] Discovering subsystems at path D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/Resources/UnitySubsystems @@ -30,96 +30,96 @@ Direct3D: Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) Vendor: VRAM: 6052 MB - Driver: 30.0.14.9649 + Driver: 30.0.14.9709 Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Initialize mono Mono path[0] = 'D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/Managed' Mono path[1] = 'D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56864 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56336 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001299 seconds. +Registered in 0.001378 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 57.86 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 59.84 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.194 seconds +- Completed reload, in 1.261 seconds Domain Reload Profiling: - ReloadAssembly (1194ms) - BeginReloadAssembly (68ms) + ReloadAssembly (1262ms) + BeginReloadAssembly (73ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (404ms) - LoadAssemblies (67ms) + EndReloadAssembly (415ms) + LoadAssemblies (73ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (149ms) + SetupTypeCache (144ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (28ms) - SetupLoadedEditorAssemblies (165ms) + SetupLoadedEditorAssemblies (180ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (58ms) + RefreshPlugins (60ms) BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (66ms) - ProcessInitializeOnLoadMethodAttributes (24ms) + ProcessInitializeOnLoadAttributes (76ms) + ProcessInitializeOnLoadMethodAttributes (28ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.019869 seconds. +Registered in 0.022476 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 59.10 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 65.61 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.212 seconds +- Completed reload, in 1.274 seconds Domain Reload Profiling: - ReloadAssembly (1213ms) - BeginReloadAssembly (157ms) + ReloadAssembly (1274ms) + BeginReloadAssembly (155ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (19ms) - EndReloadAssembly (1002ms) - LoadAssemblies (141ms) + CreateAndSetChildDomain (18ms) + EndReloadAssembly (1064ms) + LoadAssemblies (144ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (340ms) + SetupTypeCache (356ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (394ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (420ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (59ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (10ms) + RefreshPlugins (66ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (11ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) + AwakeInstancesAfterBackupRestoration (6ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.90 ms, found 2 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2979 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 137.1 MB. -System memory in use after: 137.3 MB. +Unloading 2983 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 137.2 MB. +System memory in use after: 137.4 MB. -Unloading 58 unused Assets to reduce memory usage. Loaded Objects now: 3388. -Total: 3.712200 ms (FindLiveObjects: 0.309900 ms CreateObjectMapping: 0.078100 ms MarkObjects: 3.222400 ms DeleteObjects: 0.100200 ms) +Unloading 58 unused Assets to reduce memory usage. Loaded Objects now: 3392. +Total: 3.488800 ms (FindLiveObjects: 0.365700 ms CreateObjectMapping: 0.077800 ms MarkObjects: 2.953100 ms DeleteObjects: 0.091200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -133,130 +133,89 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/DialogueSystem/DialogueUI.cs - artifactKey: Guid(da1f478370486c940b455314bcc875ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueUI.cs using Guid(da1f478370486c940b455314bcc875ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f1125184fad993eaff99d31ab8a9af0') in 0.026872 seconds - Import took 0.031351 seconds . + path: Assets/Scripts/Quests/QuestEvents.cs + artifactKey: Guid(6c2ba1858cfc88043b22a089f840bb9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Quests/QuestEvents.cs using Guid(6c2ba1858cfc88043b22a089f840bb9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f45f9339f1008be99b01cd970da9e3a5') in 0.025961 seconds + Import took 0.046878 seconds . ======================================================================== Received Import Request. - Time since last request: 10.850582 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a20b5a0570a3f3f1cd64df062481ef58') in 0.003170 seconds - Import took 0.008312 seconds . + Time since last request: 5.587529 seconds. + path: Assets/Scripts/Quests/Quest.cs + artifactKey: Guid(f2065ce89e57a6b43818ef3a8f413bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Quests/Quest.cs using Guid(f2065ce89e57a6b43818ef3a8f413bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e8ae5c6b1f6bc027fe609135b20c8324') in 0.014325 seconds + Import took 0.025091 seconds . ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.036835 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.817 seconds -Domain Reload Profiling: - ReloadAssembly (1818ms) - BeginReloadAssembly (185ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - EndReloadAssembly (1571ms) - LoadAssemblies (202ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (397ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (153ms) - SetupLoadedEditorAssemblies (716ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (596ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.12 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.6 MB. -System memory in use after: 128.9 MB. +Received Import Request. + Time since last request: 0.662944 seconds. + path: Assets/Scripts/Quests/QuestManager.cs + artifactKey: Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Quests/QuestManager.cs using Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f14fdb177dbbefc71cc7b0bd9d95a0e') in 0.002358 seconds + Import took 0.027269 seconds . -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3391. -Total: 5.023600 ms (FindLiveObjects: 1.232600 ms CreateObjectMapping: 0.103100 ms MarkObjects: 3.646900 ms DeleteObjects: 0.039800 ms) +======================================================================== +Received Import Request. + Time since last request: 341.639645 seconds. + path: Assets/ScriptableObjects/Quests/TestQuest 1.asset + artifactKey: Guid(ace7a566d7dd2b24b982fff4dc47ac55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/ScriptableObjects/Quests/TestQuest 1.asset using Guid(ace7a566d7dd2b24b982fff4dc47ac55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7b142bb78171233fb309ddd61484826') in 0.017492 seconds + Import took 0.033431 seconds . -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 133.196865 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02230d356c037bbc5e2804c2ffe0e483') in 0.009191 seconds - Import took 0.015283 seconds . + Time since last request: 27.577271 seconds. + path: Assets/ScriptableObjects/Quests/Events + artifactKey: Guid(4897ac160d0818040968c5ddeee84692) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/ScriptableObjects/Quests/Events using Guid(4897ac160d0818040968c5ddeee84692) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5cc6f6f6460bf533bc1a6bfb65d9eb1') in 0.003719 seconds + Import took 0.018908 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020265 seconds. +Registered in 0.022818 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.06 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.48 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.153 seconds +- Completed reload, in 1.296 seconds Domain Reload Profiling: - ReloadAssembly (1153ms) - BeginReloadAssembly (145ms) + ReloadAssembly (1298ms) + BeginReloadAssembly (139ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (953ms) - LoadAssemblies (136ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1104ms) + LoadAssemblies (157ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (360ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (328ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (444ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (325ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.17 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 128.7 MB. System memory in use after: 128.9 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3393. -Total: 3.381400 ms (FindLiveObjects: 0.314200 ms CreateObjectMapping: 0.089600 ms MarkObjects: 2.946100 ms DeleteObjects: 0.030100 ms) +Unloading 52 unused Assets to reduce memory usage. Loaded Objects now: 3391. +Total: 3.865700 ms (FindLiveObjects: 0.531900 ms CreateObjectMapping: 0.138000 ms MarkObjects: 3.146100 ms DeleteObjects: 0.048700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -270,123 +229,66 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 124.671278 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3b600780d09dfaa215e20e3b769908d') in 0.007497 seconds - Import took 0.067889 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.020673 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.03 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.115 seconds -Domain Reload Profiling: - ReloadAssembly (1116ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (923ms) - LoadAssemblies (134ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (344ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (326ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.7 MB. -System memory in use after: 129.0 MB. + Time since last request: 619.171731 seconds. + path: Assets/Scripts/Utils/GameEvent.cs + artifactKey: Guid(5b7b581234606f94185678a0d6e55e39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Utils/GameEvent.cs using Guid(5b7b581234606f94185678a0d6e55e39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '305f06ae33548c2c22b2bc231244f17d') in 0.011993 seconds + Import took 0.038446 seconds . -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3395. -Total: 3.346000 ms (FindLiveObjects: 0.386900 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.843800 ms DeleteObjects: 0.030000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 31.003021 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ef69aac192a25eb494a7db2b2c9a448') in 0.008755 seconds - Import took 0.027947 seconds . + Time since last request: 1.846205 seconds. + path: Assets/Scripts/Utils/GameEventListener.cs + artifactKey: Guid(d3d7897a18e9cb243b2329a7b2b1810c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Utils/GameEventListener.cs using Guid(d3d7897a18e9cb243b2329a7b2b1810c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e770195b03f26e739c84e54f588980c9') in 0.003712 seconds + Import took 0.020010 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.019479 seconds. +Registered in 0.020425 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.29 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.107 seconds +- Completed reload, in 1.179 seconds Domain Reload Profiling: - ReloadAssembly (1107ms) - BeginReloadAssembly (134ms) + ReloadAssembly (1179ms) + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (920ms) - LoadAssemblies (140ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (988ms) + LoadAssemblies (141ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (325ms) + SetupTypeCache (377ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (336ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (341ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (241ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (235ms) ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (3ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.7 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.8 MB. System memory in use after: 129.0 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3397. -Total: 3.264700 ms (FindLiveObjects: 0.285400 ms CreateObjectMapping: 0.076100 ms MarkObjects: 2.871100 ms DeleteObjects: 0.031000 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3396. +Total: 4.744900 ms (FindLiveObjects: 0.439000 ms CreateObjectMapping: 0.229200 ms MarkObjects: 4.019400 ms DeleteObjects: 0.055900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -400,58 +302,58 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 38.489959 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de46ce845cc129a98d16f5fdf2abfe3b') in 0.011807 seconds - Import took 0.501729 seconds . + Time since last request: 74.019883 seconds. + path: Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset + artifactKey: Guid(cc447db33075af3428239af9aa37c4b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/ScriptableObjects/Quests/Events/Quest1Complete.asset using Guid(cc447db33075af3428239af9aa37c4b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '115c64f4f9937501473c968d2c56d9f1') in 0.036586 seconds + Import took 0.059789 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.019874 seconds. +Registered in 0.021000 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.078 seconds +- Completed reload, in 1.249 seconds Domain Reload Profiling: - ReloadAssembly (1079ms) - BeginReloadAssembly (130ms) + ReloadAssembly (1249ms) + BeginReloadAssembly (132ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (898ms) - LoadAssemblies (135ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1053ms) + LoadAssemblies (214ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (331ms) + SetupTypeCache (349ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (317ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (362ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3399. -Total: 3.843300 ms (FindLiveObjects: 0.320300 ms CreateObjectMapping: 0.091900 ms MarkObjects: 3.383200 ms DeleteObjects: 0.046300 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3398. +Total: 3.427600 ms (FindLiveObjects: 0.339600 ms CreateObjectMapping: 0.080500 ms MarkObjects: 2.968600 ms DeleteObjects: 0.037500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -465,58 +367,58 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 23.889497 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b2a4e94021e5e6549bef7d4e8e8b3cf') in 0.007782 seconds - Import took 0.018993 seconds . + Time since last request: 120.454041 seconds. + path: Assets/Scripts/Utils/CooldownTimer.cs + artifactKey: Guid(9d64316a2b69d2442b0805081dc7e344) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Utils/CooldownTimer.cs using Guid(9d64316a2b69d2442b0805081dc7e344) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'acb86e4fe9de282da8ceda35016ceac5') in 0.007190 seconds + Import took 0.027339 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.025544 seconds. +Registered in 0.020973 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.02 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.122 seconds +- Completed reload, in 1.140 seconds Domain Reload Profiling: - ReloadAssembly (1122ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1140ms) + BeginReloadAssembly (136ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (928ms) - LoadAssemblies (142ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (948ms) + LoadAssemblies (141ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (324ms) + SetupTypeCache (335ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (336ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (350ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3401. -Total: 3.656500 ms (FindLiveObjects: 0.310400 ms CreateObjectMapping: 0.090300 ms MarkObjects: 3.217000 ms DeleteObjects: 0.037400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3400. +Total: 3.875100 ms (FindLiveObjects: 0.347600 ms CreateObjectMapping: 0.078100 ms MarkObjects: 3.399500 ms DeleteObjects: 0.048500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -529,91 +431,51 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 8.018985 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41d4e174eda937e2ac78d605172ed6e5') in 0.008052 seconds - Import took 0.018805 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.075110 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41d4e174eda937e2ac78d605172ed6e5') in 0.004068 seconds - Import took 0.009616 seconds . - -======================================================================== -Received Import Request. - Time since last request: 14.702150 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ac50b3686c6dc3d69830d05261b07a2') in 0.002705 seconds - Import took 0.018852 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.024547 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ac50b3686c6dc3d69830d05261b07a2') in 0.003037 seconds - Import took 0.008128 seconds . - -======================================================================== -Received Import Request. - Time since last request: 25.394727 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac0b90a3f9a9d9977e788aa59ba0a3fe') in 0.002817 seconds - Import took 0.015483 seconds . - -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020417 seconds. +Registered in 0.026076 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.18 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.101 seconds +- Completed reload, in 1.423 seconds Domain Reload Profiling: - ReloadAssembly (1101ms) - BeginReloadAssembly (139ms) + ReloadAssembly (1424ms) + BeginReloadAssembly (149ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (909ms) - LoadAssemblies (135ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1208ms) + LoadAssemblies (180ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (342ms) + SetupTypeCache (402ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (319ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (495ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (370ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3403. -Total: 3.837400 ms (FindLiveObjects: 0.302800 ms CreateObjectMapping: 0.079500 ms MarkObjects: 3.406100 ms DeleteObjects: 0.047400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3402. +Total: 3.498600 ms (FindLiveObjects: 0.378100 ms CreateObjectMapping: 0.079200 ms MarkObjects: 3.006400 ms DeleteObjects: 0.034000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -628,49 +490,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020837 seconds. +Registered in 0.020689 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.02 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.092 seconds +- Completed reload, in 1.105 seconds Domain Reload Profiling: - ReloadAssembly (1092ms) - BeginReloadAssembly (137ms) + ReloadAssembly (1105ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (903ms) - LoadAssemblies (131ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (913ms) + LoadAssemblies (147ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (333ms) + SetupTypeCache (324ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (321ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (330ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3405. -Total: 3.591400 ms (FindLiveObjects: 0.315300 ms CreateObjectMapping: 0.093200 ms MarkObjects: 3.154600 ms DeleteObjects: 0.027200 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3404. +Total: 3.312100 ms (FindLiveObjects: 0.319900 ms CreateObjectMapping: 0.080400 ms MarkObjects: 2.871100 ms DeleteObjects: 0.039600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -683,125 +545,36 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 80.018732 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96538ed427d61b0d4a2c7d6bf32b4e4a') in 0.008438 seconds - Import took 0.030170 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.021652 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96538ed427d61b0d4a2c7d6bf32b4e4a') in 0.003031 seconds - Import took 0.009749 seconds . - -======================================================================== -Received Import Request. - Time since last request: 22.484884 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c71b8a93e75fc60a6e1fe339b2b6283') in 0.004974 seconds - Import took 0.023238 seconds . - -======================================================================== -Received Import Request. - Time since last request: 51.436986 seconds. - path: Assets/Scripts/DialogueSystem/DialogueTrigger.cs - artifactKey: Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DialogueSystem/DialogueTrigger.cs using Guid(9e9bea4ace9af984682108d5dc3078d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '974d71f4b9f57c59c58bca955ec841a0') in 0.003027 seconds - Import took 0.016770 seconds . - -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020374 seconds. +Registered in 0.020412 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.10 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.109 seconds +- Completed reload, in 1.157 seconds Domain Reload Profiling: - ReloadAssembly (1109ms) - BeginReloadAssembly (123ms) + ReloadAssembly (1157ms) + BeginReloadAssembly (135ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (935ms) - LoadAssemblies (131ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (968ms) + LoadAssemblies (147ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (317ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (320ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (358ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3407. -Total: 3.802100 ms (FindLiveObjects: 0.335600 ms CreateObjectMapping: 0.089800 ms MarkObjects: 3.331300 ms DeleteObjects: 0.043700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021223 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.110 seconds -Domain Reload Profiling: - ReloadAssembly (1110ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (915ms) - LoadAssemblies (134ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (333ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (326ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (233ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (248ms) ProcessInitializeOnLoadMethodAttributes (8ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) @@ -809,1028 +582,14 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 128.8 MB. -System memory in use after: 129.0 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3409. -Total: 3.919600 ms (FindLiveObjects: 0.458800 ms CreateObjectMapping: 0.083800 ms MarkObjects: 3.326600 ms DeleteObjects: 0.049200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom: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: 256.122250 seconds. - path: Assets/Prefabs/Environment/Hut.prefab - artifactKey: Guid(d6a7c82df26ada942b8427066aab0b47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Environment/Hut.prefab using Guid(d6a7c82df26ada942b8427066aab0b47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3be767f51adac9be03951494c29ed53') in 0.265444 seconds - Import took 0.293121 seconds . - -======================================================================== -Received Import Request. - Time since last request: 43.918230 seconds. - path: Assets/Tiles/DAE format/units/unit_house.dae - artifactKey: Guid(c3bf3b42d49717d43aaa9cd6765402f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_house.dae using Guid(c3bf3b42d49717d43aaa9cd6765402f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a6706b40e14fdfa01d3372e8d0d1cb9') in 0.232392 seconds - Import took 0.284390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000728 seconds. - path: Assets/Tiles/DAE format/units/unit_tower.dae - artifactKey: Guid(7a36240aebf2cf64fb2fc29285545dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_tower.dae using Guid(7a36240aebf2cf64fb2fc29285545dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e65b4b6726a5fd943ecdc8d2cd6272f5') in 0.030861 seconds - Import took 0.061201 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000282 seconds. - path: Assets/Tiles/DAE format/units/unit_house.dae - artifactKey: Guid(c3bf3b42d49717d43aaa9cd6765402f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_house.dae using Guid(c3bf3b42d49717d43aaa9cd6765402f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a6706b40e14fdfa01d3372e8d0d1cb9') in 0.026247 seconds - Import took 0.030892 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000209 seconds. - path: Assets/Tiles/DAE format/units/unit_tower.dae - artifactKey: Guid(7a36240aebf2cf64fb2fc29285545dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_tower.dae using Guid(7a36240aebf2cf64fb2fc29285545dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e65b4b6726a5fd943ecdc8d2cd6272f5') in 0.029776 seconds - Import took 0.034469 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.888519 seconds. - path: Assets/Tiles/DAE format/buildings/building_market.dae - artifactKey: Guid(2e89d21c5105e1f49b78377138adf850) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/buildings/building_market.dae using Guid(2e89d21c5105e1f49b78377138adf850) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94b7ff8b5afe469594946e971327d5f2') in 0.089753 seconds - Import took 0.108990 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.549003 seconds. - path: Assets/Tiles/DAE format/units/unit_boat.dae - artifactKey: Guid(4420854e549419b49b29a0936a37423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_boat.dae using Guid(4420854e549419b49b29a0936a37423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a29baac2520e93dc66a0d8f524c5986') in 0.061977 seconds - Import took 0.082411 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000307 seconds. - path: Assets/Tiles/DAE format/paths/path_corner.dae - artifactKey: Guid(901b8ad3d791fee4198e74eecf3fcd31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/paths/path_corner.dae using Guid(901b8ad3d791fee4198e74eecf3fcd31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a02a0a676b36a252ec44ffea5c0407a9') in 0.028163 seconds - Import took 0.071403 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000295 seconds. - path: Assets/Tiles/DAE format/units/unit_boat.dae - artifactKey: Guid(4420854e549419b49b29a0936a37423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_boat.dae using Guid(4420854e549419b49b29a0936a37423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a29baac2520e93dc66a0d8f524c5986') in 0.055144 seconds - Import took 0.059901 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000282 seconds. - path: Assets/Tiles/DAE format/paths/path_corner.dae - artifactKey: Guid(901b8ad3d791fee4198e74eecf3fcd31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/paths/path_corner.dae using Guid(901b8ad3d791fee4198e74eecf3fcd31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a02a0a676b36a252ec44ffea5c0407a9') in 0.027106 seconds - Import took 0.032074 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.970441 seconds. - path: Assets/Tiles/DAE format/paths/path_start.dae - artifactKey: Guid(fba1133678c3c6c41901936ad10ed6cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/paths/path_start.dae using Guid(fba1133678c3c6c41901936ad10ed6cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cfc6955c88cdf8bc25a998ef9e9afbce') in 0.023698 seconds - Import took 0.039508 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000305 seconds. - path: Assets/Tiles/DAE format/paths/path_straight.dae - artifactKey: Guid(9fdec71292202c8409792f393ad9d400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/paths/path_straight.dae using Guid(9fdec71292202c8409792f393ad9d400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56c251eac06888d994c6bb2fa529f1d2') in 0.024574 seconds - Import took 0.048334 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000257 seconds. - path: Assets/Tiles/DAE format/rivers/river_cornerSharp.dae - artifactKey: Guid(175773b3675d38346be9a394d7620d12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/rivers/river_cornerSharp.dae using Guid(175773b3675d38346be9a394d7620d12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4389d9a4c5f28dfa7fddd3ce0edecb88') in 0.031694 seconds - Import took 0.071309 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.603660 seconds. - path: Assets/Tiles/DAE format/sand_rocks.dae - artifactKey: Guid(07e0d9c4f98662e4b9dbeb3adc7912e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/sand_rocks.dae using Guid(07e0d9c4f98662e4b9dbeb3adc7912e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dce6e3b1cc176f80960b99778fff76ce') in 0.059316 seconds - Import took 0.087085 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000293 seconds. - path: Assets/Tiles/DAE format/stone_hill.dae - artifactKey: Guid(c6aa78fe9b10e364ab32a7058edaaf2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/stone_hill.dae using Guid(c6aa78fe9b10e364ab32a7058edaaf2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a614367eaa18504a2a82a1bcd98a85b') in 0.035833 seconds - Import took 0.046767 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000269 seconds. - path: Assets/Tiles/DAE format/stone_mountain.dae - artifactKey: Guid(b101d433ecd9aea4a889d2fd1d06518d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/stone_mountain.dae using Guid(b101d433ecd9aea4a889d2fd1d06518d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31de1269e7518332fb989aa905aeee36') in 0.045421 seconds - Import took 0.050244 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000255 seconds. - path: Assets/Tiles/DAE format/stone_rocks.dae - artifactKey: Guid(0301bb9a16813194781d0f688f376a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/stone_rocks.dae using Guid(0301bb9a16813194781d0f688f376a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ecf36ebbaea8a137e782d01c8ca5562') in 0.067461 seconds - Import took 0.093281 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.676976 seconds. - path: Assets/Tiles/DAE format/paths/path_intersectionB.dae - artifactKey: Guid(192e5dd8b21660b4dae9d603d985f175) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/paths/path_intersectionB.dae using Guid(192e5dd8b21660b4dae9d603d985f175) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abaa24d32471f24525d768df57f9a44a') in 0.021431 seconds - Import took 0.034834 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.330056 seconds. - path: Assets/Tiles/DAE format/units/unit_tree.dae - artifactKey: Guid(debebb2562ad0f04685577b2d52d38ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_tree.dae using Guid(debebb2562ad0f04685577b2d52d38ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9384f555d78cb091445b35f7ea98c3e0') in 0.021971 seconds - Import took 0.034683 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.003547 seconds. - path: Assets/Tiles/DAE format/units/unit_tree.dae - artifactKey: Guid(debebb2562ad0f04685577b2d52d38ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Tiles/DAE format/units/unit_tree.dae using Guid(debebb2562ad0f04685577b2d52d38ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9384f555d78cb091445b35f7ea98c3e0') in 0.021601 seconds - Import took 0.026699 seconds . - -======================================================================== -Received Import Request. - Time since last request: 609.878441 seconds. - path: Assets/ScriptableObjects/Dialogues - artifactKey: Guid(4a817009419f6b94abd6f73cae035901) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/ScriptableObjects/Dialogues using Guid(4a817009419f6b94abd6f73cae035901) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4cf2bfb31bb66070e56dd32b99440de') in 0.002838 seconds - Import took 0.009662 seconds . - -======================================================================== -Received Import Request. - Time since last request: 15.970765 seconds. - path: Assets/ScriptableObjects/Dialogues/PouchDialogue.asset - artifactKey: Guid(589ee4d080ade8b4e8fb3220e8b7de1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/ScriptableObjects/Dialogues/PouchDialogue.asset using Guid(589ee4d080ade8b4e8fb3220e8b7de1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '170ce0cd8cb3790f78c442e0378ce172') in 0.005659 seconds - Import took 0.022342 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.020842 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.129 seconds -Domain Reload Profiling: - ReloadAssembly (1130ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (930ms) - LoadAssemblies (138ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (328ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (322ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3492. -Total: 3.615600 ms (FindLiveObjects: 0.297600 ms CreateObjectMapping: 0.079200 ms MarkObjects: 3.211400 ms DeleteObjects: 0.026600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.022632 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.05 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.099 seconds -Domain Reload Profiling: - ReloadAssembly (1099ms) - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (916ms) - LoadAssemblies (141ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (314ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (319ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3494. -Total: 3.803500 ms (FindLiveObjects: 0.324500 ms CreateObjectMapping: 0.079100 ms MarkObjects: 3.369300 ms DeleteObjects: 0.029600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.020722 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.126 seconds -Domain Reload Profiling: - ReloadAssembly (1127ms) - BeginReloadAssembly (135ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (941ms) - LoadAssemblies (133ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (320ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (332ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3496. -Total: 3.764100 ms (FindLiveObjects: 0.393700 ms CreateObjectMapping: 0.078700 ms MarkObjects: 3.249900 ms DeleteObjects: 0.040900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.019595 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.243 seconds -Domain Reload Profiling: - ReloadAssembly (1243ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1052ms) - LoadAssemblies (135ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (329ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (408ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (48ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.03 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3498. -Total: 4.085500 ms (FindLiveObjects: 0.357800 ms CreateObjectMapping: 0.081500 ms MarkObjects: 3.599300 ms DeleteObjects: 0.045700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.019852 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.182 seconds -Domain Reload Profiling: - ReloadAssembly (1183ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (971ms) - LoadAssemblies (155ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (330ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (341ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3500. -Total: 3.387600 ms (FindLiveObjects: 0.298100 ms CreateObjectMapping: 0.079900 ms MarkObjects: 2.978600 ms DeleteObjects: 0.029900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom: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: 254.818145 seconds. - path: Assets/ScriptableObjects/Dialogues/PouchDialogue.asset - artifactKey: Guid(589ee4d080ade8b4e8fb3220e8b7de1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/ScriptableObjects/Dialogues/PouchDialogue.asset using Guid(589ee4d080ade8b4e8fb3220e8b7de1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '808d00b5eb0ee42e0a489a7584ce9523') in 0.055358 seconds - Import took 0.066737 seconds . - -======================================================================== -Received Import Request. - Time since last request: 27.550526 seconds. - path: Assets/Scripts/Quests/QuestManager.cs - artifactKey: Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Quests/QuestManager.cs using Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f400233aaf68bf9a59de3d69b634956d') in 0.002814 seconds - Import took 0.020556 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.008378 seconds. - path: Assets/Scripts/Quests/QuestManager.cs - artifactKey: Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Quests/QuestManager.cs using Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f400233aaf68bf9a59de3d69b634956d') in 0.002629 seconds - Import took 0.009298 seconds . - -======================================================================== -Received Import Request. - Time since last request: 59.970176 seconds. - path: Assets/Scripts/Quests/QuestManager.cs - artifactKey: Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Quests/QuestManager.cs using Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5276580e5e1683f1eb7cfa10035e5c4f') in 0.002649 seconds - Import took 0.023306 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.003115 seconds. - path: Assets/Scripts/Quests/QuestManager.cs - artifactKey: Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Quests/QuestManager.cs using Guid(ac7723b05fe15ce45860d7f1a6e57ab8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5276580e5e1683f1eb7cfa10035e5c4f') in 0.003124 seconds - Import took 0.007551 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021661 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.06 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.160 seconds -Domain Reload Profiling: - ReloadAssembly (1160ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (968ms) - LoadAssemblies (156ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (340ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (325ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3502. -Total: 3.663300 ms (FindLiveObjects: 0.334800 ms CreateObjectMapping: 0.077600 ms MarkObjects: 3.221900 ms DeleteObjects: 0.027600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.023764 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.204 seconds -Domain Reload Profiling: - ReloadAssembly (1205ms) - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1026ms) - LoadAssemblies (134ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (338ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (295ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.7 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3504. -Total: 4.539700 ms (FindLiveObjects: 0.372900 ms CreateObjectMapping: 0.082200 ms MarkObjects: 4.050000 ms DeleteObjects: 0.033200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.022513 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.145 seconds -Domain Reload Profiling: - ReloadAssembly (1146ms) - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (962ms) - LoadAssemblies (173ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (319ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (324ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3506. -Total: 4.111700 ms (FindLiveObjects: 0.369000 ms CreateObjectMapping: 0.082100 ms MarkObjects: 3.615400 ms DeleteObjects: 0.043400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021318 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.07 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.274 seconds -Domain Reload Profiling: - ReloadAssembly (1274ms) - BeginReloadAssembly (174ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (80ms) - EndReloadAssembly (1046ms) - LoadAssemblies (144ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (332ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (379ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (278ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.5 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3508. -Total: 4.046700 ms (FindLiveObjects: 0.335800 ms CreateObjectMapping: 0.078600 ms MarkObjects: 3.587900 ms DeleteObjects: 0.042700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.020828 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.145 seconds -Domain Reload Profiling: - ReloadAssembly (1145ms) - BeginReloadAssembly (155ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (939ms) - LoadAssemblies (135ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (317ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (331ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (28ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3510. -Total: 3.355300 ms (FindLiveObjects: 0.314600 ms CreateObjectMapping: 0.078700 ms MarkObjects: 2.934400 ms DeleteObjects: 0.026300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021886 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.265 seconds -Domain Reload Profiling: - ReloadAssembly (1266ms) - BeginReloadAssembly (155ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1024ms) - LoadAssemblies (157ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (354ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (369ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.02 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3512. -Total: 3.583300 ms (FindLiveObjects: 0.444500 ms CreateObjectMapping: 0.078600 ms MarkObjects: 3.031900 ms DeleteObjects: 0.027100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.019260 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.124 seconds -Domain Reload Profiling: - ReloadAssembly (1125ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (935ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (319ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (328ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3514. -Total: 4.123600 ms (FindLiveObjects: 0.366000 ms CreateObjectMapping: 0.083100 ms MarkObjects: 3.633300 ms DeleteObjects: 0.039300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021967 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.362 seconds -Domain Reload Profiling: - ReloadAssembly (1363ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (1106ms) - LoadAssemblies (170ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (371ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (394ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (296ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. - -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3516. -Total: 3.967400 ms (FindLiveObjects: 0.393500 ms CreateObjectMapping: 0.079800 ms MarkObjects: 3.453300 ms DeleteObjects: 0.039400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.021284 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.164 seconds -Domain Reload Profiling: - ReloadAssembly (1164ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (967ms) - LoadAssemblies (140ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (350ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (334ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.14 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3518. -Total: 3.773900 ms (FindLiveObjects: 0.330900 ms CreateObjectMapping: 0.080500 ms MarkObjects: 3.319700 ms DeleteObjects: 0.041400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3406. +Total: 4.095800 ms (FindLiveObjects: 0.404400 ms CreateObjectMapping: 0.199300 ms MarkObjects: 3.449700 ms DeleteObjects: 0.040800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1845,49 +604,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.019711 seconds. +Registered in 0.020671 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.164 seconds +- Completed reload, in 1.143 seconds Domain Reload Profiling: - ReloadAssembly (1164ms) - BeginReloadAssembly (133ms) + ReloadAssembly (1144ms) + BeginReloadAssembly (151ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (10ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (964ms) - LoadAssemblies (135ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (929ms) + LoadAssemblies (150ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (318ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (364ms) + SetupTypeCache (331ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (333ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3520. -Total: 3.753800 ms (FindLiveObjects: 0.339600 ms CreateObjectMapping: 0.084200 ms MarkObjects: 3.288400 ms DeleteObjects: 0.040400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3408. +Total: 3.840700 ms (FindLiveObjects: 0.475600 ms CreateObjectMapping: 0.082900 ms MarkObjects: 3.238500 ms DeleteObjects: 0.042100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1902,49 +661,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020075 seconds. +Registered in 0.020413 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.119 seconds +- Completed reload, in 1.154 seconds Domain Reload Profiling: - ReloadAssembly (1120ms) - BeginReloadAssembly (131ms) + ReloadAssembly (1154ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (937ms) - LoadAssemblies (138ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (964ms) + LoadAssemblies (141ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (316ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (326ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (368ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3522. -Total: 3.673600 ms (FindLiveObjects: 0.329200 ms CreateObjectMapping: 0.078800 ms MarkObjects: 3.225000 ms DeleteObjects: 0.039400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3410. +Total: 3.717300 ms (FindLiveObjects: 0.383100 ms CreateObjectMapping: 0.078400 ms MarkObjects: 3.196000 ms DeleteObjects: 0.058600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1959,49 +718,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.022010 seconds. +Registered in 0.020508 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.290 seconds +- Completed reload, in 1.104 seconds Domain Reload Profiling: - ReloadAssembly (1290ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1104ms) + BeginReloadAssembly (129ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1042ms) - LoadAssemblies (148ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (922ms) + LoadAssemblies (134ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (356ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (377ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (337ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (275ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3524. -Total: 4.277900 ms (FindLiveObjects: 0.362000 ms CreateObjectMapping: 0.129900 ms MarkObjects: 3.747000 ms DeleteObjects: 0.037700 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3412. +Total: 3.299900 ms (FindLiveObjects: 0.340000 ms CreateObjectMapping: 0.079400 ms MarkObjects: 2.852200 ms DeleteObjects: 0.027300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2016,49 +775,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.022568 seconds. +Registered in 0.020101 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.109 seconds +- Completed reload, in 1.336 seconds Domain Reload Profiling: - ReloadAssembly (1110ms) - BeginReloadAssembly (143ms) + ReloadAssembly (1336ms) + BeginReloadAssembly (196ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (10ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (915ms) - LoadAssemblies (132ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1081ms) + LoadAssemblies (178ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (326ms) + SetupTypeCache (435ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (322ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (366ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.1 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3526. -Total: 3.893500 ms (FindLiveObjects: 0.299600 ms CreateObjectMapping: 0.077700 ms MarkObjects: 3.468900 ms DeleteObjects: 0.046100 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3414. +Total: 3.578900 ms (FindLiveObjects: 0.359000 ms CreateObjectMapping: 0.077200 ms MarkObjects: 3.098400 ms DeleteObjects: 0.043100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2073,49 +832,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.019437 seconds. +Registered in 0.024044 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.92 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.140 seconds +- Completed reload, in 1.267 seconds Domain Reload Profiling: - ReloadAssembly (1140ms) - BeginReloadAssembly (130ms) + ReloadAssembly (1268ms) + BeginReloadAssembly (224ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (959ms) - LoadAssemblies (130ms) + CreateAndSetChildDomain (111ms) + EndReloadAssembly (990ms) + LoadAssemblies (160ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (329ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (336ms) + SetupTypeCache (356ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (359ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (12ms) AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) + EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3528. -Total: 3.488700 ms (FindLiveObjects: 0.317000 ms CreateObjectMapping: 0.078800 ms MarkObjects: 3.063200 ms DeleteObjects: 0.028500 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3416. +Total: 3.285300 ms (FindLiveObjects: 0.343200 ms CreateObjectMapping: 0.078100 ms MarkObjects: 2.834600 ms DeleteObjects: 0.028100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2130,49 +889,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.019932 seconds. +Registered in 0.020989 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.160 seconds +- Completed reload, in 1.292 seconds Domain Reload Profiling: - ReloadAssembly (1160ms) - BeginReloadAssembly (134ms) + ReloadAssembly (1293ms) + BeginReloadAssembly (225ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (975ms) - LoadAssemblies (132ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1012ms) + LoadAssemblies (230ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (346ms) + SetupTypeCache (341ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (329ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (407ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (298ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3530. -Total: 3.601500 ms (FindLiveObjects: 0.307600 ms CreateObjectMapping: 0.078200 ms MarkObjects: 3.174100 ms DeleteObjects: 0.040300 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3418. +Total: 3.462000 ms (FindLiveObjects: 0.352800 ms CreateObjectMapping: 0.076500 ms MarkObjects: 2.998500 ms DeleteObjects: 0.033100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2185,51 +944,59 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 720.187294 seconds. + path: Assets/ScriptableObjects/Quests/TestQuest.asset + artifactKey: Guid(30af736d98a0df24588ba0b58455e6ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/ScriptableObjects/Quests/TestQuest.asset using Guid(30af736d98a0df24588ba0b58455e6ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08c6ad82fef437584c7e3fa7acc44fe1') in 0.110081 seconds + Import took 0.115660 seconds . + +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020966 seconds. +Registered in 0.021133 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.28 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.109 seconds +- Completed reload, in 1.153 seconds Domain Reload Profiling: - ReloadAssembly (1110ms) - BeginReloadAssembly (127ms) + ReloadAssembly (1153ms) + BeginReloadAssembly (143ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (931ms) - LoadAssemblies (138ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (956ms) + LoadAssemblies (165ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (325ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (323ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (339ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.04 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.8 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3532. -Total: 3.921300 ms (FindLiveObjects: 0.371000 ms CreateObjectMapping: 0.084700 ms MarkObjects: 3.423500 ms DeleteObjects: 0.040400 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3420. +Total: 3.499100 ms (FindLiveObjects: 0.319000 ms CreateObjectMapping: 0.088500 ms MarkObjects: 3.058500 ms DeleteObjects: 0.032200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2244,49 +1011,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.021022 seconds. +Registered in 0.021290 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.03 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.203 seconds +- Completed reload, in 1.245 seconds Domain Reload Profiling: - ReloadAssembly (1203ms) + ReloadAssembly (1246ms) BeginReloadAssembly (152ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (997ms) - LoadAssemblies (146ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1026ms) + LoadAssemblies (162ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (346ms) + SetupTypeCache (354ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (378ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (11ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.92 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3534. -Total: 4.124000 ms (FindLiveObjects: 0.295900 ms CreateObjectMapping: 0.077900 ms MarkObjects: 3.706700 ms DeleteObjects: 0.041900 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3422. +Total: 3.374500 ms (FindLiveObjects: 0.343800 ms CreateObjectMapping: 0.076000 ms MarkObjects: 2.924400 ms DeleteObjects: 0.029000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2301,49 +1068,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020775 seconds. +Registered in 0.020250 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.92 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.157 seconds +- Completed reload, in 1.129 seconds Domain Reload Profiling: - ReloadAssembly (1158ms) - BeginReloadAssembly (140ms) + ReloadAssembly (1129ms) + BeginReloadAssembly (145ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (961ms) - LoadAssemblies (137ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (929ms) + LoadAssemblies (146ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (343ms) + SetupTypeCache (338ms) ReleaseScriptCaches (2ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (339ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (329ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (247ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (229ms) ProcessInitializeOnLoadMethodAttributes (8ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 128.9 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3536. -Total: 3.799200 ms (FindLiveObjects: 0.299300 ms CreateObjectMapping: 0.078500 ms MarkObjects: 3.378300 ms DeleteObjects: 0.042000 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3424. +Total: 3.827100 ms (FindLiveObjects: 0.352400 ms CreateObjectMapping: 0.078100 ms MarkObjects: 3.350500 ms DeleteObjects: 0.044800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2358,49 +1125,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.021550 seconds. +Registered in 0.022543 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.133 seconds +- Completed reload, in 1.115 seconds Domain Reload Profiling: - ReloadAssembly (1134ms) - BeginReloadAssembly (139ms) + ReloadAssembly (1115ms) + BeginReloadAssembly (127ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (944ms) - LoadAssemblies (136ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (935ms) + LoadAssemblies (142ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (328ms) - ReleaseScriptCaches (2ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (1ms) RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (332ms) + SetupLoadedEditorAssemblies (345ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (8ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 129.0 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3538. -Total: 3.758400 ms (FindLiveObjects: 0.342600 ms CreateObjectMapping: 0.086700 ms MarkObjects: 3.287200 ms DeleteObjects: 0.040500 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3426. +Total: 3.915700 ms (FindLiveObjects: 0.363100 ms CreateObjectMapping: 0.078600 ms MarkObjects: 3.431600 ms DeleteObjects: 0.040600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2415,49 +1182,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.020167 seconds. +Registered in 0.021973 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.176 seconds +- Completed reload, in 1.168 seconds Domain Reload Profiling: - ReloadAssembly (1177ms) - BeginReloadAssembly (125ms) + ReloadAssembly (1168ms) + BeginReloadAssembly (164ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (9ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (997ms) - LoadAssemblies (135ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (950ms) + LoadAssemblies (151ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (382ms) + SetupTypeCache (333ms) ReleaseScriptCaches (2ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (335ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (349ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 129.0 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3540. -Total: 3.410000 ms (FindLiveObjects: 0.310800 ms CreateObjectMapping: 0.078500 ms MarkObjects: 2.993000 ms DeleteObjects: 0.026800 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3428. +Total: 4.683100 ms (FindLiveObjects: 0.455100 ms CreateObjectMapping: 0.137600 ms MarkObjects: 4.047000 ms DeleteObjects: 0.041100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2472,49 +1239,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.027621 seconds. +Registered in 0.021228 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.598 seconds +- Completed reload, in 1.132 seconds Domain Reload Profiling: - ReloadAssembly (1598ms) - BeginReloadAssembly (181ms) + ReloadAssembly (1132ms) + BeginReloadAssembly (142ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1338ms) - LoadAssemblies (194ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (936ms) + LoadAssemblies (140ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (550ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (430ms) + SetupTypeCache (337ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (343ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (320ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.6 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 129.0 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3542. -Total: 4.066800 ms (FindLiveObjects: 0.467900 ms CreateObjectMapping: 0.083100 ms MarkObjects: 3.477900 ms DeleteObjects: 0.035500 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3430. +Total: 3.582300 ms (FindLiveObjects: 0.336100 ms CreateObjectMapping: 0.076400 ms MarkObjects: 3.138700 ms DeleteObjects: 0.029800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2529,49 +1296,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.032232 seconds. +Registered in 0.020767 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.140 seconds +- Completed reload, in 1.205 seconds Domain Reload Profiling: - ReloadAssembly (1140ms) - BeginReloadAssembly (130ms) + ReloadAssembly (1205ms) + BeginReloadAssembly (129ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (957ms) - LoadAssemblies (160ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1011ms) + LoadAssemblies (147ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (327ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (327ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (355ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (238ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (239ms) ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (2ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 2 plugins. +Refreshing native plugins compatible for Editor in 1.02 ms, found 2 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2858 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 134.7 MB. -System memory in use after: 134.9 MB. +Unloading 2861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 129.0 MB. +System memory in use after: 129.2 MB. -Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3544. -Total: 4.001800 ms (FindLiveObjects: 0.314100 ms CreateObjectMapping: 0.091300 ms MarkObjects: 3.551500 ms DeleteObjects: 0.043500 ms) +Unloading 49 unused Assets to reduce memory usage. Loaded Objects now: 3432. +Total: 3.311700 ms (FindLiveObjects: 0.352800 ms CreateObjectMapping: 0.078800 ms MarkObjects: 2.851300 ms DeleteObjects: 0.027700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2583,4 +1350,11 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -AssetImportWorkerClient::OnTransportError - code=2 error=End of file +======================================================================== +Received Import Request. + Time since last request: 356.634513 seconds. + path: Assets/ScriptableObjects/Quests/Events/Quest1Start.asset + artifactKey: Guid(f42b91b5206bc8d42ad7eac685fc1b56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/ScriptableObjects/Quests/Events/Quest1Start.asset using Guid(f42b91b5206bc8d42ad7eac685fc1b56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33aaf6237c7ed07a300c6611e1212e88') in 0.066610 seconds + Import took 0.072288 seconds . + diff --git a/CardanoSharp Unity Project/Logs/shadercompiler-AssetImportWorker0.log b/CardanoSharp Unity Project/Logs/shadercompiler-AssetImportWorker0.log index 99edc6a..617a512 100644 --- a/CardanoSharp Unity Project/Logs/shadercompiler-AssetImportWorker0.log +++ b/CardanoSharp Unity Project/Logs/shadercompiler-AssetImportWorker0.log @@ -1,6 +1,3 @@ Base path: 'D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data', plugins path 'D:/Program Files/Unity/Hub/Editor/2020.3.16f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) - -Quitting shader compiler process From b10e587a43e2bb8ed774fcd00791309c07e3beb0 Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Mon, 17 Jan 2022 16:02:47 -0500 Subject: [PATCH 6/7] minting is working (aka quest 3 complete) --- .../Assets/Scripts/CardanoManager.cs | 129 +++++++++++------- .../Assets/Scripts/Menu/MenuManager.cs | 2 +- .../Assets/Scripts/Quests/Quest.cs | 7 +- .../Assets/Scripts/Quests/QuestEvents.cs | 2 +- 4 files changed, 86 insertions(+), 54 deletions(-) diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index 2b67d40..9422d4c 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -15,7 +15,6 @@ using System.Threading.Tasks; using UnityEngine; using CardanoSharp.Wallet.Models.Derivations; -using System.Text.Json; using CardanoSharp.Wallet.Models.Transactions; using CardanoSharp.Wallet.TransactionBuilding; using CardanoSharp.Wallet.Utilities; @@ -23,6 +22,10 @@ using System; using CardanoSharp.Wallet.Extensions.Models.Transactions; using System.IO; +using System.Net.Http; +using System.Net.Http.Headers; +using Newtonsoft.Json; +using Utils; public class CardanoManager : MonoBehaviour { @@ -85,11 +88,11 @@ public void CreatePlayerWallet(string walletName) NetworkType.Testnet, AddressType.Base); - _dataManager.SaveData(walletName, JsonSerializer.Serialize(baseAddr)); + _dataManager.SaveData(walletName, baseAddr.ToString()); } - public void CreateDeveloperWallet(string walletName) + public Mnemonic CreateDeveloperWallet(string identifier) { - walletName = getWalletDataName(walletName); + var walletName = getWalletDataName(identifier); if (_dataManager.Exists(walletName)) _dataManager.DeleteData(walletName); @@ -104,7 +107,11 @@ public void CreateDeveloperWallet(string walletName) //DEMO ONLY //Never save private key unencrypted - _dataManager.SaveData(walletName, JsonSerializer.Serialize((accountNode.PrivateKey, accountNode.PublicKey))); + var walletData = JsonConvert.SerializeObject((accountNode.PrivateKey, accountNode.PublicKey)); + _dataManager.SaveData(walletName, walletData); + CreateMintingKeyPair(identifier); + + return mnemonic; } public Mnemonic GenerateMnemonic(int size = 24, WordLists wordLists = WordLists.English) @@ -138,12 +145,12 @@ public KeyPair GenerateKeyPair() #region Encryption public string EncryptKeys(PrivateKey accountPrivateKey, PublicKey accountPublicKey) { - return JsonSerializer.Serialize((accountPrivateKey.Encrypt("spending_password"), accountPublicKey)); + return JsonConvert.SerializeObject((accountPrivateKey.Encrypt("spending_password"), accountPublicKey)); } public (PrivateKey, PublicKey) DecryptKeys(string accountNode) { - var load = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(accountNode); + var load = JsonConvert.DeserializeObject<(PrivateKey, PublicKey)>(accountNode); return (load.Item1.Decrypt("spending_password"), load.Item2); } #endregion @@ -174,77 +181,85 @@ public Address GetPaymentAddress(string words) #endregion #region Minting - public void CreateNativeScript(string name, uint? after = null, uint? before = null) + public void CreateMintingKeyPair(string name, uint? after = null, uint? before = null) { - var keypair = KeyPair.GenerateKeyPair(); - - var scriptBuilder = ScriptAllBuilder.Create; - var policyKeyHash = HashUtility.Blake2b244(keypair.PublicKey.Key); - scriptBuilder.SetScript(NativeScriptBuilder.Create.SetKeyHash(policyKeyHash)); - - _dataManager.SaveData(getPolicyScriptDataName(name), JsonSerializer.Serialize(scriptBuilder)); + if (_dataManager.Exists(getPolicyDataName(name))) + _dataManager.DeleteData(getPolicyDataName(name)); + + var keypair = GenerateKeyPair(); - var nativeScript = scriptBuilder.Build(); - var policyId = nativeScript.GetPolicyId(); - - _dataManager.SaveData(getPolicyDataName(name), JsonSerializer.Serialize((keypair.PrivateKey, keypair.PublicKey))); - _dataManager.SaveData(getPolicyIdDataName(name), policyId.ToStringHex()); + _dataManager.SaveData(getPolicyDataName(name), JsonConvert.SerializeObject((keypair.PrivateKey, keypair.PublicKey))); } #endregion #region Transactions - public async void MintNFT(string fromWalletName, string toWalletName, string tokenName, uint quantity, object metadata) + public void MintNFT(string fromWalletName, string toWalletName, string tokenName, uint quantity, object metadata) { //DEMO //we know "from" is game dev wallet // "to" is player address - var fromPolicyIdString = getPolicyIdDataName(fromWalletName); var fromPolicyKeysSerialized = getPolicyDataName(fromWalletName); - var fromPolicyScriptSerialized = getPolicyScriptDataName(fromWalletName); fromWalletName = getWalletDataName(fromWalletName); toWalletName = getWalletDataName(toWalletName); - var fromPolicyId = _dataManager.GetData(fromPolicyIdString).HexToByteArray(); - var fromPolicyScript = JsonSerializer.Deserialize(_dataManager.GetData(fromPolicyScriptSerialized)); - var fromPolicyKeys = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(_dataManager.GetData(fromPolicyKeysSerialized)); - var fromWallet = JsonSerializer.Deserialize<(PrivateKey, PublicKey)>(_dataManager.GetData(fromWalletName)); - var toAddress = JsonSerializer.Deserialize
(_dataManager.GetData(toWalletName)); + var fromPolicyKeys = JsonConvert.DeserializeObject<(PrivateKey, PublicKey)>(_dataManager.GetData(fromPolicyKeysSerialized)); + var fromWallet = JsonConvert.DeserializeObject<(PrivateKey, PublicKey)>(_dataManager.GetData(fromWalletName)); + var toAddress = new Address(_dataManager.GetData(toWalletName)); - var fromAccount = new AccountNodeDerivation(fromWallet.Item1, 0); - var paymentIx = fromAccount + //minting native script construction + var keypair = new KeyPair(fromPolicyKeys.Item1, fromPolicyKeys.Item2); + var scriptBuilder = ScriptAllBuilder.Create; + var policyKeyHash = HashUtility.Blake2b244(keypair.PublicKey.Key); + scriptBuilder.SetScript(NativeScriptBuilder.Create.SetKeyHash(policyKeyHash)); + var nativeScript = scriptBuilder.Build(); + var policyId = nativeScript.GetPolicyId(); + + //get the developers account node + var accountPrivateKey = fromWallet.Item1; + + var paymentIx = accountPrivateKey .Derive(RoleType.ExternalChain) .Derive(0); paymentIx.SetPublicKey(); - var stakingIx = fromAccount + var stakingIx = accountPrivateKey .Derive(RoleType.Staking) .Derive(0); - paymentIx.SetPublicKey(); + stakingIx.SetPublicKey(); + //generate the address we sent ada to var baseAddr = new AddressService() .GetAddress(paymentIx.PublicKey, stakingIx.PublicKey, NetworkType.Testnet, AddressType.Base); - var utxos = await GetUtxos(baseAddr.ToString()); - var feeParams = await GetFeeParameters(); - var latestSlot = await GetLatestSlot(); + //get utxos of address + var utxos = AsyncUtil.RunSync(() => GetUtxos(baseAddr.ToString())); + + //get network parameters + var feeParams = AsyncUtil.RunSync<(long, long)>(() => GetFeeParameters()); + var latestSlot = AsyncUtil.RunSync(() => GetLatestSlot()); + //start a tx body var transactionBody = TransactionBodyBuilder.Create; + //add utxo to body as inputs foreach (var utxo in utxos) { transactionBody.AddInput(utxo.TxHash.HexToByteArray(), (uint)utxo.TxIndex); } + //calculate values long totalBalance = utxos.SelectMany(m => m.Amount).Where(m => m.Unit == "lovelace").Sum(m => long.Parse(m.Quantity)); ulong sendingAdaQuantity = 2000000; ulong totalChange = (ulong)totalBalance - sendingAdaQuantity; + //add minting asset var mintAsset = TokenBundleBuilder.Create - .AddToken(fromPolicyId, tokenName.ToBytes(), quantity); + .AddToken(policyId, tokenName.ToBytes(), quantity); + //declare a change output to send developer back change TransactionOutput changeOutput = new TransactionOutput() { Address = baseAddr.GetBytes(), @@ -254,37 +269,49 @@ public async void MintNFT(string fromWalletName, string toWalletName, string tok } }; + //construct the body pieces transactionBody .AddOutput(toAddress.GetBytes(), sendingAdaQuantity, mintAsset) .AddOutput(changeOutput.Address, changeOutput.Value.Coin) + .SetMint(mintAsset) .SetFee(0) - .SetTtl(0); + .SetTtl((uint)latestSlot + 1000); + //add our witnesses and native script to mint var witnesses = TransactionWitnessSetBuilder.Create - .AddVKeyWitness(fromWallet.Item2, fromWallet.Item1) + .AddVKeyWitness(paymentIx.PublicKey, paymentIx.PrivateKey) .AddVKeyWitness(fromPolicyKeys.Item2, fromPolicyKeys.Item1) - .SetNativeScript(fromPolicyScript); - - var auxData = AuxiliaryDataBuilder.Create - .AddMetadata(1337, metadata); - + .SetNativeScript(scriptBuilder); + + //start a tx builder var transactionBuilder = TransactionBuilder.Create .SetBody(transactionBody) - .SetWitnesses(witnesses) - .SetAuxData(auxData); + .SetWitnesses(witnesses); + + //add metadata if we have any + if (metadata != null) + { + var auxData = AuxiliaryDataBuilder.Create + .AddMetadata(1337, metadata); + transactionBuilder.SetAuxData(auxData); + } + //build out the tx var transaction = transactionBuilder.Build(); + //calculate fee of tx var fee = transaction.CalculateFee((uint)feeParams.Item1, (uint)feeParams.Item2); + //update fee, change output and rebuild transactionBody.SetFee(fee); - changeOutput.Value.Coin = changeOutput.Value.Coin - fee; transaction = transactionBuilder.Build(); + transaction.TransactionBody.TransactionOutputs.Last().Value.Coin = changeOutput.Value.Coin - fee; - //serialize the transaction + //serialize the transaction aka sign the transaction var signedTx = transaction.Serialize(); - var txHash = await SubmitTx(signedTx); + //submit tx + var txHash = AsyncUtil.RunSync(() => SubmitTx(signedTx)); Debug.Log($"Minting Transaction: {txHash}"); } #endregion @@ -329,7 +356,7 @@ public async Task GetUtxos(string address) try { return await _cardanoService.Addresses.GetUtxosAsync(address); - }catch + }catch(Exception e) { return null; } @@ -367,9 +394,9 @@ public async Task SubmitTx(byte[] signedTx) using (MemoryStream stream = new MemoryStream(signedTx)) return await _cardanoService.Transactions.PostTxSubmitAsync(stream); } - catch + catch(Exception e) { - return null; + return e.Message; } } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Menu/MenuManager.cs b/CardanoSharp Unity Project/Assets/Scripts/Menu/MenuManager.cs index dfa4ac4..bdcfaa8 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Menu/MenuManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Menu/MenuManager.cs @@ -16,7 +16,7 @@ private void Awake() public string GenerateMnemonic() { - var mnemonic = _cardanoManager.GenerateMnemonic(); + var mnemonic = _cardanoManager.CreateDeveloperWallet("Developer"); return mnemonic.Words; } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs index 531428e..1bec792 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/Quest.cs @@ -25,7 +25,8 @@ public class Quest : ScriptableObject public enum completeEvent { Nothing, - CompleteQuest1 + CompleteQuest1, + CompleteQuest3 }; public void OnStart() //Add case for every event. @@ -51,6 +52,10 @@ public enum completeEvent case completeEvent.CompleteQuest1: QuestEvents.Instance.CompleteQuest1(); break; + + case completeEvent.CompleteQuest3: + QuestEvents.Instance.CompleteQuest3(); + break; } } } diff --git a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs index a74c26e..5d38626 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/Quests/QuestEvents.cs @@ -21,6 +21,6 @@ public void CompleteQuest1() public void CompleteQuest3() { - //CardanoManager.MintNFT("Sword"); + CardanoManager.MintNFT("Developer", "Player", "Sword", 1, new { Name = "Oathbringer", Stats = new { Atk = 100, Type = "2H Sword"}}); } } From 4d3b231f17cbb04547b902258f1766e98019a367 Mon Sep 17 00:00:00 2001 From: Kyle Johns Date: Wed, 23 Mar 2022 20:13:16 -0400 Subject: [PATCH 7/7] added hexcode cbor variable for debugging --- CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs index 9422d4c..18b8f17 100644 --- a/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs +++ b/CardanoSharp Unity Project/Assets/Scripts/CardanoManager.cs @@ -309,6 +309,7 @@ public void MintNFT(string fromWalletName, string toWalletName, string tokenName //serialize the transaction aka sign the transaction var signedTx = transaction.Serialize(); + var signedTxString = signedTx.ToStringHex(); //submit tx var txHash = AsyncUtil.RunSync(() => SubmitTx(signedTx));