From a0a8751aa57a796743ea6238f67d8895f158c91e Mon Sep 17 00:00:00 2001 From: "DESKTOP-5RP3AKU\\Jisol" <2858626794@qq.com> Date: Fri, 15 Nov 2024 19:21:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E7=A1=AE=E5=AE=9A=E6=80=A7AI?= =?UTF-8?q?=E6=A1=88=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BehaviorTreeSlayer/BehaviorTreeWindow.cs | 22 + .../BehaviorTreeSlayer/BehaviorTree.cs | 9 +- .../BehaviorTreeSlayer/Core/TreeNode.cs | 31 +- .../BehaviorTreeSlayer/JNBehaviorTree.cs | 51 +- .../BehaviorTreeSlayer/Utils/XmlUtils.cs | 2 +- .../Cue/Base/GameplayCueDurational.cs | 6 + .../Assets/Resources/GASSamples/GASMain.unity | 16 +- .../Examples/1 basics/_scene01.unity | 29 +- .../Examples/1 basics/config01.txt | 70 +- JNFrame2/Assets/Scripts/GASSamples/AI.meta | 3 + .../Assets/Scripts/GASSamples/AI/AiDemo1.txt | 39 + .../Scripts/GASSamples/AI/AiDemo1.txt.meta | 7 + .../GCueDurational_PlayerDemo.asset | 6 +- .../GameplayCueDurational_PlayerDemo01.cs | 27 +- .../GASSamples/Scripts/Game/Logic/AI.meta | 8 + .../GASSamples/Scripts/Game/Logic/AI/AiLog.cs | 27 + .../Scripts/Game/Logic/AI/AiLog.cs.meta | 3 + .../Component/Components/JNAIComponent.cs | 29 + .../Components/JNAIComponent.cs.meta | 3 + .../Controller/JNGASBoxController.cs | 27 +- .../Nodes/Component/Lookup/JNGASBoxLookup.cs | 3 + .../Entity/Nodes/Contexts/JNGASBoxContext.cs | 1 + .../Game/Logic/Entity/Nodes/JNGASBox.cs | 1 + .../Game/Logic/System/Usual/DDataSystem.cs | 4 + .../Scripts/Game/View/DGeCueSystem.cs | 3 +- .../GASSamples/Scripts/JNGResService.cs | 2 + .../Assets/Scripts/GASSamples/Scripts/Main.cs | 10 +- JNFrame2/GASSamples.csproj | 3 + JNFrame2/Logs/AssetImportWorker0-prev.log | 327 - JNFrame2/Logs/AssetImportWorker0.log | 10759 +++++++++++++--- JNFrame2/Logs/AssetImportWorker1-prev.log | 282 - JNFrame2/Logs/AssetImportWorker1.log | 10299 ++++++++++++--- .../shadercompiler-AssetImportWorker0.log | 3 + ...hadercompiler-UnityShaderCompiler.exe0.log | 94 +- .../UserSettings/EditorUserSettings.asset | 16 +- .../UserSettings/Layouts/default-2022.dwlt | 44 +- ...p-firstpass.csproj.AssemblyReference.cache | Bin 134939 -> 134939 bytes ...mbly-CSharp.csproj.AssemblyReference.cache | Bin 134934 -> 11 bytes ...yGUI.Editor.csproj.AssemblyReference.cache | Bin 468179 -> 2902 bytes .../GASSamples.csproj.AssemblyReference.cache | Bin 461671 -> 11 bytes ...GameScripts.csproj.AssemblyReference.cache | Bin 130959 -> 11 bytes .../HotMain.csproj.AssemblyReference.cache | Bin 130975 -> 11 bytes ...Game.Editor.csproj.AssemblyReference.cache | Bin 140480 -> 11 bytes ...ame.Runtime.csproj.AssemblyReference.cache | Bin 137222 -> 11 bytes ...rame.Editor.csproj.AssemblyReference.cache | Bin 134185 -> 11 bytes .../Samples.csproj.AssemblyReference.cache | Bin 133547 -> 11 bytes ....SRF.Editor.csproj.AssemblyReference.cache | Bin 2902 -> 11 bytes 47 files changed, 18242 insertions(+), 4024 deletions(-) create mode 100644 JNFrame2/Assets/Scripts/GASSamples/AI.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt create mode 100644 JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs.meta delete mode 100644 JNFrame2/Logs/AssetImportWorker0-prev.log delete mode 100644 JNFrame2/Logs/AssetImportWorker1-prev.log diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs index af27c07f..95a4d171 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs @@ -339,6 +339,12 @@ namespace BehaviorTreeSlayerEditor GUI.Label(lbRect, Msg); GUI.BeginGroup(systemRect, "", "box"); int topBtnWidth = 0; + + if (GUI.Button(new Rect(topBtnWidth, 0, 120, 30), "Load", TopBtnStyle)) + { + LoadFromFile(); // 调用读取文件的方法 + } + topBtnWidth += 135; if (GUI.Button(new Rect(topBtnWidth, 0, 120, 30), "Save", TopBtnStyle)) { Save(); @@ -393,6 +399,22 @@ namespace BehaviorTreeSlayerEditor this.Repaint(); } } + + private void LoadFromFile() + { + string path = EditorUtility.OpenFilePanel("Load Behavior Config", "", "txt"); + if (!string.IsNullOrEmpty(path)) + { + // 获取相对路径 + string relativePath = "Assets" + path.Substring(Application.dataPath.Length); + // 使用 AssetDatabase 加载 TextAsset + TextAsset textAsset = AssetDatabase.LoadAssetAtPath(relativePath); + BTreeManager.Ins.Init(textAsset.text); + treeConfig = textAsset; + TryOpen(); + Msg = "Loaded from " + path; + } + } private void Save() { diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs index e0a831dc..177e08ed 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs @@ -89,7 +89,14 @@ namespace BehaviorTreeSlayer public Entry Load() { - if (Entry == null && config != null) + if (Application.isPlaying) + { + if (Entry == null && config != null) + { + Entry = XmlUtils.DeSerialize(config.text); + } + } + else { Entry = XmlUtils.DeSerialize(config.text); } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Core/TreeNode.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Core/TreeNode.cs index bb3be2bf..47e46b22 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Core/TreeNode.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Core/TreeNode.cs @@ -21,6 +21,21 @@ namespace BehaviorTreeSlayer public virtual void Exit(object args) { } + public virtual TaskResult Tick(LFloat dt, object args = null) + { + return TaskResult.OK; + } + public virtual void Reset() + { + state = TaskResult.None; + } + + public virtual void VisitTree(TreeNode node, System.Action action) + { + + } + +#if UNITY_EDITOR public TreeNode Copy(TreeNode node) { TreeNode t = this.Clone() as TreeNode; @@ -38,24 +53,12 @@ namespace BehaviorTreeSlayer } return t; } - public virtual TaskResult Tick(LFloat dt, object args = null) - { - return TaskResult.OK; - } - public virtual void Reset() - { - state = TaskResult.None; - } + TreeNode Clone() { return Activator.CreateInstance(this.GetType()) as TreeNode; } - - public virtual void VisitTree(TreeNode node, System.Action action) - { - - } - +#endif } } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs index 77d198e5..d588a55c 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs @@ -5,6 +5,7 @@ using JNGame.Runtime.Util; namespace BehaviorTreeSlayer { + /// /// 运行时 行为 /// @@ -40,7 +41,39 @@ namespace BehaviorTreeSlayer /// 事件 /// Dictionary> actions = new Dictionary>(); + + /// + /// 参数 + /// + public Dictionary Args = new Dictionary(); + + //------------------ 获取参数 ---------------------------------- + + public object this[string key] + { + get => Args.TryGetValue(key, out object v) ? v : null; + set => Args[key] = value; + } + + public T Get(string key) + { + return (T)this[key]; + } + + public T Get() + { + foreach (var keyValuePair in Args) + { + if (keyValuePair.Value is T value) + { + return value; + } + } + return default; + } + + //------------------ 结束获取参数 ---------------------------------- public void OnInit(int seed,string config) { @@ -59,19 +92,10 @@ namespace BehaviorTreeSlayer } } - - public void Regist(string key, Action onEvent) { - if (actions.ContainsKey(key)) - { - actions[key] = onEvent; - } - else - { - actions.Add(key, onEvent); - } + actions[key] = onEvent; } public void UnRegist(string key) @@ -89,9 +113,12 @@ namespace BehaviorTreeSlayer return RandomFloat(LFloat.L0,LFloat.L1); } - public void Update() + public void Update(LFloat dt) { - + if (IsInit) + { + Entry.Tick(dt,this); + } } } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs index f5e5f323..2dd62847 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs @@ -43,7 +43,6 @@ namespace BehaviorTreeSlayer } static Type[] types; - public static Type[] Types { get @@ -56,6 +55,7 @@ namespace BehaviorTreeSlayer } return types; } + } // public static string XmlSerialize(T obj) diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/Cue/Base/GameplayCueDurational.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/Cue/Base/GameplayCueDurational.cs index 1c0ab66d..fd35abc1 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/Cue/Base/GameplayCueDurational.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/Cue/Base/GameplayCueDurational.cs @@ -57,7 +57,13 @@ namespace GAS.Runtime public abstract void OnRemove(int frame,int startFrame,int endFrame); public abstract void OnGameplayEffectActivate(); public abstract void OnGameplayEffectDeactivate(); + /// + /// 只有Cue附加在实体中时会触发 + /// public abstract void OnTick(int frame,int startFrame,int endFrame); + /// + /// 如果不在实体中则自己主动调用 + /// public abstract void OnTick(int deltaTime); } diff --git a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity index 75a28600..63fd4222 100644 --- a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity +++ b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity @@ -38,7 +38,6 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: @@ -131,9 +130,21 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 1449950259} m_Modifications: + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalScale.x + value: 0.7567568 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalScale.y + value: 0.7567568 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalScale.z + value: 0.7567568 + objectReference: {fileID: 0} - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} propertyPath: m_LocalPosition.x - value: 0.18867925 + value: 6.5217395 objectReference: {fileID: 0} - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} propertyPath: m_LocalPosition.y @@ -400,6 +411,7 @@ MonoBehaviour: AbilityAsset: {fileID: 4900000, guid: 55f106e119a6897439630e254550d8fd, type: 3} GEAsset: {fileID: 4900000, guid: 8f64d28cf3a48454c9421439e97c85fe, type: 3} ASCAsset: {fileID: 4900000, guid: 2a02b2265d30a464a989f2d4b3e9adac, type: 3} + AI: {fileID: 4900000, guid: efbb9ae85b44479fac84562240d86ac3, type: 3} --- !u!4 &1745439354 Transform: m_ObjectHideFlags: 0 diff --git a/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity b/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity index 387a4b86..aa4629ba 100644 --- a/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity +++ b/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity @@ -38,7 +38,6 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.12731749, g: 0.13414757, b: 0.1210787, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: @@ -154,7 +153,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1704056725} - m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -300,7 +298,6 @@ RectTransform: m_Children: - {fileID: 1704056725} m_Father: {fileID: 0} - m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} @@ -339,7 +336,6 @@ RectTransform: m_Children: - {fileID: 1561392802} m_Father: {fileID: 1704056725} - m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -420,7 +416,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1675717780} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} @@ -493,7 +488,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 959240196} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} @@ -632,13 +626,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 716990035} + serializedVersion: 2 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_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &847152543 GameObject: @@ -700,13 +694,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 847152543} + serializedVersion: 2 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_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &959240195 GameObject: @@ -740,7 +734,6 @@ RectTransform: m_Children: - {fileID: 710005109} m_Father: {fileID: 1704056725} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -877,13 +870,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 963194225} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 1, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1561392801 GameObject: @@ -916,7 +909,6 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 311335929} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} @@ -990,7 +982,6 @@ RectTransform: m_Children: - {fileID: 452860052} m_Father: {fileID: 1704056725} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -1076,7 +1067,6 @@ RectTransform: - {fileID: 311335929} - {fileID: 12615224} m_Father: {fileID: 307949393} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} @@ -1139,7 +1129,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: AutoRun: 1 - config: {fileID: 4900000, guid: 2ae8dd65757eda9499fd4559acc7d26f, type: 3} + config: {fileID: 4900000, guid: efbb9ae85b44479fac84562240d86ac3, type: 3} Obj: - {fileID: 716990035} --- !u!4 &1742566310 @@ -1149,11 +1139,20 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1742566308} + serializedVersion: 2 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_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 963194228} + - {fileID: 847152546} + - {fileID: 716990039} + - {fileID: 1742566310} + - {fileID: 307949393} diff --git a/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt b/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt index 8843a88b..c42dc0c1 100644 --- a/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt +++ b/JNFrame2/Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt @@ -1,57 +1,34 @@ - 380000000 + 620000000 - -60000000 + 20000000 - 380000000 + 620000000 - 60000000 + 160000000 - 320000000 + 620000000 - 220000000 + 380000000 - - - 160000000 - - - 340000000 - - Cube - - - 10000000 - - - 0 - - - 0 - - - - 1000000 - - - 320000000 + 560000000 - 420000000 + 540000000 0.2166667 @@ -62,10 +39,10 @@ - 500000000 + 780000000 - 400000000 + 540000000 Cube @@ -85,10 +62,10 @@ - 680000000 + 980000000 - 360000000 + 540000000 0 @@ -97,6 +74,29 @@ 1 + + + 320000000 + + + 540000000 + + Cube + + + 10000000 + + + 0 + + + 0 + + + + 1000000 + + diff --git a/JNFrame2/Assets/Scripts/GASSamples/AI.meta b/JNFrame2/Assets/Scripts/GASSamples/AI.meta new file mode 100644 index 00000000..40010b0d --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/AI.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: ab04e85d18a64d29b5421265826a98cf +timeCreated: 1731647384 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt b/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt new file mode 100644 index 00000000..297d4cd7 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt @@ -0,0 +1,39 @@ + + + + 9620000000 + + + 5420000000 + + + + + 9620000000 + + + 5620000000 + + + + + 9480000000 + + + 5860000000 + + 你好 + + + + 9740000000 + + + 5860000000 + + 好个屁 + + + + + \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt.meta b/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt.meta new file mode 100644 index 00000000..989b4093 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/AI/AiDemo1.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: efbb9ae85b44479fac84562240d86ac3 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset index adba147b..be04ef55 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset @@ -25,8 +25,8 @@ MonoBehaviour: rawValue: 0 end: x: - rawValue: 10000000 + rawValue: 1000000 y: - rawValue: 0 + rawValue: 1000000 z: - rawValue: 0 + rawValue: 1000000 diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs index f13dd1b5..ba4fee7e 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs @@ -1,9 +1,7 @@ using DG.Tweening; using GAS.Runtime; -using GASSamples.Scripts.Game.GAS; using JNGame.Math; using JNGame.Runtime.GAS.Runtime; -using JNGame.Runtime.Util; using Sirenix.OdinInspector; using UnityEngine; @@ -13,10 +11,10 @@ namespace Demo.Scripts.GAS.GameplayCue { [BoxGroup] - [LabelText("开始位置")] + [LabelText("开始大小")] public LVector3 start; [BoxGroup] - [LabelText("结束位置")] + [LabelText("结束大小")] public LVector3 end; protected override GameplayCueDurationalSpec CreateSpec(GameplayCueParameters parameters) @@ -29,10 +27,13 @@ namespace Demo.Scripts.GAS.GameplayCue { Debug.Log($"GameplayCueDurational_PlayerDemo01 {previewObject} {frameIndex}"); - // if (frameIndex >= startFrame && frameIndex <= endFrame) - // { - // previewObject.transform.position = Vector3.Lerp(start.ToVector3(), end.ToVector3(), (float)(frameIndex - startFrame) / endFrame); - // } + var TotalTime = frameIndex - startFrame; + var durationTime = endFrame - startFrame; + + if (frameIndex >= startFrame && frameIndex <= endFrame) + { + previewObject.transform.localScale = start.ToVector3() + ((end.ToVector3() - start.ToVector3()) * ((float)TotalTime / durationTime)); + } } #endif @@ -72,22 +73,18 @@ namespace Demo.Scripts.GAS.GameplayCue { // Debug.Log($"GameplayCueDurational_PlayerDemo01_Spec OnTick {frame}"); - // ((GAbilitySystemComponent)Owner).Entity.Transform.Position = LVector3.Lerp(cue.start, cue.end, (LFloat)(frame - startFrame) / endFrame); + // ((GAbilitySystemComponent)Owner).Entity.Transform.Position = LVector3.Lerp(cue. start, cue.end, (LFloat)(frame - startFrame) / endFrame); } public override void OnTick(int deltaTime) { - TotalTime += deltaTime; + TotalTime += deltaTime; var view = _parameters.customArguments[0] as GameObject; var durationTime = ((int)_parameters.customArguments[1]) * JexGasManager.TimeLineAbilityTickTime; + view.transform.DOScale(cue.start.ToVector3() + ((cue.end.ToVector3() - cue.start.ToVector3()) * ((float)TotalTime / durationTime)),0.15f); - UnityMainThreadDispatcher.Instance.Enqueue(() => - { - // view.transform.localScale = new Vector3((float)TotalTime / durationTime,(float)TotalTime / durationTime,(float)TotalTime / durationTime); - view.transform.DOScale(new Vector3((float)TotalTime / durationTime,(float)TotalTime / durationTime,(float)TotalTime / durationTime),0.15f); - }); } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI.meta new file mode 100644 index 00000000..5bb089e3 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e95c0d34f640b2d468717505731caa9a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs new file mode 100644 index 00000000..3c8c93a8 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs @@ -0,0 +1,27 @@ +using BehaviorTreeSlayer; +using GASSamples.Scripts.Game.Entity.Nodes.Component.Components; +using JNGame.Sync.Entity; +using UnityEngine; + +namespace GASSamples.Scripts.Game.Logic.AI +{ + public class AiLog : ActionNode + { + + [OutField] + public string log; + + private JNBehaviorTree _tree; + public JNBehaviorTree Tree => _tree; + + public IJNEntity Entity => Tree.Get().Entity; + + public override void Enter(object args) + { + base.Enter(args); + _tree = args as JNBehaviorTree; + Debug.Log($"[AiLog] {Entity.Id} {log}"); + } + + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs.meta new file mode 100644 index 00000000..e7575453 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 11fd831585c84672a7b5f00e86be7d26 +timeCreated: 1731663272 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs new file mode 100644 index 00000000..94bb00ce --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs @@ -0,0 +1,29 @@ +using BehaviorTreeSlayer; +using JNGame.Math; +using JNGame.Sync.Entity.Component; +using JNGame.Sync.Frame.Service; + +namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Components +{ + /// + /// AI组件 + /// + public class JNAIComponent : JNComponent + { + + private JNBehaviorTree _behaviorTree = new(); + + public void Init(string config) + { + _behaviorTree["JNAIComponent"] = this; + _behaviorTree.OnInit(GetSystem().Int(0,100000),config); + } + + public override void OnSyncUpdate(int dt) + { + base.OnSyncUpdate(dt); + _behaviorTree.Update(new LFloat("",dt)); + } + + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs.meta new file mode 100644 index 00000000..75faeb35 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNAIComponent.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: d0b266c8a7b440ff93787430b9773489 +timeCreated: 1731646412 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs index ef2961b9..f79e8768 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs @@ -11,12 +11,27 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Controller { public JNGASComponent GAS => Entity.GetComponent(); + public JNAIComponent AI => Entity.GetComponent(); public override void OnSyncStart() { base.OnSyncStart(); + //初始化GAS + OnGASInit(); + + //初始化AI + OnAIInit(); + + } + + /// + /// 初始化GAS + /// + private void OnGASInit() + { + //设置GAS 角色 GAS.InitWithPreset(GetSystem().GetASCPresetAsset("ASC_Demo1"),1); @@ -25,8 +40,16 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Controller //释放技能 GAS.TryActivateAbility(GAbilityLib.JisolDemo1.Name); - - } + + /// + /// 初始化AI + /// + private void OnAIInit() + { + AI.Init(Entity.GetSystem().AI); + } + + } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs index fe37575b..9241eadf 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs @@ -11,10 +11,12 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Lookup public int Controller { get; set; } public int GAS { get; set; } + public int AI { get; set; } protected override void BindIndex() { base.BindIndex(); + AI = Next(); GAS = Next(); Controller = Next(); } @@ -22,6 +24,7 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Lookup protected override void BindType(KeyValue types) { base.BindType(types); + types.Add(AI,typeof(JNAIComponent)); types.Add(GAS,typeof(JNGASComponent)); types.Add(Controller,typeof(JNGASBoxController)); } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs index 3c52fbfd..5824bf7e 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs @@ -10,6 +10,7 @@ namespace GASSamples.Scripts.Game.Entity.Contexts protected override JNGASBox BindComponent(JNGASBox entity) { base.BindComponent(entity); + entity.AddComponent(); entity.AddComponent(); entity.AddComponent(); return entity; diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs index 934745a7..da50c228 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs @@ -9,6 +9,7 @@ namespace GASSamples.Scripts.Game.Entity.Nodes public class JNGASBox : JNEntity { + public JNAIComponent AI => CLookup.Query(this); public JNGASComponent GAS => CLookup.Query(this); public JNGASBoxController Controller => CLookup.Query(this); diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs index aad704ee..aec88ff8 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs @@ -18,6 +18,8 @@ namespace Game.Logic.System.Usual public byte[] GE { get; private set; } public byte[] ASC { get; private set; } + public string AI { get; private set; } + public Dictionary CuesDurational { get; private set; } public Dictionary CuesInstant { get; private set; } @@ -35,6 +37,8 @@ namespace Game.Logic.System.Usual CuesDurational = App.Resource.CuesDurational; CuesInstant = App.Resource.CuesInstant; + AI = App.Resource.AI; + } } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/DGeCueSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/DGeCueSystem.cs index 1762bc77..76557cdf 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/DGeCueSystem.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/DGeCueSystem.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using Game.Logic.System.Usual; using GAS.Runtime; +using JNGame.Runtime.Util; using JNGame.Serialization; using JNGame.Sync.System; @@ -56,7 +57,7 @@ namespace GASSamples.Scripts.Game.View base.OnSyncUpdate(dt); foreach (var spec in CueMap.Values) { - spec.OnTick(dt); + UnityMainThreadDispatcher.Instance.Enqueue(() => spec.OnTick(dt)); } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs index 05daaab2..27444073 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs @@ -27,6 +27,8 @@ namespace GASSamples.Scripts public Dictionary CuesDurational; public Dictionary CuesInstant; + + public string AI; public override Task OnInit() { diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs index 769c7dfa..50693680 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs @@ -1,10 +1,8 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using DefaultNamespace; using GAS.Runtime; using JNGame.Runtime; using Sirenix.OdinInspector; -using Sirenix.Serialization; using UnityEngine; namespace GASSamples.Scripts @@ -22,6 +20,8 @@ namespace GASSamples.Scripts public Dictionary CuesDurational; public Dictionary CuesInstant; + + public TextAsset AI; private JNGASFrameSystem _frameSystem; @@ -43,8 +43,8 @@ namespace GASSamples.Scripts App.Resource.CuesDurational = CuesDurational; App.Resource.CuesInstant = CuesInstant; - - + + App.Resource.AI = AI.text; _frameSystem = new JNGASFrameSystem(); _frameSystem.Initialize(); diff --git a/JNFrame2/GASSamples.csproj b/JNFrame2/GASSamples.csproj index 079a5085..084d9211 100644 --- a/JNFrame2/GASSamples.csproj +++ b/JNFrame2/GASSamples.csproj @@ -90,10 +90,12 @@ + + @@ -117,6 +119,7 @@ + C:\APP\UnityEdit\2022.3.52f1\Editor\Data\Managed\UnityEngine\UnityEngine.dll diff --git a/JNFrame2/Logs/AssetImportWorker0-prev.log b/JNFrame2/Logs/AssetImportWorker0-prev.log deleted file mode 100644 index 77fa9629..00000000 --- a/JNFrame2/Logs/AssetImportWorker0-prev.log +++ /dev/null @@ -1,327 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.52f1 (1120fcb54228) revision 1122556'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\APP\UnityEdit\2022.3.52f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker0 --projectPath -D:/Jisol/JisolGame/JNFrame2 --logFile -Logs/AssetImportWorker0.log --srvPort -60422 -Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 -D:/Jisol/JisolGame/JNFrame2 -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [22116] Target information: - -Player connection [22116] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 3930582073 [EditorId] 3930582073 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" - -Player connection [22116] Host joined multi-casting on [225.0.0.222:54997]... -Player connection [22116] Host joined alternative multi-casting on [225.0.0.222:34997]... -[PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. -Refreshing native plugins compatible for Editor in 25.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.52f1 (1120fcb54228) -[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520) - Vendor: NVIDIA - VRAM: 5996 MB - Driver: 31.0.15.5176 -Initialize mono -Mono path[0] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Managed' -Mono path[1] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56608 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.008981 seconds. -- Loaded All Assemblies, in 0.407 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 387 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.615 seconds -Domain Reload Profiling: 1021ms - BeginReloadAssembly (157ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (54ms) - LoadAllAssembliesAndSetupDomain (154ms) - LoadAssemblies (156ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (150ms) - TypeCache.Refresh (149ms) - TypeCache.ScanAssembly (135ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (615ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (583ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (447ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (95ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.974 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 13.14 ms, found 3 plugins. -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.086 seconds -Domain Reload Profiling: 2058ms - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (17ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (750ms) - LoadAssemblies (507ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (343ms) - TypeCache.Refresh (310ms) - TypeCache.ScanAssembly (281ms) - ScanForSourceGeneratedMonoScriptInfo (23ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1086ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (953ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (627ms) - ProcessInitializeOnLoadMethodAttributes (246ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5655 Unused Serialized files (Serialized files now loaded: 0) -Unloading 70 unused Assets / (201.8 KB). Loaded Objects now: 6172. -Memory consumption went from 197.9 MB to 197.7 MB. -Total: 15.304400 ms (FindLiveObjects: 0.349000 ms CreateObjectMapping: 0.224300 ms MarkObjects: 14.480600 ms DeleteObjects: 0.249200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 5419.112542 seconds. - path: Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs - artifactKey: Guid(81bd213a0dba8f645b8ddd263e34a884) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs using Guid(81bd213a0dba8f645b8ddd263e34a884) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'd4946a27fd574abf60fd3f5f66151c80') in 0.001784 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.000024 seconds. - path: Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs - artifactKey: Guid(2a6d4e191dd04e18be61de59dbc9a36c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs using Guid(2a6d4e191dd04e18be61de59dbc9a36c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'ccc26e3def5444966a44892eb3abf2a0') in 0.000308 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.000027 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/General - artifactKey: Guid(bb1c30c31ad34ddbb692b946a977c4be) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/General using Guid(bb1c30c31ad34ddbb692b946a977c4be) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '6b6440ff77c33097785217c04ab8cee3') in 0.000460 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 71.518626 seconds. - path: Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/Views/ViewField.cs - artifactKey: Guid(6a3b5f05d3759ff4bb8a7ce1a57477ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/Views/ViewField.cs using Guid(6a3b5f05d3759ff4bb8a7ce1a57477ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'f9cae6fbe11f2c5401cd9c1be4992a20') in 0.000636 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 16.718437 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/MoveTo.cs - artifactKey: Guid(384bccdfc018cf740a3b66881072cce4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/MoveTo.cs using Guid(384bccdfc018cf740a3b66881072cce4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'd7e22cb7e81d49c1fae0403d466c50da') in 0.000368 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.527 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 17.03 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.220 seconds -Domain Reload Profiling: 1745ms - BeginReloadAssembly (159ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (34ms) - LoadAllAssembliesAndSetupDomain (295ms) - LoadAssemblies (364ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (15ms) - TypeCache.Refresh (6ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1220ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (819ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (576ms) - ProcessInitializeOnLoadMethodAttributes (150ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.01 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6187. -Memory consumption went from 195.1 MB to 194.9 MB. -Total: 15.431100 ms (FindLiveObjects: 0.302200 ms CreateObjectMapping: 0.255400 ms MarkObjects: 14.699100 ms DeleteObjects: 0.173400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame2/Logs/AssetImportWorker0.log b/JNFrame2/Logs/AssetImportWorker0.log index c840f2ff..5a7139f2 100644 --- a/JNFrame2/Logs/AssetImportWorker0.log +++ b/JNFrame2/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ D:/Jisol/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker0.log -srvPort -51578 +50803 Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 D:/Jisol/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,14 +49,14 @@ D:/Jisol/JisolGame/JNFrame2 "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [18096] Target information: +Player connection [1596] Target information: -Player connection [18096] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 965285126 [EditorId] 965285126 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +Player connection [1596] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 3557508299 [EditorId] 3557508299 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -Player connection [18096] Host joined multi-casting on [225.0.0.222:54997]... -Player connection [18096] Host joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [1596] Host joined multi-casting on [225.0.0.222:54997]... +Player connection [1596] Host joined alternative multi-casting on [225.0.0.222:34997]... [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. -Refreshing native plugins compatible for Editor in 97.20 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 31.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.52f1 (1120fcb54228) [Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Resources/UnitySubsystems @@ -72,47 +72,47 @@ Initialize mono Mono path[0] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Managed' Mono path[1] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56432 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56452 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.010063 seconds. -- Loaded All Assemblies, in 0.459 seconds +Registered in 0.016999 seconds. +- Loaded All Assemblies, in 0.561 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 440 ms +Android Extension - Scanning For ADB Devices 656 ms Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.676 seconds -Domain Reload Profiling: 1133ms - BeginReloadAssembly (195ms) +- Finished resetting the current domain, in 1.107 seconds +Domain Reload Profiling: 1664ms + BeginReloadAssembly (163ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (61ms) - LoadAllAssembliesAndSetupDomain (159ms) - LoadAssemblies (194ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (104ms) + LoadAllAssembliesAndSetupDomain (220ms) + LoadAssemblies (166ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (155ms) - TypeCache.Refresh (153ms) - TypeCache.ScanAssembly (139ms) + AnalyzeDomain (213ms) + TypeCache.Refresh (212ms) + TypeCache.ScanAssembly (198ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (1ms) - FinalizeReload (676ms) + ResolveRequiredComponents (0ms) + FinalizeReload (1107ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (641ms) + SetupLoadedEditorAssemblies (1055ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (512ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (773ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (84ms) - ProcessInitializeOnLoadMethodAttributes (41ms) + BeforeProcessingInitializeOnLoad (4ms) + ProcessInitializeOnLoadAttributes (199ms) + ProcessInitializeOnLoadMethodAttributes (73ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,10 +121,10 @@ Domain Reload Profiling: 1133ms Worker process is ready to serve import requests Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.985 seconds +- Loaded All Assemblies, in 1.261 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 13.82 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.09 ms, found 3 plugins. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -142,48 +142,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.196 seconds -Domain Reload Profiling: 2179ms - BeginReloadAssembly (162ms) +- Finished resetting the current domain, in 2.006 seconds +Domain Reload Profiling: 3264ms + BeginReloadAssembly (213ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (18ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (742ms) - LoadAssemblies (590ms) + CreateAndSetChildDomain (20ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (930ms) + LoadAssemblies (668ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (264ms) - TypeCache.Refresh (237ms) - TypeCache.ScanAssembly (216ms) - ScanForSourceGeneratedMonoScriptInfo (19ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1196ms) + AnalyzeDomain (413ms) + TypeCache.Refresh (365ms) + TypeCache.ScanAssembly (331ms) + ScanForSourceGeneratedMonoScriptInfo (36ms) + ResolveRequiredComponents (10ms) + FinalizeReload (2007ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1061ms) + SetupLoadedEditorAssemblies (1734ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (7ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (742ms) - ProcessInitializeOnLoadMethodAttributes (231ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (1198ms) + ProcessInitializeOnLoadMethodAttributes (363ms) + AfterProcessingInitializeOnLoad (22ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (21ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.12 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5655 Unused Serialized files (Serialized files now loaded: 0) -Unloading 70 unused Assets / (201.5 KB). Loaded Objects now: 6172. -Memory consumption went from 197.9 MB to 197.7 MB. -Total: 14.505600 ms (FindLiveObjects: 0.362500 ms CreateObjectMapping: 0.203300 ms MarkObjects: 13.784900 ms DeleteObjects: 0.153600 ms) +Unloading 70 unused Assets / (201.9 KB). Loaded Objects now: 6172. +Memory consumption went from 198.0 MB to 197.8 MB. +Total: 28.522800 ms (FindLiveObjects: 0.719800 ms CreateObjectMapping: 0.480100 ms MarkObjects: 26.021500 ms DeleteObjects: 1.299200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -200,13 +200,22 @@ 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: 498.333255 seconds. + path: Assets/Scripts/GASSamples/Scripts/Main.cs + artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'af8bd9af8d650b0e3d7c7acd936f73c4') in 0.020270 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.701 seconds +- Loaded All Assemblies, in 0.559 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 21.61 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 20.72 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -222,54 +231,55 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.016 seconds -Domain Reload Profiling: 2715ms - BeginReloadAssembly (181ms) +- Finished resetting the current domain, in 1.205 seconds +Domain Reload Profiling: 1762ms + BeginReloadAssembly (168ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (44ms) - RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (49ms) - LoadAllAssembliesAndSetupDomain (423ms) - LoadAssemblies (510ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (315ms) + LoadAssemblies (371ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (22ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2017ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1206ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (850ms) + SetupLoadedEditorAssemblies (758ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (607ms) - ProcessInitializeOnLoadMethodAttributes (148ms) - AfterProcessingInitializeOnLoad (10ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.89 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.14 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6187. -Memory consumption went from 195.3 MB to 195.2 MB. -Total: 16.084000 ms (FindLiveObjects: 0.500900 ms CreateObjectMapping: 0.263900 ms MarkObjects: 15.156200 ms DeleteObjects: 0.161600 ms) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 6188. +Memory consumption went from 195.2 MB to 195.1 MB. +Total: 14.968300 ms (FindLiveObjects: 0.298700 ms CreateObjectMapping: 0.169700 ms MarkObjects: 14.362000 ms DeleteObjects: 0.136800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -280,59 +290,42 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Import Request. - Time since last request: 3132.189485 seconds. - path: Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BTreeManager.cs - artifactKey: Guid(870d8f6edd0155a4784441a1a87366eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BTreeManager.cs using Guid(870d8f6edd0155a4784441a1a87366eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'd6a3cbcf39ff7f001bb0d30be7cbbd38') in 0.004779 seconds + Time since last request: 643.490208 seconds. + path: Assets/Scripts/GASSamples/Scripts/Main.cs + artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '169740fa19cf1adedfd4f99d4c700271') in 0.001953 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== Received Import Request. - Time since last request: 3.392908 seconds. - path: Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs - artifactKey: Guid(e5b8e668d7f252c418457873b4425f79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs using Guid(e5b8e668d7f252c418457873b4425f79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '12e6830d0d3750970f2882c34a2a5b38') in 0.000574 seconds + Time since last request: 4.838867 seconds. + path: Assets/Scripts/GASSamples/Scripts/GAS + artifactKey: Guid(93d542b5cd7d40219abcee66ef046f93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/GAS using Guid(93d542b5cd7d40219abcee66ef046f93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'e3fdcf2d8afcf2cabe6db0ec0dabba8d') in 0.000787 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== Received Import Request. - Time since last request: 1.024857 seconds. - path: Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeUtils.cs - artifactKey: Guid(24e1641a0d30f674f81601b09d469b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeUtils.cs using Guid(24e1641a0d30f674f81601b09d469b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'ecf20f318d74b050b64d87058f5236c7') in 0.000395 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.586588 seconds. - path: Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeEditor.cs - artifactKey: Guid(0b41c7821495d9a41bcb84184c4855a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeEditor.cs using Guid(0b41c7821495d9a41bcb84184c4855a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '705b3eed15aaa2e2752eb273a8c3e483') in 0.000568 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 14.141041 seconds. - path: Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/IBehaviorTree.cs - artifactKey: Guid(99f0f308232b4e5ba3f7b497af3098c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/IBehaviorTree.cs using Guid(99f0f308232b4e5ba3f7b497af3098c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '701a467b2c4366a4806b37235426a7ba') in 0.000395 seconds + Time since last request: 2.097227 seconds. + path: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs + artifactKey: Guid(07bc2f76183f4a82b1855c7426a7db31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs using Guid(07bc2f76183f4a82b1855c7426a7db31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '29cfbe2479b74dbd7cb49c03b16841f1') in 0.000383 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.701 seconds +- Loaded All Assemblies, in 0.597 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 20.27 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.84 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -348,145 +341,58 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.911 seconds -Domain Reload Profiling: 2609ms - BeginReloadAssembly (158ms) +- Finished resetting the current domain, in 1.152 seconds +Domain Reload Profiling: 1746ms + BeginReloadAssembly (172ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) + CreateAndSetChildDomain (39ms) RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (469ms) - LoadAssemblies (500ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (417ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (57ms) - TypeCache.Refresh (33ms) - TypeCache.ScanAssembly (15ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1911ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1153ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (781ms) + SetupLoadedEditorAssemblies (694ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (524ms) - ProcessInitializeOnLoadMethodAttributes (175ms) - AfterProcessingInitializeOnLoad (11ms) + ProcessInitializeOnLoadAttributes (473ms) + ProcessInitializeOnLoadMethodAttributes (140ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (10ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6202. -Memory consumption went from 195.1 MB to 194.9 MB. -Total: 14.749000 ms (FindLiveObjects: 0.329300 ms CreateObjectMapping: 0.229700 ms MarkObjects: 14.023100 ms DeleteObjects: 0.165900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.740 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.96 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.817 seconds -Domain Reload Profiling: 2555ms - BeginReloadAssembly (188ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (473ms) - LoadAssemblies (546ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (44ms) - TypeCache.Refresh (26ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1818ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (715ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (506ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 22.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6217. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 13.165900 ms (FindLiveObjects: 0.364000 ms CreateObjectMapping: 0.182200 ms MarkObjects: 12.451500 ms DeleteObjects: 0.166900 ms) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6203. +Memory consumption went from 195.2 MB to 195.1 MB. +Total: 16.149100 ms (FindLiveObjects: 0.302900 ms CreateObjectMapping: 0.208100 ms MarkObjects: 15.489800 ms DeleteObjects: 0.147100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -494,16 +400,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.609 seconds +- Loaded All Assemblies, in 0.575 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.72 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.35 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -519,414 +424,55 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.065 seconds -Domain Reload Profiling: 1671ms - BeginReloadAssembly (169ms) +- Finished resetting the current domain, in 1.122 seconds +Domain Reload Profiling: 1696ms + BeginReloadAssembly (165ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (361ms) - LoadAssemblies (422ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (23ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1066ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (666ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (477ms) - ProcessInitializeOnLoadMethodAttributes (116ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6232. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 12.992400 ms (FindLiveObjects: 0.288400 ms CreateObjectMapping: 0.174700 ms MarkObjects: 12.404400 ms DeleteObjects: 0.123800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.598 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 13.28 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.131 seconds -Domain Reload Profiling: 1727ms - BeginReloadAssembly (155ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) + CreateAndSetChildDomain (38ms) RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (47ms) - LoadAllAssembliesAndSetupDomain (354ms) - LoadAssemblies (398ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (46ms) - TypeCache.Refresh (29ms) - TypeCache.ScanAssembly (15ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1132ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (732ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (511ms) - ProcessInitializeOnLoadMethodAttributes (146ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6247. -Memory consumption went from 195.3 MB to 195.1 MB. -Total: 14.105300 ms (FindLiveObjects: 0.316500 ms CreateObjectMapping: 0.167600 ms MarkObjects: 13.497000 ms DeleteObjects: 0.123000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.638 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 14.54 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.192 seconds -Domain Reload Profiling: 1828ms - BeginReloadAssembly (188ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (376ms) - LoadAssemblies (427ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (45ms) - TypeCache.Refresh (27ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1193ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (703ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (496ms) - ProcessInitializeOnLoadMethodAttributes (126ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6262. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 14.312700 ms (FindLiveObjects: 0.290600 ms CreateObjectMapping: 0.207200 ms MarkObjects: 13.658500 ms DeleteObjects: 0.155300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.639 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.67 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.057 seconds -Domain Reload Profiling: 1693ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (42ms) - LoadAllAssembliesAndSetupDomain (371ms) - LoadAssemblies (438ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (43ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1057ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (668ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (469ms) - ProcessInitializeOnLoadMethodAttributes (116ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.61 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6277. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 13.332300 ms (FindLiveObjects: 0.398500 ms CreateObjectMapping: 0.173600 ms MarkObjects: 12.631900 ms DeleteObjects: 0.127300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Import Request. - Time since last request: 391.972719 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config02.txt - artifactKey: Guid(9e443e249cc3325409805e9469aa4b53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config02.txt using Guid(9e443e249cc3325409805e9469aa4b53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: 'b380dffb66132567454de24540861f54') in 0.015289 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.545114 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt - artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '2376a94280a32178fc6b0e93a6cb8d5c') in 0.000897 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.642 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.40 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.664 seconds -Domain Reload Profiling: 2304ms - BeginReloadAssembly (159ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) initialDomainReloadingComplete (36ms) - LoadAllAssembliesAndSetupDomain (412ms) - LoadAssemblies (455ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (402ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (11ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) ResolveRequiredComponents (9ms) - FinalizeReload (1665ms) + FinalizeReload (1123ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (663ms) + SetupLoadedEditorAssemblies (681ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (51ms) - ProcessInitializeOnLoadAttributes (460ms) - ProcessInitializeOnLoadMethodAttributes (124ms) - AfterProcessingInitializeOnLoad (7ms) + ProcessInitializeOnLoadAttributes (478ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (11ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 15.62 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6293. -Memory consumption went from 195.2 MB to 195.0 MB. -Total: 13.136100 ms (FindLiveObjects: 0.316600 ms CreateObjectMapping: 0.184900 ms MarkObjects: 12.502900 ms DeleteObjects: 0.130300 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6218. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 14.842900 ms (FindLiveObjects: 0.342100 ms CreateObjectMapping: 0.228200 ms MarkObjects: 14.111800 ms DeleteObjects: 0.159600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -937,15 +483,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.565 seconds +- Loaded All Assemblies, in 0.652 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 18.25 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -961,145 +507,60 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.206 seconds -Domain Reload Profiling: 1768ms - BeginReloadAssembly (154ms) +- Finished resetting the current domain, in 1.146 seconds +Domain Reload Profiling: 1794ms + BeginReloadAssembly (165ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (39ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (320ms) - LoadAssemblies (369ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (11ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1206ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (687ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (492ms) - ProcessInitializeOnLoadMethodAttributes (117ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Script is not up to date after domain reload: guid(81bd213a0dba8f645b8ddd263e34a884) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6308. -Memory consumption went from 195.4 MB to 195.3 MB. -Total: 13.708000 ms (FindLiveObjects: 0.290200 ms CreateObjectMapping: 0.185200 ms MarkObjects: 13.028000 ms DeleteObjects: 0.203700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.497 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.00 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.090 seconds -Domain Reload Profiling: 1584ms - BeginReloadAssembly (155ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (35ms) - LoadAllAssembliesAndSetupDomain (271ms) - LoadAssemblies (340ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (400ms) + LoadAssemblies (464ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (16ms) - TypeCache.Refresh (7ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1090ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1146ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (645ms) + SetupLoadedEditorAssemblies (699ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (449ms) - ProcessInitializeOnLoadMethodAttributes (109ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (492ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.98 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6323. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 13.492600 ms (FindLiveObjects: 0.294100 ms CreateObjectMapping: 0.172300 ms MarkObjects: 12.901300 ms DeleteObjects: 0.123800 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6233. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 12.846900 ms (FindLiveObjects: 0.299000 ms CreateObjectMapping: 0.158900 ms MarkObjects: 12.255600 ms DeleteObjects: 0.132500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -1107,16 +568,16 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.607 seconds +- Loaded All Assemblies, in 0.707 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.11 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -1132,26 +593,26 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.108 seconds -Domain Reload Profiling: 1712ms - BeginReloadAssembly (179ms) +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1801ms + BeginReloadAssembly (191ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (345ms) - LoadAssemblies (416ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (490ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (23ms) - TypeCache.ScanAssembly (11ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (5ms) ScanForSourceGeneratedMonoScriptInfo (7ms) ResolveRequiredComponents (9ms) - FinalizeReload (1108ms) + FinalizeReload (1101ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (669ms) @@ -1159,32 +620,33 @@ Domain Reload Profiling: 1712ms InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (473ms) - ProcessInitializeOnLoadMethodAttributes (113ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (464ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.67 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 22.04 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6338. -Memory consumption went from 195.4 MB to 195.3 MB. -Total: 13.418000 ms (FindLiveObjects: 0.335200 ms CreateObjectMapping: 0.197500 ms MarkObjects: 12.719600 ms DeleteObjects: 0.163900 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6248. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 18.387100 ms (FindLiveObjects: 0.570400 ms CreateObjectMapping: 0.254200 ms MarkObjects: 17.380900 ms DeleteObjects: 0.180100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -1192,16 +654,16 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.820 seconds +- Loaded All Assemblies, in 0.693 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 82.57 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.76 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -1217,48 +679,2153 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.425 seconds -Domain Reload Profiling: 3242ms - BeginReloadAssembly (172ms) +- Finished resetting the current domain, in 1.155 seconds +Domain Reload Profiling: 1843ms + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1155ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (692ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (483ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6263. +Memory consumption went from 195.5 MB to 195.4 MB. +Total: 13.761300 ms (FindLiveObjects: 0.315600 ms CreateObjectMapping: 0.177300 ms MarkObjects: 13.118100 ms DeleteObjects: 0.149600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.578 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 19.89 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.278 seconds +Domain Reload Profiling: 1854ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (391ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1279ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (796ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (579ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(2ac7f2bb23fb47efb3a21d1160e962ac) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6277. +Memory consumption went from 195.5 MB to 195.4 MB. +Total: 13.175500 ms (FindLiveObjects: 0.298200 ms CreateObjectMapping: 0.163200 ms MarkObjects: 12.557900 ms DeleteObjects: 0.154900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.587 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.20 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.209 seconds +Domain Reload Profiling: 1793ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (338ms) + LoadAssemblies (404ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1209ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (750ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 6293. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 13.925600 ms (FindLiveObjects: 0.343200 ms CreateObjectMapping: 0.174600 ms MarkObjects: 13.268300 ms DeleteObjects: 0.138500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.575 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.50 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.124 seconds +Domain Reload Profiling: 1697ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (394ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1124ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6308. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 13.956900 ms (FindLiveObjects: 0.351200 ms CreateObjectMapping: 0.423700 ms MarkObjects: 12.992400 ms DeleteObjects: 0.188200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.587 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.16 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.061 seconds +Domain Reload Profiling: 1646ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (408ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1061ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (454ms) + ProcessInitializeOnLoadMethodAttributes (111ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6323. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 12.334000 ms (FindLiveObjects: 0.300800 ms CreateObjectMapping: 0.172400 ms MarkObjects: 11.704300 ms DeleteObjects: 0.155700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.587 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.24 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.083 seconds +Domain Reload Profiling: 1667ms + BeginReloadAssembly (171ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (44ms) - RebuildCommonClasses (25ms) + RebuildCommonClasses (26ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (574ms) - LoadAssemblies (491ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (343ms) + LoadAssemblies (405ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (139ms) - TypeCache.ScanAssembly (104ms) - ScanForSourceGeneratedMonoScriptInfo (31ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2425ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1083ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1116ms) + SetupLoadedEditorAssemblies (652ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (462ms) + ProcessInitializeOnLoadMethodAttributes (111ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6338. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 12.940700 ms (FindLiveObjects: 0.353000 ms CreateObjectMapping: 0.177500 ms MarkObjects: 12.233300 ms DeleteObjects: 0.176000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.698 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.53 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.197 seconds +Domain Reload Profiling: 1892ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (479ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1197ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (715ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (882ms) - ProcessInitializeOnLoadMethodAttributes (148ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6353. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 12.663900 ms (FindLiveObjects: 0.319400 ms CreateObjectMapping: 0.168600 ms MarkObjects: 12.035600 ms DeleteObjects: 0.139000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.623 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.98 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.124 seconds +Domain Reload Profiling: 1744ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1124ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (679ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (469ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6368. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 13.189400 ms (FindLiveObjects: 0.319100 ms CreateObjectMapping: 0.181200 ms MarkObjects: 12.551500 ms DeleteObjects: 0.136400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.687 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.213 seconds +Domain Reload Profiling: 1897ms + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1214ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (777ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (572ms) + ProcessInitializeOnLoadMethodAttributes (127ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (10ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 17.16 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6383. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 11.923900 ms (FindLiveObjects: 0.353600 ms CreateObjectMapping: 0.164600 ms MarkObjects: 11.283000 ms DeleteObjects: 0.122100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.538 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.58 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.083 seconds +Domain Reload Profiling: 1618ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (365ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1083ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (463ms) + ProcessInitializeOnLoadMethodAttributes (112ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6398. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 12.393100 ms (FindLiveObjects: 0.348300 ms CreateObjectMapping: 0.247300 ms MarkObjects: 11.672200 ms DeleteObjects: 0.124300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 673.032792 seconds. + path: Assets/Resources/Samples/WhiteMat.mat + artifactKey: Guid(633a83508c617534bb405e9fe3aacfc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/Samples/WhiteMat.mat using Guid(633a83508c617534bb405e9fe3aacfc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. +[PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '819fc12fb95630d85a43e99ca5c1ff28') in 0.125170 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 31.056919 seconds. + path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics + artifactKey: Guid(51f4691720baf6d4f858097008fc8d0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics using Guid(51f4691720baf6d4f858097008fc8d0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'a56b5a4f3ed94c25f2a9e09c2bf07546') in 0.001141 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 81.934673 seconds. + path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt + artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '4ff064d8097bdac2f1b7a04e6f3fc9e3') in 0.000945 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.610 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.070 seconds +Domain Reload Profiling: 1678ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (424ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1071ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (472ms) + ProcessInitializeOnLoadMethodAttributes (111ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6353. -Memory consumption went from 195.5 MB to 195.4 MB. -Total: 16.655200 ms (FindLiveObjects: 0.418200 ms CreateObjectMapping: 0.464800 ms MarkObjects: 15.592600 ms DeleteObjects: 0.178100 ms) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6454. +Memory consumption went from 199.8 MB to 199.7 MB. +Total: 13.565200 ms (FindLiveObjects: 0.300100 ms CreateObjectMapping: 0.169200 ms MarkObjects: 12.960900 ms DeleteObjects: 0.133900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.794 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 21.43 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.330 seconds +Domain Reload Profiling: 2119ms + BeginReloadAssembly (256ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (556ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1331ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (866ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (577ms) + ProcessInitializeOnLoadMethodAttributes (203ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6468. +Memory consumption went from 200.1 MB to 199.9 MB. +Total: 14.790400 ms (FindLiveObjects: 0.334200 ms CreateObjectMapping: 0.195800 ms MarkObjects: 14.063100 ms DeleteObjects: 0.196300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.601 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.95 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.191 seconds +Domain Reload Profiling: 1790ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (408ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (702ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (504ms) + ProcessInitializeOnLoadMethodAttributes (114ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6484. +Memory consumption went from 200.1 MB to 200.0 MB. +Total: 13.545300 ms (FindLiveObjects: 0.315700 ms CreateObjectMapping: 0.177700 ms MarkObjects: 12.910700 ms DeleteObjects: 0.140200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.591 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.02 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1741ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (344ms) + LoadAssemblies (399ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1153ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (695ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6499. +Memory consumption went from 200.1 MB to 200.0 MB. +Total: 13.232300 ms (FindLiveObjects: 0.357100 ms CreateObjectMapping: 0.184900 ms MarkObjects: 12.545100 ms DeleteObjects: 0.144300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.645 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 23.83 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.392 seconds +Domain Reload Profiling: 2034ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (417ms) + LoadAssemblies (445ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (60ms) + TypeCache.Refresh (37ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1392ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (913ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (643ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6513. +Memory consumption went from 200.1 MB to 199.9 MB. +Total: 15.419600 ms (FindLiveObjects: 0.338400 ms CreateObjectMapping: 0.187500 ms MarkObjects: 14.681000 ms DeleteObjects: 0.211100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.572 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.90 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.087 seconds +Domain Reload Profiling: 1655ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (343ms) + LoadAssemblies (395ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1087ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (675ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (484ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6529. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 13.705100 ms (FindLiveObjects: 0.332300 ms CreateObjectMapping: 0.198200 ms MarkObjects: 13.043700 ms DeleteObjects: 0.129800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.632 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.12 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.102 seconds +Domain Reload Profiling: 1732ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1102ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (459ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 17.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6544. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 18.856700 ms (FindLiveObjects: 0.443100 ms CreateObjectMapping: 0.254300 ms MarkObjects: 17.769900 ms DeleteObjects: 0.387200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 2365.291649 seconds. + path: Assets/Scripts/GASSamples/Scripts/Game/Logic/AI + artifactKey: Guid(e95c0d34f640b2d468717505731caa9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/Game/Logic/AI using Guid(e95c0d34f640b2d468717505731caa9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'b2b32c1c7cbe1961c45e921a39e9f28d') in 0.003274 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 16.766009 seconds. + path: Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS + artifactKey: Guid(09af0fe6bc634405a389bf3e8640507c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS using Guid(09af0fe6bc634405a389bf3e8640507c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '923cb130be054aaeb183192f07866141') in 0.000685 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.328528 seconds. + path: Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs + artifactKey: Guid(f91a65c731e64bceb375e9f6eb571dd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs using Guid(f91a65c731e64bceb375e9f6eb571dd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '0fe593583d357365dbf5539e036515ab') in 0.000426 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 104.721317 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo.asset + artifactKey: Guid(041f193225d7b1e49a75af0003a4111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo.asset using Guid(041f193225d7b1e49a75af0003a4111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'd13ad4840bc94d885be89624fce22ce7') in 0.014110 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '194fff7126e7630ebc5ae954ac1cef54') in 0.001448 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.581 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.41 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.232 seconds +Domain Reload Profiling: 1810ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (400ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1232ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (721ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (507ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6559. +Memory consumption went from 199.9 MB to 199.7 MB. +Total: 12.579100 ms (FindLiveObjects: 0.314900 ms CreateObjectMapping: 0.203500 ms MarkObjects: 11.922100 ms DeleteObjects: 0.137800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.552 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 11.43 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.069 seconds +Domain Reload Profiling: 1618ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (376ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1069ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (659ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (460ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6574. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 14.524300 ms (FindLiveObjects: 0.357300 ms CreateObjectMapping: 0.213500 ms MarkObjects: 13.813600 ms DeleteObjects: 0.138600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.509 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.17 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.279 seconds +Domain Reload Profiling: 1785ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (359ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1279ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (811ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6589. +Memory consumption went from 200.1 MB to 200.0 MB. +Total: 14.735300 ms (FindLiveObjects: 0.351900 ms CreateObjectMapping: 0.333500 ms MarkObjects: 13.914200 ms DeleteObjects: 0.134700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.511 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.80 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.191 seconds +Domain Reload Profiling: 1700ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (360ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (783ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6604. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 14.896200 ms (FindLiveObjects: 0.369800 ms CreateObjectMapping: 0.308900 ms MarkObjects: 14.059400 ms DeleteObjects: 0.157000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.514 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.74 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.195 seconds +Domain Reload Profiling: 1707ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (341ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1196ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (763ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Script is not up to date after domain reload: guid(321af3379125465380073b2a04a1b1e2) path("Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6618. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 13.382700 ms (FindLiveObjects: 0.306900 ms CreateObjectMapping: 0.166200 ms MarkObjects: 12.780600 ms DeleteObjects: 0.128100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.514 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.48 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.117 seconds +Domain Reload Profiling: 1628ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (353ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1117ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (706ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6634. +Memory consumption went from 200.2 MB to 200.1 MB. +Total: 14.041600 ms (FindLiveObjects: 0.422900 ms CreateObjectMapping: 0.223700 ms MarkObjects: 13.250300 ms DeleteObjects: 0.143600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 513.172527 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset + artifactKey: Guid(4089eaee525e7aa45993e0ad2c042fc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset using Guid(4089eaee525e7aa45993e0ad2c042fc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'f640bb49e74627c8ef0dfe78e4925999') in 0.010326 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.561 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.27 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1711ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (372ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1154ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (724ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6649. +Memory consumption went from 200.0 MB to 199.8 MB. +Total: 13.533000 ms (FindLiveObjects: 0.394900 ms CreateObjectMapping: 0.293600 ms MarkObjects: 12.693700 ms DeleteObjects: 0.149700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.770 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 19.47 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.395 seconds +Domain Reload Profiling: 2163ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (518ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (164ms) + TypeCache.Refresh (133ms) + TypeCache.ScanAssembly (116ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1396ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (842ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (594ms) + ProcessInitializeOnLoadMethodAttributes (155ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 27.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6664. +Memory consumption went from 200.3 MB to 200.1 MB. +Total: 16.248900 ms (FindLiveObjects: 0.459600 ms CreateObjectMapping: 0.256100 ms MarkObjects: 15.333900 ms DeleteObjects: 0.197900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1269,6 +2836,7 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> @@ -1284,12 +2852,3222 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.791 seconds +- Loaded All Assemblies, in 0.591 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.66 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1743ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (408ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1154ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (731ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6679. +Memory consumption went from 200.4 MB to 200.2 MB. +Total: 13.382600 ms (FindLiveObjects: 0.385200 ms CreateObjectMapping: 0.191400 ms MarkObjects: 12.652300 ms DeleteObjects: 0.152700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.661 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.07 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.226 seconds +Domain Reload Profiling: 1885ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (425ms) + LoadAssemblies (475ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (770ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6694. +Memory consumption went from 200.4 MB to 200.2 MB. +Total: 13.876400 ms (FindLiveObjects: 0.413400 ms CreateObjectMapping: 0.219800 ms MarkObjects: 13.077900 ms DeleteObjects: 0.164300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.598 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.73 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.155 seconds +Domain Reload Profiling: 1751ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (413ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1155ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (726ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6709. +Memory consumption went from 200.4 MB to 200.2 MB. +Total: 13.436600 ms (FindLiveObjects: 0.374000 ms CreateObjectMapping: 0.251500 ms MarkObjects: 12.661000 ms DeleteObjects: 0.149100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.613 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.91 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.083 seconds +Domain Reload Profiling: 1693ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (363ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1083ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (656ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (458ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6724. +Memory consumption went from 200.4 MB to 200.2 MB. +Total: 13.277700 ms (FindLiveObjects: 0.337200 ms CreateObjectMapping: 0.232900 ms MarkObjects: 12.562800 ms DeleteObjects: 0.143700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 1617.544668 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '1d5c5fab4f8187c1769f8a671f51bdee') in 0.012042 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.609 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.99 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.196 seconds +Domain Reload Profiling: 1802ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (397ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1197ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (752ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6739. +Memory consumption went from 200.1 MB to 199.9 MB. +Total: 13.439000 ms (FindLiveObjects: 0.395700 ms CreateObjectMapping: 0.188000 ms MarkObjects: 12.706000 ms DeleteObjects: 0.147800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 83.146385 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '8f7bfeff17f1435268e48e36e6821c7b') in 0.010036 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 9.345305 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '08a02a6b9900e0b002c7888e4fe622a0') in 0.001057 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.537 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.072 seconds +Domain Reload Profiling: 1607ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (353ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1073ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (452ms) + ProcessInitializeOnLoadMethodAttributes (113ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6754. +Memory consumption went from 200.1 MB to 200.0 MB. +Total: 13.485900 ms (FindLiveObjects: 0.371700 ms CreateObjectMapping: 0.175800 ms MarkObjects: 12.804700 ms DeleteObjects: 0.132700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 10370.813466 seconds. + path: Assets/Scripts/GASSamples/AI + artifactKey: Guid(ab04e85d18a64d29b5421265826a98cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI using Guid(ab04e85d18a64d29b5421265826a98cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '7dd4e7ee87f08bb8eb8405a90a13a661') in 0.003557 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.669 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.09 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.179 seconds +Domain Reload Profiling: 1846ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (421ms) + LoadAssemblies (477ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1180ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (682ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (478ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6769. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 14.075100 ms (FindLiveObjects: 0.349600 ms CreateObjectMapping: 0.208000 ms MarkObjects: 13.364100 ms DeleteObjects: 0.152400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 376.621932 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1 + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1 using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '09b3341f45d998a72dc4415ef1588800') in 0.009501 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 14.983863 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '77b34890b296717db2f8cfc47b16c029') in 0.001022 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 99.689402 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '85f795ea87fb502e4b6649776c5c633b') in 0.001570 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.668 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.24 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.285 seconds +Domain Reload Profiling: 1948ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (388ms) + LoadAssemblies (455ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1286ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (758ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 20.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6785. +Memory consumption went from 200.2 MB to 200.0 MB. +Total: 18.696600 ms (FindLiveObjects: 0.687300 ms CreateObjectMapping: 0.449600 ms MarkObjects: 17.413300 ms DeleteObjects: 0.144700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.07 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.355 seconds +Domain Reload Profiling: 2009ms + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1356ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (867ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (624ms) + ProcessInitializeOnLoadMethodAttributes (149ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6800. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 15.337200 ms (FindLiveObjects: 0.381700 ms CreateObjectMapping: 0.180200 ms MarkObjects: 14.606300 ms DeleteObjects: 0.167700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.601 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.00 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.257 seconds +Domain Reload Profiling: 1842ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (399ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1258ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (796ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (145ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(11fd831585c84672a7b5f00e86be7d26) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6814. +Memory consumption went from 200.4 MB to 200.2 MB. +Total: 14.983600 ms (FindLiveObjects: 0.362300 ms CreateObjectMapping: 0.192100 ms MarkObjects: 14.272400 ms DeleteObjects: 0.155600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.625 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.73 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.205 seconds +Domain Reload Profiling: 1824ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1206ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (740ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6830. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 14.457300 ms (FindLiveObjects: 0.511700 ms CreateObjectMapping: 0.118200 ms MarkObjects: 13.681500 ms DeleteObjects: 0.144700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.593 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.30 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.184 seconds +Domain Reload Profiling: 1774ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (392ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1184ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (741ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.1 KB). Loaded Objects now: 6846. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 14.172100 ms (FindLiveObjects: 0.367300 ms CreateObjectMapping: 0.202500 ms MarkObjects: 13.401300 ms DeleteObjects: 0.196000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.644 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.35 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.231 seconds +Domain Reload Profiling: 1872ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (445ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1231ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (763ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Script is not up to date after domain reload: guid(4f5e99e31c984d56a40398119595b219) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiTreeNode.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6860. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 17.611300 ms (FindLiveObjects: 0.487100 ms CreateObjectMapping: 0.348800 ms MarkObjects: 16.548100 ms DeleteObjects: 0.225300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.559 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.62 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.245 seconds +Domain Reload Profiling: 1801ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1245ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (795ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (567ms) + ProcessInitializeOnLoadMethodAttributes (140ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6876. +Memory consumption went from 200.5 MB to 200.4 MB. +Total: 17.560500 ms (FindLiveObjects: 0.379000 ms CreateObjectMapping: 0.203100 ms MarkObjects: 16.767600 ms DeleteObjects: 0.209500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.640 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.78 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.146 seconds +Domain Reload Profiling: 1783ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (400ms) + LoadAssemblies (458ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1146ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (466ms) + ProcessInitializeOnLoadMethodAttributes (118ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6891. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 13.338800 ms (FindLiveObjects: 0.353000 ms CreateObjectMapping: 0.176200 ms MarkObjects: 12.670300 ms DeleteObjects: 0.138200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.676 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.89 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.162 seconds +Domain Reload Profiling: 1836ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (458ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (70ms) + TypeCache.Refresh (51ms) + TypeCache.ScanAssembly (27ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1163ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (473ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6906. +Memory consumption went from 200.5 MB to 200.4 MB. +Total: 13.836200 ms (FindLiveObjects: 0.402500 ms CreateObjectMapping: 0.236500 ms MarkObjects: 13.026900 ms DeleteObjects: 0.169300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.37 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.202 seconds +Domain Reload Profiling: 1856ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (423ms) + LoadAssemblies (426ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (83ms) + TypeCache.Refresh (61ms) + TypeCache.ScanAssembly (35ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1203ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (691ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6921. +Memory consumption went from 200.5 MB to 200.4 MB. +Total: 13.165900 ms (FindLiveObjects: 0.342300 ms CreateObjectMapping: 0.189800 ms MarkObjects: 12.493200 ms DeleteObjects: 0.139500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.05 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.190 seconds +Domain Reload Profiling: 1843ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (420ms) + LoadAssemblies (469ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1191ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (673ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (477ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6936. +Memory consumption went from 200.5 MB to 200.4 MB. +Total: 13.673500 ms (FindLiveObjects: 0.342300 ms CreateObjectMapping: 0.174100 ms MarkObjects: 13.013100 ms DeleteObjects: 0.143100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.556 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.58 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.323 seconds +Domain Reload Profiling: 1877ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (381ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1324ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (503ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6951. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 13.797900 ms (FindLiveObjects: 0.370000 ms CreateObjectMapping: 0.192700 ms MarkObjects: 13.068700 ms DeleteObjects: 0.165400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.586 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.26 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.147 seconds +Domain Reload Profiling: 1731ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1148ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (479ms) + ProcessInitializeOnLoadMethodAttributes (118ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6966. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 13.964400 ms (FindLiveObjects: 0.385000 ms CreateObjectMapping: 0.194700 ms MarkObjects: 13.247500 ms DeleteObjects: 0.136400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.563 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 11.46 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.159 seconds +Domain Reload Profiling: 1720ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1159ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (463ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 10.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6981. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 13.387500 ms (FindLiveObjects: 0.539500 ms CreateObjectMapping: 0.168900 ms MarkObjects: 12.422100 ms DeleteObjects: 0.256000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.619 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.69 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.184 seconds +Domain Reload Profiling: 1801ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (424ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1185ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (683ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (485ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6996. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 14.037300 ms (FindLiveObjects: 0.342200 ms CreateObjectMapping: 0.168200 ms MarkObjects: 13.364300 ms DeleteObjects: 0.161700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.608 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.341 seconds +Domain Reload Profiling: 1946ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1341ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7011. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 15.190900 ms (FindLiveObjects: 0.344400 ms CreateObjectMapping: 0.175300 ms MarkObjects: 14.519000 ms DeleteObjects: 0.151300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.592 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.53 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.209 seconds +Domain Reload Profiling: 1798ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (406ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1210ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (726ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7026. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 13.937900 ms (FindLiveObjects: 0.340300 ms CreateObjectMapping: 0.177000 ms MarkObjects: 13.277700 ms DeleteObjects: 0.141900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.685 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.27 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.770 seconds +Domain Reload Profiling: 2452ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (422ms) + LoadAssemblies (485ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1770ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (474ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 7041. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 14.224600 ms (FindLiveObjects: 0.387800 ms CreateObjectMapping: 0.259900 ms MarkObjects: 13.370400 ms DeleteObjects: 0.204800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.664 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.52 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.891 seconds +Domain Reload Profiling: 2553ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (487ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1891ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (716ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (502ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(11fd831585c84672a7b5f00e86be7d26) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7055. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 14.267500 ms (FindLiveObjects: 0.588800 ms CreateObjectMapping: 0.184400 ms MarkObjects: 13.293600 ms DeleteObjects: 0.199000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.532 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.49 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.109 seconds +Domain Reload Profiling: 1639ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (354ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1109ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (479ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7071. +Memory consumption went from 200.6 MB to 200.5 MB. +Total: 13.979500 ms (FindLiveObjects: 0.363600 ms CreateObjectMapping: 0.193600 ms MarkObjects: 13.247000 ms DeleteObjects: 0.173900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.569 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.91 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.110 seconds +Domain Reload Profiling: 1676ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (385ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1110ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (484ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7086. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 13.631500 ms (FindLiveObjects: 0.358000 ms CreateObjectMapping: 0.188700 ms MarkObjects: 12.876400 ms DeleteObjects: 0.206800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.593 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.33 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.118 seconds +Domain Reload Profiling: 1708ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (406ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1118ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (493ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 7101. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 13.424400 ms (FindLiveObjects: 0.363000 ms CreateObjectMapping: 0.179800 ms MarkObjects: 12.739400 ms DeleteObjects: 0.141000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.707 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.19 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.282 seconds +Domain Reload Profiling: 1986ms + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (51ms) + LoadAllAssembliesAndSetupDomain (390ms) + LoadAssemblies (461ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1282ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (725ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (510ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.1 KB). Loaded Objects now: 7116. +Memory consumption went from 200.6 MB to 200.4 MB. +Total: 13.567700 ms (FindLiveObjects: 0.378500 ms CreateObjectMapping: 0.191300 ms MarkObjects: 12.848100 ms DeleteObjects: 0.148500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.617 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.26 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.176 seconds +Domain Reload Profiling: 1791ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (421ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1176ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (740ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7131. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 15.406100 ms (FindLiveObjects: 0.460400 ms CreateObjectMapping: 0.273700 ms MarkObjects: 14.369300 ms DeleteObjects: 0.301700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.618 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.141 seconds +Domain Reload Profiling: 1758ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (380ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (84ms) + TypeCache.Refresh (54ms) + TypeCache.ScanAssembly (37ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (20ms) + FinalizeReload (1142ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (472ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7146. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 15.728400 ms (FindLiveObjects: 0.448500 ms CreateObjectMapping: 0.240300 ms MarkObjects: 14.860100 ms DeleteObjects: 0.178400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 1748.613934 seconds. + path: Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASSettingAsset.cs + artifactKey: Guid(0bf62a9aa7db48b38f37313afe3e6ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASSettingAsset.cs using Guid(0bf62a9aa7db48b38f37313afe3e6ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '05e17b0c2490a6705eb8728a352af092') in 0.002239 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.786 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.98 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.997 seconds +Domain Reload Profiling: 2779ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (577ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1998ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (755ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (538ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7161. +Memory consumption went from 200.4 MB to 200.3 MB. +Total: 13.670300 ms (FindLiveObjects: 0.409800 ms CreateObjectMapping: 0.235300 ms MarkObjects: 12.870300 ms DeleteObjects: 0.153900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.666 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found Refreshing native plugins compatible for Editor in 19.68 ms, found 3 plugins. @@ -1308,142 +6086,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.482 seconds -Domain Reload Profiling: 3271ms - BeginReloadAssembly (196ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (510ms) - LoadAssemblies (575ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2483ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1011ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (749ms) - ProcessInitializeOnLoadMethodAttributes (160ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 15.16 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6368. -Memory consumption went from 195.5 MB to 195.4 MB. -Total: 19.857200 ms (FindLiveObjects: 0.576400 ms CreateObjectMapping: 0.341800 ms MarkObjects: 18.782600 ms DeleteObjects: 0.154900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.698 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 14.06 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.929 seconds -Domain Reload Profiling: 2623ms - BeginReloadAssembly (192ms) +- Finished resetting the current domain, in 1.547 seconds +Domain Reload Profiling: 2210ms + BeginReloadAssembly (165ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (50ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (467ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (425ms) + LoadAssemblies (481ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (21ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) ResolveRequiredComponents (8ms) - FinalizeReload (1930ms) + FinalizeReload (1547ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (770ms) + SetupLoadedEditorAssemblies (842ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (545ms) - ProcessInitializeOnLoadMethodAttributes (137ms) - AfterProcessingInitializeOnLoad (11ms) + ProcessInitializeOnLoadAttributes (597ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) + AwakeInstancesAfterBackupRestoration (12ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.03 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.59 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6383. -Memory consumption went from 195.6 MB to 195.4 MB. -Total: 14.416800 ms (FindLiveObjects: 0.330200 ms CreateObjectMapping: 0.218500 ms MarkObjects: 13.711200 ms DeleteObjects: 0.155600 ms) +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7176. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 15.727700 ms (FindLiveObjects: 0.439600 ms CreateObjectMapping: 0.461400 ms MarkObjects: 14.673100 ms DeleteObjects: 0.151900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1454,13 +6138,13 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -1469,18 +6153,18 @@ AssetImportParameters requested are different than current active one (requested custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.640 seconds +- Loaded All Assemblies, in 0.743 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 21.47 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.56 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -1496,637 +6180,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 3.566 seconds -Domain Reload Profiling: 5205ms - BeginReloadAssembly (576ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (17ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (326ms) - RebuildCommonClasses (45ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (58ms) - LoadAllAssembliesAndSetupDomain (949ms) - LoadAssemblies (996ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (103ms) - TypeCache.Refresh (65ms) - TypeCache.ScanAssembly (26ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (18ms) - FinalizeReload (3568ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1563ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (934ms) - ProcessInitializeOnLoadMethodAttributes (529ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Script is not up to date after domain reload: guid(93d2405f000836c41afde6b189b28771) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs") state(2) -Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.29 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6397. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 23.672500 ms (FindLiveObjects: 0.759800 ms CreateObjectMapping: 0.273100 ms MarkObjects: 22.373800 ms DeleteObjects: 0.262900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.765 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 21.82 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.637 seconds -Domain Reload Profiling: 2399ms - BeginReloadAssembly (192ms) +- Finished resetting the current domain, in 1.210 seconds +Domain Reload Profiling: 1945ms + BeginReloadAssembly (183ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (49ms) - LoadAllAssembliesAndSetupDomain (483ms) - LoadAssemblies (541ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (52ms) - TypeCache.Refresh (32ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1637ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1029ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (692ms) - ProcessInitializeOnLoadMethodAttributes (229ms) - AfterProcessingInitializeOnLoad (16ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 26.88 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6413. -Memory consumption went from 195.6 MB to 195.4 MB. -Total: 31.145100 ms (FindLiveObjects: 0.586000 ms CreateObjectMapping: 0.226500 ms MarkObjects: 30.013200 ms DeleteObjects: 0.317300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Import Request. - Time since last request: 706.306650 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt - artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '226b9d6dabeae31afe86820252cb606f') in 0.012180 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.877 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 24.68 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.517 seconds -Domain Reload Profiling: 3390ms - BeginReloadAssembly (241ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (83ms) - RebuildCommonClasses (42ms) - RebuildNativeTypeToScriptingClass (19ms) - initialDomainReloadingComplete (61ms) - LoadAllAssembliesAndSetupDomain (510ms) - LoadAssemblies (588ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (44ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (9ms) - FinalizeReload (2518ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (914ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (663ms) - ProcessInitializeOnLoadMethodAttributes (150ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Script is not up to date after domain reload: guid(93d2405f000836c41afde6b189b28771) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs") state(2) -Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 17.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5636 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6426. -Memory consumption went from 195.3 MB to 195.1 MB. -Total: 21.069100 ms (FindLiveObjects: 0.517600 ms CreateObjectMapping: 0.222800 ms MarkObjects: 19.880100 ms DeleteObjects: 0.445600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.697 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 29.11 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.148 seconds -Domain Reload Profiling: 3842ms - BeginReloadAssembly (322ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (65ms) - RebuildCommonClasses (49ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (54ms) - LoadAllAssembliesAndSetupDomain (1258ms) - LoadAssemblies (1421ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (48ms) - TypeCache.Refresh (29ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2149ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (878ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (634ms) - ProcessInitializeOnLoadMethodAttributes (146ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6443. -Memory consumption went from 195.6 MB to 195.5 MB. -Total: 16.494900 ms (FindLiveObjects: 0.527100 ms CreateObjectMapping: 0.315500 ms MarkObjects: 15.430700 ms DeleteObjects: 0.220100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.719 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.90 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.837 seconds -Domain Reload Profiling: 2554ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (57ms) - RebuildCommonClasses (28ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (32ms) RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (457ms) - LoadAssemblies (512ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (537ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (42ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (11ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1837ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1211ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (745ms) + SetupLoadedEditorAssemblies (767ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (17ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (536ms) - ProcessInitializeOnLoadMethodAttributes (125ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 16.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6458. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 14.971700 ms (FindLiveObjects: 0.433400 ms CreateObjectMapping: 0.181500 ms MarkObjects: 14.201300 ms DeleteObjects: 0.154400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Import Request. - Time since last request: 195.892581 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt - artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '498e65b373937b2151c8a53087172dca') in 0.025815 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.955 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 14.12 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.120 seconds -Domain Reload Profiling: 3072ms - BeginReloadAssembly (323ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (105ms) - RebuildCommonClasses (41ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (46ms) - LoadAllAssembliesAndSetupDomain (533ms) - LoadAssemblies (623ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (45ms) - TypeCache.Refresh (27ms) - TypeCache.ScanAssembly (11ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2120ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (825ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (577ms) - ProcessInitializeOnLoadMethodAttributes (152ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 16.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6473. -Memory consumption went from 195.3 MB to 195.2 MB. -Total: 17.664800 ms (FindLiveObjects: 0.584100 ms CreateObjectMapping: 0.288200 ms MarkObjects: 16.588200 ms DeleteObjects: 0.202600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Import Request. - Time since last request: 111.967413 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt - artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '050ca1e8b1fe8b5a63e54da1e21e6d03') in 0.013336 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.727 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 17.74 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.150 seconds -Domain Reload Profiling: 2875ms - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (40ms) - LoadAllAssembliesAndSetupDomain (467ms) - LoadAssemblies (542ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (21ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2151ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (969ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (662ms) - ProcessInitializeOnLoadMethodAttributes (208ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (553ms) + ProcessInitializeOnLoadMethodAttributes (127ms) AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (10ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.10 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.68 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6488. -Memory consumption went from 195.4 MB to 195.3 MB. -Total: 19.994000 ms (FindLiveObjects: 0.599000 ms CreateObjectMapping: 0.342500 ms MarkObjects: 18.648500 ms DeleteObjects: 0.401500 ms) +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7191. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 14.962600 ms (FindLiveObjects: 0.426500 ms CreateObjectMapping: 0.184500 ms MarkObjects: 14.188100 ms DeleteObjects: 0.162000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2137,25 +6232,917 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 69a71996089c1f72642793bba4090999 -> custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 6495fe3598379bed8c0105be4e40bff8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 2195.728501 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'bd64a8dcaf3ddfa990c6fd9fda5b8b44') in 0.013805 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 8.490906 seconds. + path: Assets/Resources/GASSamples/GASMain.unity + artifactKey: Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/GASSamples/GASMain.unity using Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '2624b52881a2e593eb867f082eb10ed3') in 0.000516 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.710 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.54 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.957 seconds +Domain Reload Profiling: 2665ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (458ms) + LoadAssemblies (522ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1957ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (751ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7206. +Memory consumption went from 200.5 MB to 200.3 MB. +Total: 14.507100 ms (FindLiveObjects: 0.441100 ms CreateObjectMapping: 0.224900 ms MarkObjects: 13.661500 ms DeleteObjects: 0.178500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: df7d08b11789ade9478fb12c5c6e9971 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: f2b7a6d3924bb40b2cef60e4cb4bd7a5 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.588 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.02 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.151 seconds +Domain Reload Profiling: 1736ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (388ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1151ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (708ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7221. +Memory consumption went from 200.8 MB to 200.6 MB. +Total: 14.013100 ms (FindLiveObjects: 0.397900 ms CreateObjectMapping: 0.229900 ms MarkObjects: 13.226100 ms DeleteObjects: 0.158000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: df7d08b11789ade9478fb12c5c6e9971 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: f2b7a6d3924bb40b2cef60e4cb4bd7a5 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.560 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.29 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.164 seconds +Domain Reload Profiling: 1722ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (375ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (494ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 10.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7236. +Memory consumption went from 200.8 MB to 200.6 MB. +Total: 14.130000 ms (FindLiveObjects: 0.409500 ms CreateObjectMapping: 0.278300 ms MarkObjects: 13.293800 ms DeleteObjects: 0.147400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: cdde4d766305959a13d366bb95a6f85a -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.576 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.20 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.120 seconds +Domain Reload Profiling: 1694ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (388ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1121ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (718ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (512ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 54 unused Assets / (174.5 KB). Loaded Objects now: 7250. +Memory consumption went from 200.8 MB to 200.6 MB. +Total: 13.974700 ms (FindLiveObjects: 0.376500 ms CreateObjectMapping: 0.195500 ms MarkObjects: 13.247300 ms DeleteObjects: 0.154300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.553 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.081 seconds +Domain Reload Profiling: 1631ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (376ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1081ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (684ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (487ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7265. +Memory consumption went from 200.7 MB to 200.5 MB. +Total: 13.599300 ms (FindLiveObjects: 0.409800 ms CreateObjectMapping: 0.208400 ms MarkObjects: 12.792300 ms DeleteObjects: 0.187700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 405.614359 seconds. + path: Assets/Resources/GASSamples/GASMain.unity + artifactKey: Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/GASSamples/GASMain.unity using Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'b22577db159eecfe5c87827a912afcf3') in 0.001793 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.590 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.53 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.207 seconds +Domain Reload Profiling: 1794ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1207ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (147ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7280. +Memory consumption went from 200.5 MB to 200.4 MB. +Total: 13.975200 ms (FindLiveObjects: 0.473600 ms CreateObjectMapping: 0.194000 ms MarkObjects: 13.153400 ms DeleteObjects: 0.152900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.593 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.34 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 1784ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (394ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1194ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (485ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 7295. +Memory consumption went from 200.8 MB to 200.7 MB. +Total: 15.034100 ms (FindLiveObjects: 0.386100 ms CreateObjectMapping: 0.254700 ms MarkObjects: 14.213900 ms DeleteObjects: 0.178400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.58 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1212ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (722ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7310. +Memory consumption went from 200.8 MB to 200.7 MB. +Total: 13.245200 ms (FindLiveObjects: 0.381000 ms CreateObjectMapping: 0.156200 ms MarkObjects: 12.572200 ms DeleteObjects: 0.134900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.544 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.11 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.248 seconds +Domain Reload Profiling: 1790ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (383ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1249ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (785ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7325. +Memory consumption went from 200.8 MB to 200.7 MB. +Total: 13.510500 ms (FindLiveObjects: 0.369700 ms CreateObjectMapping: 0.175900 ms MarkObjects: 12.826500 ms DeleteObjects: 0.137500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload @@ -2163,7 +7150,7 @@ Begin MonoManager ReloadAssembly - Loaded All Assemblies, in 0.641 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 17.96 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.77 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -2179,160 +7166,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.329 seconds -Domain Reload Profiling: 1968ms - BeginReloadAssembly (186ms) +- Finished resetting the current domain, in 1.187 seconds +Domain Reload Profiling: 1826ms + BeginReloadAssembly (178ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (27ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (42ms) - LoadAllAssembliesAndSetupDomain (376ms) - LoadAssemblies (456ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (447ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (24ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1330ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (868ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (599ms) - ProcessInitializeOnLoadMethodAttributes (177ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6503. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 19.243300 ms (FindLiveObjects: 0.532600 ms CreateObjectMapping: 0.255800 ms MarkObjects: 18.248100 ms DeleteObjects: 0.204800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Import Request. - Time since last request: 88.772612 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt - artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '4683c72a7c64cef24d22c13a20d9ce89') in 0.008844 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 3.757926 seconds. - path: Assets/Scripts/BehaviorTreeSlayer/Examples/2 dialog control/config02.txt - artifactKey: Guid(11669c657e7b2574e85e490c71ae4152) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/2 dialog control/config02.txt using Guid(11669c657e7b2574e85e490c71ae4152) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. - -> (artifact id: '8f4763fd29e16a6a8a4a8ee5e3767283') in 0.001316 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.684 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 18.76 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.707 seconds -Domain Reload Profiling: 2389ms - BeginReloadAssembly (188ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (412ms) - LoadAssemblies (484ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (33ms) + AnalyzeDomain (42ms) TypeCache.Refresh (20ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1708ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1187ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1022ms) + SetupLoadedEditorAssemblies (720ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (742ms) - ProcessInitializeOnLoadMethodAttributes (181ms) - AfterProcessingInitializeOnLoad (11ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (142ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 16.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.75 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6518. -Memory consumption went from 195.4 MB to 195.3 MB. -Total: 15.307900 ms (FindLiveObjects: 0.352400 ms CreateObjectMapping: 0.196700 ms MarkObjects: 14.584000 ms DeleteObjects: 0.173600 ms) +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7340. +Memory consumption went from 200.8 MB to 200.6 MB. +Total: 16.674600 ms (FindLiveObjects: 0.617200 ms CreateObjectMapping: 0.549700 ms MarkObjects: 15.311300 ms DeleteObjects: 0.195200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2343,33 +7218,37 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.791 seconds +- Loaded All Assemblies, in 0.517 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.76 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 16.22 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -2385,48 +7264,1447 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.007 seconds -Domain Reload Profiling: 3799ms - BeginReloadAssembly (419ms) +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1726ms + BeginReloadAssembly (156ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (17ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (221ms) - RebuildCommonClasses (28ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (1293ms) - LoadAssemblies (1310ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (359ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (92ms) - TypeCache.Refresh (49ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (27ms) - ResolveRequiredComponents (14ms) - FinalizeReload (2008ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1211ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (709ms) + SetupLoadedEditorAssemblies (784ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7355. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 15.007900 ms (FindLiveObjects: 0.517700 ms CreateObjectMapping: 0.278300 ms MarkObjects: 13.974200 ms DeleteObjects: 0.236700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.522 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.23 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.192 seconds +Domain Reload Profiling: 1712ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (362ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1193ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (776ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7370. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 14.095800 ms (FindLiveObjects: 0.378600 ms CreateObjectMapping: 0.209200 ms MarkObjects: 13.372200 ms DeleteObjects: 0.135100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.502 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.68 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.185 seconds +Domain Reload Profiling: 1685ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (280ms) + LoadAssemblies (346ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1185ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (758ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (491ms) - ProcessInitializeOnLoadMethodAttributes (136ms) + ProcessInitializeOnLoadAttributes (542ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7385. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 16.381000 ms (FindLiveObjects: 0.405500 ms CreateObjectMapping: 0.253500 ms MarkObjects: 15.524300 ms DeleteObjects: 0.196300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.530 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.92 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.148 seconds +Domain Reload Profiling: 1677ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (365ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1149ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (748ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7400. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 14.347900 ms (FindLiveObjects: 0.438200 ms CreateObjectMapping: 0.173000 ms MarkObjects: 13.594200 ms DeleteObjects: 0.141300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.564 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.59 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.148 seconds +Domain Reload Profiling: 1710ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (380ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1148ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (488ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7415. +Memory consumption went from 200.8 MB to 200.7 MB. +Total: 15.409600 ms (FindLiveObjects: 0.483800 ms CreateObjectMapping: 0.223700 ms MarkObjects: 14.526800 ms DeleteObjects: 0.174300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.518 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.82 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.209 seconds +Domain Reload Profiling: 1724ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (360ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1209ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (784ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7430. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 14.359200 ms (FindLiveObjects: 0.419600 ms CreateObjectMapping: 0.233500 ms MarkObjects: 13.571700 ms DeleteObjects: 0.133600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.546 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.225 seconds +Domain Reload Profiling: 1770ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (360ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1225ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (728ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (485ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7445. +Memory consumption went from 200.9 MB to 200.8 MB. +Total: 14.815500 ms (FindLiveObjects: 0.459900 ms CreateObjectMapping: 0.233400 ms MarkObjects: 13.921200 ms DeleteObjects: 0.199800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.521 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.03 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.229 seconds +Domain Reload Profiling: 1748ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (360ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1229ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (794ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (137ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7460. +Memory consumption went from 200.9 MB to 200.8 MB. +Total: 16.736000 ms (FindLiveObjects: 0.399800 ms CreateObjectMapping: 0.468800 ms MarkObjects: 15.688000 ms DeleteObjects: 0.178500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.528 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.66 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 1727ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (362ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (776ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7475. +Memory consumption went from 201.0 MB to 200.8 MB. +Total: 14.702500 ms (FindLiveObjects: 0.570800 ms CreateObjectMapping: 0.174800 ms MarkObjects: 13.752400 ms DeleteObjects: 0.201300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.519 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.99 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.233 seconds +Domain Reload Profiling: 1749ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (361ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1233ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (804ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (570ms) + ProcessInitializeOnLoadMethodAttributes (145ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7490. +Memory consumption went from 200.9 MB to 200.8 MB. +Total: 16.441800 ms (FindLiveObjects: 0.483300 ms CreateObjectMapping: 0.218300 ms MarkObjects: 15.588300 ms DeleteObjects: 0.150800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 591.315059 seconds. + path: Assets/Resources/GASSamples/GASMain.unity + artifactKey: Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/GASSamples/GASMain.unity using Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '840da607c2be01a4461ca844a2182355') in 0.001609 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.306271 seconds. + path: Assets/Resources/Fonts/SIMKAI.TTF + artifactKey: Guid(823c7151eb711204e9a45de5f4584f59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/Fonts/SIMKAI.TTF using Guid(823c7151eb711204e9a45de5f4584f59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. +[PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. +[PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '4da762abd83a334aab5848dc36e23ec7') in 0.120381 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 21.798102 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'a4abc94a895db27d6a5f4b40e64c8e80') in 0.001067 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.676 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.99 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.215 seconds +Domain Reload Profiling: 1886ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (470ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1215ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (774ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (556ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7509. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 15.808000 ms (FindLiveObjects: 0.425300 ms CreateObjectMapping: 0.195900 ms MarkObjects: 15.009800 ms DeleteObjects: 0.175600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.561 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.319 seconds +Domain Reload Profiling: 1878ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (377ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1320ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (751ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7524. +Memory consumption went from 201.1 MB to 201.0 MB. +Total: 15.344300 ms (FindLiveObjects: 0.388000 ms CreateObjectMapping: 0.184600 ms MarkObjects: 14.623400 ms DeleteObjects: 0.147400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.12 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.267 seconds +Domain Reload Profiling: 1898ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1267ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (758ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (555ms) + ProcessInitializeOnLoadMethodAttributes (114ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7539. +Memory consumption went from 201.1 MB to 201.0 MB. +Total: 13.707800 ms (FindLiveObjects: 0.578400 ms CreateObjectMapping: 0.185200 ms MarkObjects: 12.810100 ms DeleteObjects: 0.131400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.574 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.55 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.274 seconds +Domain Reload Profiling: 1845ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (343ms) + LoadAssemblies (394ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1274ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (783ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7554. +Memory consumption went from 201.2 MB to 201.0 MB. +Total: 14.028700 ms (FindLiveObjects: 0.408300 ms CreateObjectMapping: 0.191400 ms MarkObjects: 13.287000 ms DeleteObjects: 0.141000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.681 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.94 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.862 seconds +Domain Reload Profiling: 2541ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (498ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1863ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (724ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (513ms) + ProcessInitializeOnLoadMethodAttributes (125ms) AfterProcessingInitializeOnLoad (7ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6533. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 14.935200 ms (FindLiveObjects: 0.337700 ms CreateObjectMapping: 0.246700 ms MarkObjects: 13.771500 ms DeleteObjects: 0.578100 ms) +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7569. +Memory consumption went from 201.1 MB to 200.9 MB. +Total: 14.667700 ms (FindLiveObjects: 0.413300 ms CreateObjectMapping: 0.197200 ms MarkObjects: 13.909200 ms DeleteObjects: 0.146800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2435,21 +8713,1106 @@ AssetImportParameters requested are different than current active one (requested custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.903 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.51 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.069 seconds +Domain Reload Profiling: 2970ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (55ms) + LoadAllAssembliesAndSetupDomain (636ms) + LoadAssemblies (697ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (8ms) + FinalizeReload (2070ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (886ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (664ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7584. +Memory consumption went from 201.2 MB to 201.0 MB. +Total: 15.931400 ms (FindLiveObjects: 0.474100 ms CreateObjectMapping: 0.384900 ms MarkObjects: 14.814800 ms DeleteObjects: 0.255100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.643 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 20.86 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.165 seconds +Domain Reload Profiling: 1805ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (452ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (534ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7599. +Memory consumption went from 201.2 MB to 201.0 MB. +Total: 13.506000 ms (FindLiveObjects: 0.413600 ms CreateObjectMapping: 0.186100 ms MarkObjects: 12.770400 ms DeleteObjects: 0.134800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.660 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.19 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.311 seconds +Domain Reload Profiling: 1968ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (422ms) + LoadAssemblies (454ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (20ms) + FinalizeReload (1311ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (815ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (535ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 7614. +Memory consumption went from 201.2 MB to 201.0 MB. +Total: 15.645600 ms (FindLiveObjects: 0.462100 ms CreateObjectMapping: 0.190300 ms MarkObjects: 14.791700 ms DeleteObjects: 0.200300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.549 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.51 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.100 seconds +Domain Reload Profiling: 1647ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (319ms) + LoadAssemblies (370ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1101ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (667ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (469ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7629. +Memory consumption went from 201.2 MB to 201.0 MB. +Total: 14.872600 ms (FindLiveObjects: 0.476100 ms CreateObjectMapping: 0.211600 ms MarkObjects: 14.042700 ms DeleteObjects: 0.141100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 770.079631 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '0c65d8db64b9b9821c1682f66a897dc0') in 0.009124 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 2.242599 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '76004cd90a8d88886f8cba15cfb2bd74') in 0.001015 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 1.235413 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '1bb8f24cc3036b6d7adf7bc50015ee50') in 0.000991 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 65.846943 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'bdfe6f36f6d03033cd2ef634e403c9bb') in 0.001640 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 10.392538 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '6bfb261c91c21092791870c0df5e1f70') in 0.001114 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.565 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.15 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.156 seconds +Domain Reload Profiling: 1719ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (379ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1156ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7644. +Memory consumption went from 200.9 MB to 200.7 MB. +Total: 14.931100 ms (FindLiveObjects: 0.442900 ms CreateObjectMapping: 0.197100 ms MarkObjects: 14.146600 ms DeleteObjects: 0.143200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 65.944089 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'a7a11f69031d03b11a12cc12812f9a1a') in 0.008706 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.585 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.62 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.155 seconds +Domain Reload Profiling: 1738ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (392ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1156ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (690ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (488ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7659. +Memory consumption went from 201.0 MB to 200.8 MB. +Total: 13.726600 ms (FindLiveObjects: 0.369300 ms CreateObjectMapping: 0.169500 ms MarkObjects: 13.056900 ms DeleteObjects: 0.129800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.506 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.206 seconds +Domain Reload Profiling: 1710ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (283ms) + LoadAssemblies (347ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1206ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (774ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.1 KB). Loaded Objects now: 7674. +Memory consumption went from 201.2 MB to 201.1 MB. +Total: 15.251300 ms (FindLiveObjects: 0.430700 ms CreateObjectMapping: 0.280700 ms MarkObjects: 14.402300 ms DeleteObjects: 0.136800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 52.175273 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'f61bb85a05688efd581f4f48cfbef8ae') in 0.009074 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 50.836551 seconds. + path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt + artifactKey: Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/config01.txt using Guid(2ae8dd65757eda9499fd4559acc7d26f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'f8bea2b2effe15b9c3b381995dfcbf5d') in 0.000958 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 46.531005 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '8b0dc59ffa2ce9b39faf6379468ceb01') in 0.001172 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.516 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.205 seconds +Domain Reload Profiling: 1719ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (285ms) + LoadAssemblies (350ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1205ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (783ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (560ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7689. +Memory consumption went from 201.0 MB to 200.8 MB. +Total: 15.740200 ms (FindLiveObjects: 0.447000 ms CreateObjectMapping: 0.283500 ms MarkObjects: 14.855900 ms DeleteObjects: 0.152800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 79.231716 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'f395a553e3e66c8e663210b25fb70715') in 0.010044 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 2.993142 seconds. + path: Assets/Scripts/GASSamples/AI/AiDemo1.txt + artifactKey: Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/AI/AiDemo1.txt using Guid(efbb9ae85b44479fac84562240d86ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'fb2b7ec5631177e218e5a8cfe56eca62') in 0.001181 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.529 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.79 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.219 seconds +Domain Reload Profiling: 1746ms + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (367ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1219ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (788ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (563ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7704. +Memory consumption went from 201.0 MB to 200.8 MB. +Total: 14.390600 ms (FindLiveObjects: 0.403200 ms CreateObjectMapping: 0.184000 ms MarkObjects: 13.664900 ms DeleteObjects: 0.137400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.581 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.61 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.287 seconds +Domain Reload Profiling: 1865ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (381ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1288ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (845ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (602ms) + ProcessInitializeOnLoadMethodAttributes (153ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7719. +Memory consumption went from 201.2 MB to 201.1 MB. +Total: 15.001500 ms (FindLiveObjects: 0.488700 ms CreateObjectMapping: 0.191100 ms MarkObjects: 14.144500 ms DeleteObjects: 0.175600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace diff --git a/JNFrame2/Logs/AssetImportWorker1-prev.log b/JNFrame2/Logs/AssetImportWorker1-prev.log deleted file mode 100644 index 079dc0a1..00000000 --- a/JNFrame2/Logs/AssetImportWorker1-prev.log +++ /dev/null @@ -1,282 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.52f1 (1120fcb54228) revision 1122556'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\APP\UnityEdit\2022.3.52f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker1 --projectPath -D:/Jisol/JisolGame/JNFrame2 --logFile -Logs/AssetImportWorker1.log --srvPort -60422 -Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 -D:/Jisol/JisolGame/JNFrame2 -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [31196] Target information: - -Player connection [31196] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 4129852724 [EditorId] 4129852724 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" - -Player connection [31196] Host joined multi-casting on [225.0.0.222:54997]... -Player connection [31196] Host joined alternative multi-casting on [225.0.0.222:34997]... -[PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. -Refreshing native plugins compatible for Editor in 28.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.52f1 (1120fcb54228) -[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520) - Vendor: NVIDIA - VRAM: 5996 MB - Driver: 31.0.15.5176 -Initialize mono -Mono path[0] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Managed' -Mono path[1] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56120 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.008900 seconds. -- Loaded All Assemblies, in 0.394 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 387 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.618 seconds -Domain Reload Profiling: 1010ms - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (52ms) - LoadAllAssembliesAndSetupDomain (152ms) - LoadAssemblies (149ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (149ms) - TypeCache.Refresh (148ms) - TypeCache.ScanAssembly (137ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (619ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (584ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (450ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (92ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.984 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.29 ms, found 3 plugins. -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.090 seconds -Domain Reload Profiling: 2072ms - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (761ms) - LoadAssemblies (521ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (340ms) - TypeCache.Refresh (308ms) - TypeCache.ScanAssembly (283ms) - ScanForSourceGeneratedMonoScriptInfo (23ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1090ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (966ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (630ms) - ProcessInitializeOnLoadMethodAttributes (255ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5655 Unused Serialized files (Serialized files now loaded: 0) -Unloading 70 unused Assets / (201.8 KB). Loaded Objects now: 6172. -Memory consumption went from 197.9 MB to 197.7 MB. -Total: 16.596800 ms (FindLiveObjects: 0.315200 ms CreateObjectMapping: 0.195900 ms MarkObjects: 15.844000 ms DeleteObjects: 0.240400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.528 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 20.77 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.219 seconds -Domain Reload Profiling: 1745ms - BeginReloadAssembly (160ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (34ms) - LoadAllAssembliesAndSetupDomain (294ms) - LoadAssemblies (362ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (15ms) - TypeCache.Refresh (6ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1220ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (816ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (579ms) - ProcessInitializeOnLoadMethodAttributes (145ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 6187. -Memory consumption went from 195.4 MB to 195.2 MB. -Total: 15.096000 ms (FindLiveObjects: 0.389300 ms CreateObjectMapping: 0.264700 ms MarkObjects: 14.298500 ms DeleteObjects: 0.142600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame2/Logs/AssetImportWorker1.log b/JNFrame2/Logs/AssetImportWorker1.log index 9379b9c8..48193fdf 100644 --- a/JNFrame2/Logs/AssetImportWorker1.log +++ b/JNFrame2/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ D:/Jisol/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker1.log -srvPort -51578 +50803 Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 D:/Jisol/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,14 +49,14 @@ D:/Jisol/JisolGame/JNFrame2 "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [19032] Target information: +Player connection [3840] Target information: -Player connection [19032] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 3283643608 [EditorId] 3283643608 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +Player connection [3840] * "[IP] 192.168.31.216 [Port] 0 [Flags] 2 [Guid] 453757405 [EditorId] 453757405 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -Player connection [19032] Host joined multi-casting on [225.0.0.222:54997]... -Player connection [19032] Host joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [3840] Host joined multi-casting on [225.0.0.222:54997]... +Player connection [3840] Host joined alternative multi-casting on [225.0.0.222:34997]... [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. -Refreshing native plugins compatible for Editor in 61.56 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.61 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.52f1 (1120fcb54228) [Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Resources/UnitySubsystems @@ -72,47 +72,47 @@ Initialize mono Mono path[0] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/Managed' Mono path[1] = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/APP/UnityEdit/2022.3.52f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56080 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56960 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/APP/UnityEdit/2022.3.52f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.013568 seconds. -- Loaded All Assemblies, in 0.459 seconds +Registered in 0.013504 seconds. +- Loaded All Assemblies, in 0.563 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 443 ms +Android Extension - Scanning For ADB Devices 667 ms Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.677 seconds -Domain Reload Profiling: 1134ms - BeginReloadAssembly (189ms) +- Finished resetting the current domain, in 1.094 seconds +Domain Reload Profiling: 1654ms + BeginReloadAssembly (180ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (66ms) - LoadAllAssembliesAndSetupDomain (159ms) - LoadAssemblies (188ms) + RebuildCommonClasses (67ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (85ms) + LoadAllAssembliesAndSetupDomain (215ms) + LoadAssemblies (182ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (155ms) - TypeCache.Refresh (154ms) - TypeCache.ScanAssembly (140ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (208ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) ResolveRequiredComponents (0ms) - FinalizeReload (677ms) + FinalizeReload (1095ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (640ms) + SetupLoadedEditorAssemblies (1035ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (511ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (760ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (84ms) - ProcessInitializeOnLoadMethodAttributes (41ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (199ms) + ProcessInitializeOnLoadMethodAttributes (67ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,10 +121,10 @@ Domain Reload Profiling: 1134ms Worker process is ready to serve import requests Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.989 seconds +- Loaded All Assemblies, in 1.249 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 20.98 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.37 ms, found 3 plugins. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -140,136 +140,137 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.174 seconds -Domain Reload Profiling: 2161ms - BeginReloadAssembly (163ms) +- Finished resetting the current domain, in 2.000 seconds +Domain Reload Profiling: 3247ms + BeginReloadAssembly (221ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (19ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (746ms) - LoadAssemblies (591ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (919ms) + LoadAssemblies (676ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (266ms) - TypeCache.Refresh (238ms) - TypeCache.ScanAssembly (217ms) - ScanForSourceGeneratedMonoScriptInfo (19ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1175ms) + AnalyzeDomain (404ms) + TypeCache.Refresh (360ms) + TypeCache.ScanAssembly (324ms) + ScanForSourceGeneratedMonoScriptInfo (31ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2001ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1046ms) + SetupLoadedEditorAssemblies (1757ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (1205ms) + ProcessInitializeOnLoadMethodAttributes (378ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5655 Unused Serialized files (Serialized files now loaded: 0) +Unloading 70 unused Assets / (202.0 KB). Loaded Objects now: 6172. +Memory consumption went from 197.9 MB to 197.7 MB. +Total: 30.742200 ms (FindLiveObjects: 0.644100 ms CreateObjectMapping: 0.295800 ms MarkObjects: 29.304700 ms DeleteObjects: 0.494700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.570 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.34 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 1766ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (374ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (753ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (18ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (744ms) - ProcessInitializeOnLoadMethodAttributes (212ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5655 Unused Serialized files (Serialized files now loaded: 0) -Unloading 70 unused Assets / (201.6 KB). Loaded Objects now: 6172. -Memory consumption went from 198.0 MB to 197.8 MB. -Total: 13.939400 ms (FindLiveObjects: 0.327600 ms CreateObjectMapping: 0.254400 ms MarkObjects: 13.168200 ms DeleteObjects: 0.187800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.707 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 14.16 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.025 seconds -Domain Reload Profiling: 2729ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (423ms) - LoadAssemblies (517ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (22ms) - TypeCache.Refresh (9ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (11ms) - FinalizeReload (2026ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (858ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (614ms) - ProcessInitializeOnLoadMethodAttributes (150ms) - AfterProcessingInitializeOnLoad (10ms) + ProcessInitializeOnLoadAttributes (530ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.91 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.23 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6187. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 15.265600 ms (FindLiveObjects: 0.322700 ms CreateObjectMapping: 0.207900 ms MarkObjects: 14.545800 ms DeleteObjects: 0.188100 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 6188. +Memory consumption went from 195.4 MB to 195.2 MB. +Total: 15.188600 ms (FindLiveObjects: 0.301700 ms CreateObjectMapping: 0.182700 ms MarkObjects: 14.552900 ms DeleteObjects: 0.150600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -280,14 +281,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.702 seconds +- Loaded All Assemblies, in 0.594 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.35 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -303,56 +305,55 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.904 seconds -Domain Reload Profiling: 2605ms - BeginReloadAssembly (159ms) +- Finished resetting the current domain, in 1.171 seconds +Domain Reload Profiling: 1762ms + BeginReloadAssembly (166ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - RebuildCommonClasses (25ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (24ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (468ms) - LoadAssemblies (501ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (415ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (56ms) - TypeCache.Refresh (31ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (13ms) - FinalizeReload (1905ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1171ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (774ms) + SetupLoadedEditorAssemblies (708ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (529ms) - ProcessInitializeOnLoadMethodAttributes (166ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (482ms) + ProcessInitializeOnLoadMethodAttributes (145ms) AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.43 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 15.97 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6202. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 14.586600 ms (FindLiveObjects: 0.320500 ms CreateObjectMapping: 0.219400 ms MarkObjects: 13.853000 ms DeleteObjects: 0.192700 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6203. +Memory consumption went from 195.4 MB to 195.2 MB. +Total: 13.730700 ms (FindLiveObjects: 0.327100 ms CreateObjectMapping: 0.196000 ms MarkObjects: 13.082100 ms DeleteObjects: 0.124300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -363,15 +364,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.745 seconds +- Loaded All Assemblies, in 0.575 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.92 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 17.77 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -387,235 +388,58 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.812 seconds -Domain Reload Profiling: 2555ms - BeginReloadAssembly (185ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (477ms) - LoadAssemblies (545ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (47ms) - TypeCache.Refresh (26ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (13ms) - FinalizeReload (1813ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (712ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (506ms) - ProcessInitializeOnLoadMethodAttributes (125ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6217. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 13.369700 ms (FindLiveObjects: 0.330700 ms CreateObjectMapping: 0.172600 ms MarkObjects: 12.684100 ms DeleteObjects: 0.181500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.624 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.53 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.042 seconds -Domain Reload Profiling: 1664ms - BeginReloadAssembly (172ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (377ms) - LoadAssemblies (437ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (23ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1042ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (662ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (473ms) - ProcessInitializeOnLoadMethodAttributes (116ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6232. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 12.812400 ms (FindLiveObjects: 0.392400 ms CreateObjectMapping: 0.178700 ms MarkObjects: 12.110800 ms DeleteObjects: 0.129600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.596 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 13.56 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.130 seconds -Domain Reload Profiling: 1723ms - BeginReloadAssembly (155ms) +- Finished resetting the current domain, in 1.121 seconds +Domain Reload Profiling: 1694ms + BeginReloadAssembly (163ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (39ms) RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (48ms) - LoadAllAssembliesAndSetupDomain (352ms) - LoadAssemblies (395ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (399ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (45ms) - TypeCache.Refresh (26ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1130ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1121ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (727ms) + SetupLoadedEditorAssemblies (680ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (512ms) - ProcessInitializeOnLoadMethodAttributes (142ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (477ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (11ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.10 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.53 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6247. -Memory consumption went from 195.4 MB to 195.3 MB. -Total: 13.714500 ms (FindLiveObjects: 0.337700 ms CreateObjectMapping: 0.167800 ms MarkObjects: 13.066500 ms DeleteObjects: 0.141500 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6218. +Memory consumption went from 195.4 MB to 195.2 MB. +Total: 15.361400 ms (FindLiveObjects: 0.314400 ms CreateObjectMapping: 0.220300 ms MarkObjects: 14.637100 ms DeleteObjects: 0.188100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -623,16 +447,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.630 seconds +- Loaded All Assemblies, in 0.657 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.54 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -648,59 +471,60 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.202 seconds -Domain Reload Profiling: 1830ms - BeginReloadAssembly (185ms) +- Finished resetting the current domain, in 1.139 seconds +Domain Reload Profiling: 1792ms + BeginReloadAssembly (164ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) + CreateAndSetChildDomain (39ms) RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (371ms) - LoadAssemblies (428ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (470ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (51ms) - TypeCache.Refresh (31ms) - TypeCache.ScanAssembly (16ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1203ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1139ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (704ms) + SetupLoadedEditorAssemblies (697ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (497ms) - ProcessInitializeOnLoadMethodAttributes (125ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.91 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.21 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6262. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 14.520500 ms (FindLiveObjects: 0.302900 ms CreateObjectMapping: 0.181400 ms MarkObjects: 13.871100 ms DeleteObjects: 0.164200 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6233. +Memory consumption went from 195.4 MB to 195.3 MB. +Total: 12.764200 ms (FindLiveObjects: 0.282200 ms CreateObjectMapping: 0.164300 ms MarkObjects: 12.193000 ms DeleteObjects: 0.123700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -708,15 +532,16 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.642 seconds +- Loaded All Assemblies, in 0.705 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.26 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -732,56 +557,141 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.052 seconds -Domain Reload Profiling: 1690ms - BeginReloadAssembly (188ms) +- Finished resetting the current domain, in 1.113 seconds +Domain Reload Profiling: 1814ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (56ms) + LoadAllAssembliesAndSetupDomain (411ms) + LoadAssemblies (494ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1113ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (462ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 23.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6248. +Memory consumption went from 195.4 MB to 195.2 MB. +Total: 18.753500 ms (FindLiveObjects: 0.339300 ms CreateObjectMapping: 0.208600 ms MarkObjects: 18.034000 ms DeleteObjects: 0.170500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.698 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.50 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1848ms + BeginReloadAssembly (201ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (49ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (373ms) - LoadAssemblies (438ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (484ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (44ms) - TypeCache.Refresh (24ms) - TypeCache.ScanAssembly (12ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) ScanForSourceGeneratedMonoScriptInfo (9ms) ResolveRequiredComponents (10ms) - FinalizeReload (1052ms) + FinalizeReload (1153ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (664ms) + SetupLoadedEditorAssemblies (696ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (15ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (463ms) - ProcessInitializeOnLoadMethodAttributes (117ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (487ms) + ProcessInitializeOnLoadMethodAttributes (127ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (8ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.98 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.14 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6277. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 13.071800 ms (FindLiveObjects: 0.299500 ms CreateObjectMapping: 0.183900 ms MarkObjects: 12.444100 ms DeleteObjects: 0.143500 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6263. +Memory consumption went from 195.4 MB to 195.3 MB. +Total: 13.311000 ms (FindLiveObjects: 0.313400 ms CreateObjectMapping: 0.178400 ms MarkObjects: 12.650800 ms DeleteObjects: 0.167200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:JNGame.Runtime: 73bcf7d1f91f7197484f6de443b435f2 -> fbafe661d4c0a5c173403fda201be881 custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: a145eac0cb3f1e68a06703c41539a0fb -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -792,15 +702,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.634 seconds +- Loaded All Assemblies, in 0.578 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.00 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.94 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -816,54 +726,56 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.686 seconds -Domain Reload Profiling: 2318ms - BeginReloadAssembly (158ms) +- Finished resetting the current domain, in 1.275 seconds +Domain Reload Profiling: 1851ms + BeginReloadAssembly (171ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (34ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (447ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (391ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (21ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1686ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1276ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (681ms) + SetupLoadedEditorAssemblies (799ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (2ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (484ms) - ProcessInitializeOnLoadMethodAttributes (117ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(2ac7f2bb23fb47efb3a21d1160e962ac) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs") state(2) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.51 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.74 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6292. -Memory consumption went from 195.5 MB to 195.4 MB. -Total: 13.165800 ms (FindLiveObjects: 0.316700 ms CreateObjectMapping: 0.167700 ms MarkObjects: 12.535400 ms DeleteObjects: 0.144800 ms) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6277. +Memory consumption went from 195.4 MB to 195.3 MB. +Total: 13.640800 ms (FindLiveObjects: 0.306400 ms CreateObjectMapping: 0.160900 ms MarkObjects: 12.906800 ms DeleteObjects: 0.265300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> @@ -874,15 +786,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.565 seconds +- Loaded All Assemblies, in 0.585 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 12.69 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.70 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -898,60 +810,144 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.218 seconds -Domain Reload Profiling: 1780ms - BeginReloadAssembly (155ms) +- Finished resetting the current domain, in 1.213 seconds +Domain Reload Profiling: 1795ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (336ms) + LoadAssemblies (404ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1213ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6293. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 14.176200 ms (FindLiveObjects: 0.374500 ms CreateObjectMapping: 0.170300 ms MarkObjects: 13.485400 ms DeleteObjects: 0.144500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.581 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.21 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.126 seconds +Domain Reload Profiling: 1704ms + BeginReloadAssembly (171ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (39ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (320ms) - LoadAssemblies (371ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (400ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1218ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1126ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (708ms) + SetupLoadedEditorAssemblies (696ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (507ms) - ProcessInitializeOnLoadMethodAttributes (121ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Script is not up to date after domain reload: guid(81bd213a0dba8f645b8ddd263e34a884) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/BehaviorTree.cs") state(2) + AwakeInstancesAfterBackupRestoration (8ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.24 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6307. -Memory consumption went from 195.5 MB to 195.4 MB. -Total: 13.338900 ms (FindLiveObjects: 0.327800 ms CreateObjectMapping: 0.164100 ms MarkObjects: 12.707400 ms DeleteObjects: 0.138300 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6308. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 14.017200 ms (FindLiveObjects: 0.340600 ms CreateObjectMapping: 0.174400 ms MarkObjects: 13.339900 ms DeleteObjects: 0.161000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -959,16 +955,15 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.501 seconds +- Loaded All Assemblies, in 0.587 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.45 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.94 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -984,59 +979,60 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.101 seconds -Domain Reload Profiling: 1599ms - BeginReloadAssembly (153ms) +- Finished resetting the current domain, in 1.064 seconds +Domain Reload Profiling: 1649ms + BeginReloadAssembly (163ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (36ms) - LoadAllAssembliesAndSetupDomain (276ms) - LoadAssemblies (340ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (406ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (17ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1101ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1064ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (663ms) + SetupLoadedEditorAssemblies (645ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (466ms) - ProcessInitializeOnLoadMethodAttributes (108ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (453ms) + ProcessInitializeOnLoadMethodAttributes (116ms) AfterProcessingInitializeOnLoad (7ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (7ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 10.89 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 12.76 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6322. -Memory consumption went from 195.5 MB to 195.3 MB. -Total: 12.809400 ms (FindLiveObjects: 0.313000 ms CreateObjectMapping: 0.185200 ms MarkObjects: 12.175500 ms DeleteObjects: 0.134700 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6323. +Memory consumption went from 195.4 MB to 195.3 MB. +Total: 13.005700 ms (FindLiveObjects: 0.287900 ms CreateObjectMapping: 0.167000 ms MarkObjects: 12.416500 ms DeleteObjects: 0.133200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> @@ -1044,16 +1040,351 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.608 seconds +- Loaded All Assemblies, in 0.585 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 11.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 16.98 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.083 seconds +Domain Reload Profiling: 1664ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (339ms) + LoadAssemblies (401ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1083ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (662ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (468ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6338. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 13.024700 ms (FindLiveObjects: 0.340200 ms CreateObjectMapping: 0.166100 ms MarkObjects: 12.362800 ms DeleteObjects: 0.154400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.692 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 21.16 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.184 seconds +Domain Reload Profiling: 1874ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (473ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1185ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 17.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6353. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 13.513200 ms (FindLiveObjects: 0.352200 ms CreateObjectMapping: 0.177300 ms MarkObjects: 12.854700 ms DeleteObjects: 0.128100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.625 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.32 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.121 seconds +Domain Reload Profiling: 1743ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (424ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1121ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (678ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (471ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6368. +Memory consumption went from 195.5 MB to 195.4 MB. +Total: 13.861800 ms (FindLiveObjects: 0.327900 ms CreateObjectMapping: 0.232700 ms MarkObjects: 13.154900 ms DeleteObjects: 0.144900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3a5480985d2f336c22944170901a4859 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.699 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.54 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.193 seconds +Domain Reload Profiling: 1889ms + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (472ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1194ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (757ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6383. +Memory consumption went from 195.5 MB to 195.4 MB. +Total: 13.131200 ms (FindLiveObjects: 0.315400 ms CreateObjectMapping: 0.175100 ms MarkObjects: 12.506300 ms DeleteObjects: 0.133500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.549 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.60 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -1070,916 +1401,855 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) Mono: successfully reloaded assembly - Finished resetting the current domain, in 1.100 seconds -Domain Reload Profiling: 1706ms - BeginReloadAssembly (173ms) +Domain Reload Profiling: 1647ms + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (373ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1101ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (464ms) + ProcessInitializeOnLoadMethodAttributes (112ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6398. +Memory consumption went from 195.5 MB to 195.3 MB. +Total: 14.106700 ms (FindLiveObjects: 0.338200 ms CreateObjectMapping: 0.195600 ms MarkObjects: 13.416800 ms DeleteObjects: 0.154800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.611 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.81 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.064 seconds +Domain Reload Profiling: 1673ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (419ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1064ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (648ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (460ms) + ProcessInitializeOnLoadMethodAttributes (113ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6413. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 12.904900 ms (FindLiveObjects: 0.301900 ms CreateObjectMapping: 0.174700 ms MarkObjects: 12.289300 ms DeleteObjects: 0.138100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.795 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 25.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.340 seconds +Domain Reload Profiling: 2132ms + BeginReloadAssembly (261ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (429ms) + LoadAssemblies (558ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1341ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (865ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (577ms) + ProcessInitializeOnLoadMethodAttributes (201ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6427. +Memory consumption went from 195.5 MB to 195.4 MB. +Total: 14.777500 ms (FindLiveObjects: 0.334300 ms CreateObjectMapping: 0.183900 ms MarkObjects: 14.106900 ms DeleteObjects: 0.151100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.607 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.45 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.181 seconds +Domain Reload Profiling: 1786ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1181ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (696ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (496ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6443. +Memory consumption went from 195.6 MB to 195.5 MB. +Total: 13.552000 ms (FindLiveObjects: 0.316000 ms CreateObjectMapping: 0.181500 ms MarkObjects: 12.894500 ms DeleteObjects: 0.158600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.586 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.22 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1736ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1153ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (483ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6458. +Memory consumption went from 195.6 MB to 195.5 MB. +Total: 13.711800 ms (FindLiveObjects: 0.315400 ms CreateObjectMapping: 0.222800 ms MarkObjects: 13.022800 ms DeleteObjects: 0.149700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.653 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 22.05 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.382 seconds +Domain Reload Profiling: 2033ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (420ms) + LoadAssemblies (451ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (35ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1383ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (650ms) + ProcessInitializeOnLoadMethodAttributes (168ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6472. +Memory consumption went from 195.6 MB to 195.4 MB. +Total: 15.149100 ms (FindLiveObjects: 0.428100 ms CreateObjectMapping: 0.194800 ms MarkObjects: 14.314000 ms DeleteObjects: 0.210500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.573 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.84 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.072 seconds +Domain Reload Profiling: 1642ms + BeginReloadAssembly (162ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (358ms) - LoadAssemblies (425ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (23ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1101ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (660ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (462ms) - ProcessInitializeOnLoadMethodAttributes (114ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6337. -Memory consumption went from 195.6 MB to 195.4 MB. -Total: 13.451300 ms (FindLiveObjects: 0.305500 ms CreateObjectMapping: 0.207300 ms MarkObjects: 12.749400 ms DeleteObjects: 0.188000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.814 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 16.53 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.454 seconds -Domain Reload Profiling: 3266ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (569ms) - LoadAssemblies (494ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (172ms) - TypeCache.Refresh (130ms) - TypeCache.ScanAssembly (95ms) - ScanForSourceGeneratedMonoScriptInfo (33ms) - ResolveRequiredComponents (7ms) - FinalizeReload (2454ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1142ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (901ms) - ProcessInitializeOnLoadMethodAttributes (150ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 15.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.3 KB). Loaded Objects now: 6352. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 14.701000 ms (FindLiveObjects: 0.352600 ms CreateObjectMapping: 0.212300 ms MarkObjects: 13.995300 ms DeleteObjects: 0.139400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.789 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 21.23 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.455 seconds -Domain Reload Profiling: 3242ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (517ms) - LoadAssemblies (580ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (23ms) - TypeCache.ScanAssembly (12ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2455ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1002ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (732ms) - ProcessInitializeOnLoadMethodAttributes (158ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6367. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 20.034100 ms (FindLiveObjects: 0.319000 ms CreateObjectMapping: 0.232600 ms MarkObjects: 19.283900 ms DeleteObjects: 0.197400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.698 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 20.46 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.954 seconds -Domain Reload Profiling: 2647ms - BeginReloadAssembly (193ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (16ms) - initialDomainReloadingComplete (53ms) - LoadAllAssembliesAndSetupDomain (403ms) - LoadAssemblies (465ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1954ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (806ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (561ms) - ProcessInitializeOnLoadMethodAttributes (138ms) - AfterProcessingInitializeOnLoad (28ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.01 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6382. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 15.028100 ms (FindLiveObjects: 0.339400 ms CreateObjectMapping: 0.539000 ms MarkObjects: 13.947800 ms DeleteObjects: 0.200400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.617 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 18.64 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 3.589 seconds -Domain Reload Profiling: 5207ms - BeginReloadAssembly (529ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (304ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (993ms) - LoadAssemblies (1030ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (103ms) - TypeCache.Refresh (58ms) - TypeCache.ScanAssembly (19ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (24ms) - FinalizeReload (3590ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1518ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (930ms) - ProcessInitializeOnLoadMethodAttributes (484ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Script is not up to date after domain reload: guid(93d2405f000836c41afde6b189b28771) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs") state(2) -Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.78 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5638 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6396. -Memory consumption went from 195.6 MB to 195.4 MB. -Total: 20.059500 ms (FindLiveObjects: 0.720700 ms CreateObjectMapping: 0.387600 ms MarkObjects: 18.209300 ms DeleteObjects: 0.739900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.777 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 17.48 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.615 seconds -Domain Reload Profiling: 2389ms - BeginReloadAssembly (200ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (49ms) - LoadAllAssembliesAndSetupDomain (488ms) - LoadAssemblies (546ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (52ms) - TypeCache.Refresh (30ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1616ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1014ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (680ms) - ProcessInitializeOnLoadMethodAttributes (230ms) - AfterProcessingInitializeOnLoad (17ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 26.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6412. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 22.159000 ms (FindLiveObjects: 1.017900 ms CreateObjectMapping: 0.375900 ms MarkObjects: 20.581000 ms DeleteObjects: 0.181100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.873 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 24.79 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.506 seconds -Domain Reload Profiling: 3376ms - BeginReloadAssembly (248ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (81ms) - RebuildCommonClasses (67ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (75ms) - LoadAllAssembliesAndSetupDomain (469ms) - LoadAssemblies (548ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (45ms) - TypeCache.Refresh (25ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (9ms) - FinalizeReload (2507ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (901ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (642ms) - ProcessInitializeOnLoadMethodAttributes (154ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Script is not up to date after domain reload: guid(93d2405f000836c41afde6b189b28771) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/Utils/XmlUtils.cs") state(2) -Script is not up to date after domain reload: guid(2a6d4e191dd04e18be61de59dbc9a36c) path("Assets/HotScripts/JNGame/Runtime/BehaviorTreeSlayer/JNBehaviorTree.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 17.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5637 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6425. -Memory consumption went from 195.7 MB to 195.5 MB. -Total: 20.400000 ms (FindLiveObjects: 0.376800 ms CreateObjectMapping: 0.204600 ms MarkObjects: 19.349600 ms DeleteObjects: 0.466400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.691 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 25.43 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.171 seconds -Domain Reload Profiling: 3859ms - BeginReloadAssembly (288ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - RebuildCommonClasses (38ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (58ms) - LoadAllAssembliesAndSetupDomain (1291ms) - LoadAssemblies (1434ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (48ms) - TypeCache.Refresh (30ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (9ms) - FinalizeReload (2172ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (902ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (647ms) - ProcessInitializeOnLoadMethodAttributes (148ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 13.95 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 6442. -Memory consumption went from 195.8 MB to 195.6 MB. -Total: 16.688400 ms (FindLiveObjects: 0.378200 ms CreateObjectMapping: 0.255300 ms MarkObjects: 15.792900 ms DeleteObjects: 0.259900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.693 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 14.90 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.850 seconds -Domain Reload Profiling: 2541ms - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (40ms) - LoadAllAssembliesAndSetupDomain (436ms) - LoadAssemblies (485ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (338ms) + LoadAssemblies (392ms) RebuildTransferFunctionScriptingTraits (0ms) AnalyzeDomain (42ms) - TypeCache.Refresh (24ms) + TypeCache.Refresh (25ms) TypeCache.ScanAssembly (13ms) ScanForSourceGeneratedMonoScriptInfo (7ms) ResolveRequiredComponents (9ms) - FinalizeReload (1850ms) + FinalizeReload (1072ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (755ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (473ms) + ProcessInitializeOnLoadMethodAttributes (113ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6488. +Memory consumption went from 195.7 MB to 195.5 MB. +Total: 13.404700 ms (FindLiveObjects: 0.333000 ms CreateObjectMapping: 0.156300 ms MarkObjects: 12.775500 ms DeleteObjects: 0.138900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.635 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.15 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.111 seconds +Domain Reload Profiling: 1743ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1111ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (662ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (465ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 17.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6503. +Memory consumption went from 195.7 MB to 195.5 MB. +Total: 19.933200 ms (FindLiveObjects: 0.535100 ms CreateObjectMapping: 0.249600 ms MarkObjects: 18.831100 ms DeleteObjects: 0.315400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 3745.210790 seconds. + path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/ChangeColor.cs + artifactKey: Guid(f0fa58ba969d18d40b33910ebdeee917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/ChangeColor.cs using Guid(f0fa58ba969d18d40b33910ebdeee917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: '39d43c4fda0fe9a78520129ecd2f93a4') in 0.006296 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 677.846169 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset + artifactKey: Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset using Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'bbf15827580efa66f4dcf9db6ca3ad5d') in 0.018165 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.586 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.27 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.223 seconds +Domain Reload Profiling: 1807ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (401ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1223ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (700ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (17ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (544ms) - ProcessInitializeOnLoadMethodAttributes (128ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6519. +Memory consumption went from 195.4 MB to 195.3 MB. +Total: 13.127100 ms (FindLiveObjects: 0.337500 ms CreateObjectMapping: 0.184400 ms MarkObjects: 12.462600 ms DeleteObjects: 0.141600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 414c349925ee02a8a6d7fb5f902759e7 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.554 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.01 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.072 seconds +Domain Reload Profiling: 1624ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (374ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1072ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (662ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (463ms) + ProcessInitializeOnLoadMethodAttributes (119ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 15.60 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6457. -Memory consumption went from 195.8 MB to 195.6 MB. -Total: 14.255100 ms (FindLiveObjects: 0.509500 ms CreateObjectMapping: 0.271700 ms MarkObjects: 13.333800 ms DeleteObjects: 0.138600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.985 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 24.23 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.198 seconds -Domain Reload Profiling: 3180ms - BeginReloadAssembly (322ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (120ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (51ms) - LoadAllAssembliesAndSetupDomain (561ms) - LoadAssemblies (659ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (46ms) - TypeCache.Refresh (28ms) - TypeCache.ScanAssembly (11ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (9ms) - FinalizeReload (2198ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (902ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (632ms) - ProcessInitializeOnLoadMethodAttributes (162ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 16.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6472. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6534. Memory consumption went from 195.7 MB to 195.5 MB. -Total: 20.340200 ms (FindLiveObjects: 0.675900 ms CreateObjectMapping: 0.287400 ms MarkObjects: 19.163300 ms DeleteObjects: 0.211800 ms) +Total: 13.804700 ms (FindLiveObjects: 0.374800 ms CreateObjectMapping: 0.209100 ms MarkObjects: 13.058500 ms DeleteObjects: 0.160700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.746 seconds +- Loaded All Assemblies, in 0.506 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 17.59 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 16.50 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -1995,179 +2265,74 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.106 seconds -Domain Reload Profiling: 2851ms - BeginReloadAssembly (190ms) +- Finished resetting the current domain, in 1.271 seconds +Domain Reload Profiling: 1775ms + BeginReloadAssembly (151ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - RebuildCommonClasses (28ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (475ms) - LoadAssemblies (553ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (284ms) + LoadAssemblies (351ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (22ms) - TypeCache.Refresh (10ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (9ms) - FinalizeReload (2107ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (935ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (665ms) - ProcessInitializeOnLoadMethodAttributes (172ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 14.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6487. -Memory consumption went from 195.8 MB to 195.6 MB. -Total: 19.479900 ms (FindLiveObjects: 0.603800 ms CreateObjectMapping: 0.352000 ms MarkObjects: 18.222100 ms DeleteObjects: 0.300500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 - custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace -======================================================================== -Received Prepare -Caller must complete domain reload -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.649 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 19.45 ms, found 3 plugins. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -AutoRegister -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:Log (object) -JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) -System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) - -(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) - -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.326 seconds -Domain Reload Profiling: 1974ms - BeginReloadAssembly (190ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (40ms) - LoadAllAssembliesAndSetupDomain (382ms) - LoadAssemblies (460ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (24ms) - TypeCache.Refresh (14ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) TypeCache.ScanAssembly (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (8ms) - FinalizeReload (1326ms) + FinalizeReload (1272ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (875ms) + SetupLoadedEditorAssemblies (808ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (18ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (604ms) - ProcessInitializeOnLoadMethodAttributes (178ms) + ProcessInitializeOnLoadAttributes (577ms) + ProcessInitializeOnLoadMethodAttributes (138ms) AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 15.59 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 14.15 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6502. -Memory consumption went from 195.8 MB to 195.6 MB. -Total: 20.105100 ms (FindLiveObjects: 0.448600 ms CreateObjectMapping: 0.284500 ms MarkObjects: 19.215900 ms DeleteObjects: 0.154900 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6549. +Memory consumption went from 195.6 MB to 195.5 MB. +Total: 14.694900 ms (FindLiveObjects: 0.348500 ms CreateObjectMapping: 0.189600 ms MarkObjects: 14.006600 ms DeleteObjects: 0.149100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): - custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 - custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> - custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 - custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 - custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 - custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.665 seconds +- Loaded All Assemblies, in 0.507 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 23.13 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 17.54 ms, found 3 plugins. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server @@ -2183,48 +2348,384 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.668 seconds -Domain Reload Profiling: 2330ms - BeginReloadAssembly (183ms) +- Finished resetting the current domain, in 1.199 seconds +Domain Reload Profiling: 1703ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (282ms) + LoadAssemblies (351ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (789ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6564. +Memory consumption went from 195.7 MB to 195.5 MB. +Total: 15.343800 ms (FindLiveObjects: 0.333100 ms CreateObjectMapping: 0.184300 ms MarkObjects: 14.607100 ms DeleteObjects: 0.218500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.517 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 20.22 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.207 seconds +Domain Reload Profiling: 1722ms + BeginReloadAssembly (150ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (40ms) - LoadAllAssembliesAndSetupDomain (403ms) - LoadAssemblies (470ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (346ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (34ms) - TypeCache.Refresh (20ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1668ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1208ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1069ms) + SetupLoadedEditorAssemblies (774ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (766ms) - ProcessInitializeOnLoadMethodAttributes (204ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) +Script is not up to date after domain reload: guid(321af3379125465380073b2a04a1b1e2) path("Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs") state(2) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 15.70 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.75 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 6517. +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6578. +Memory consumption went from 195.7 MB to 195.5 MB. +Total: 14.049400 ms (FindLiveObjects: 0.310600 ms CreateObjectMapping: 0.172800 ms MarkObjects: 13.375500 ms DeleteObjects: 0.189400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.512 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.121 seconds +Domain Reload Profiling: 1632ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (348ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1122ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (713ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (504ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6594. +Memory consumption went from 195.7 MB to 195.6 MB. +Total: 13.875800 ms (FindLiveObjects: 0.337200 ms CreateObjectMapping: 0.186400 ms MarkObjects: 13.207200 ms DeleteObjects: 0.144100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.562 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.67 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.169 seconds +Domain Reload Profiling: 1729ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (376ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1170ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (739ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6609. +Memory consumption went from 195.7 MB to 195.6 MB. +Total: 13.561400 ms (FindLiveObjects: 0.339600 ms CreateObjectMapping: 0.175900 ms MarkObjects: 12.899300 ms DeleteObjects: 0.145600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.769 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.85 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.414 seconds +Domain Reload Profiling: 2180ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (521ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (163ms) + TypeCache.Refresh (133ms) + TypeCache.ScanAssembly (114ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1414ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (860ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (611ms) + ProcessInitializeOnLoadMethodAttributes (155ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6624. Memory consumption went from 195.8 MB to 195.6 MB. -Total: 17.995200 ms (FindLiveObjects: 0.507700 ms CreateObjectMapping: 0.206000 ms MarkObjects: 17.088000 ms DeleteObjects: 0.192300 ms) +Total: 16.340500 ms (FindLiveObjects: 0.686700 ms CreateObjectMapping: 0.170400 ms MarkObjects: 15.241600 ms DeleteObjects: 0.239800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2235,6 +2736,669 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.594 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.21 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.150 seconds +Domain Reload Profiling: 1741ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (404ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (720ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (522ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6639. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 13.713900 ms (FindLiveObjects: 0.329800 ms CreateObjectMapping: 0.176300 ms MarkObjects: 13.041800 ms DeleteObjects: 0.164900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.666 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.33 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.233 seconds +Domain Reload Profiling: 1897ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (480ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1233ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (781ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6654. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 13.683900 ms (FindLiveObjects: 0.329200 ms CreateObjectMapping: 0.215000 ms MarkObjects: 12.994700 ms DeleteObjects: 0.144100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.598 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.30 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.159 seconds +Domain Reload Profiling: 1755ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (348ms) + LoadAssemblies (409ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1159ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (728ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (518ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6669. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 14.127200 ms (FindLiveObjects: 0.384500 ms CreateObjectMapping: 0.181600 ms MarkObjects: 13.399500 ms DeleteObjects: 0.160400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.603 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.67 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.092 seconds +Domain Reload Profiling: 1692ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (409ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1092ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (457ms) + ProcessInitializeOnLoadMethodAttributes (117ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6684. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 13.425700 ms (FindLiveObjects: 0.478000 ms CreateObjectMapping: 0.265000 ms MarkObjects: 12.542400 ms DeleteObjects: 0.137500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.618 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.69 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 1814ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (412ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1198ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (763ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6699. +Memory consumption went from 195.8 MB to 195.7 MB. +Total: 13.866900 ms (FindLiveObjects: 0.379300 ms CreateObjectMapping: 0.233800 ms MarkObjects: 13.105500 ms DeleteObjects: 0.147100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.546 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.094 seconds +Domain Reload Profiling: 1638ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (302ms) + LoadAssemblies (368ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1094ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (664ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (469ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6714. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 13.381200 ms (FindLiveObjects: 0.331500 ms CreateObjectMapping: 0.174400 ms MarkObjects: 12.698100 ms DeleteObjects: 0.176100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.668 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.28 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.170 seconds +Domain Reload Profiling: 1836ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (419ms) + LoadAssemblies (476ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1171ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (469ms) + ProcessInitializeOnLoadMethodAttributes (118ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6729. +Memory consumption went from 195.9 MB to 195.8 MB. +Total: 13.823300 ms (FindLiveObjects: 0.341000 ms CreateObjectMapping: 0.196100 ms MarkObjects: 13.148400 ms DeleteObjects: 0.136500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> @@ -2252,13 +3416,106 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 4505391364135c66313067ff8fa0023c -> d73c8752a483668df486793fa60e13b3 custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Caller must complete domain reload Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.818 seconds +- Loaded All Assemblies, in 0.669 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.86 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.277 seconds +Domain Reload Profiling: 1942ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (53ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (462ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1277ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (748ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 18.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6745. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 17.241700 ms (FindLiveObjects: 0.447500 ms CreateObjectMapping: 0.222600 ms MarkObjects: 16.338100 ms DeleteObjects: 0.232200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found Refreshing native plugins compatible for Editor in 14.31 ms, found 3 plugins. @@ -2277,48 +3534,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.008 seconds -Domain Reload Profiling: 3827ms - BeginReloadAssembly (440ms) +- Finished resetting the current domain, in 1.384 seconds +Domain Reload Profiling: 2038ms + BeginReloadAssembly (194ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (19ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (242ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (40ms) - LoadAllAssembliesAndSetupDomain (1302ms) - LoadAssemblies (1302ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (451ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (105ms) - TypeCache.Refresh (64ms) - TypeCache.ScanAssembly (18ms) - ScanForSourceGeneratedMonoScriptInfo (27ms) - ResolveRequiredComponents (13ms) - FinalizeReload (2008ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1384ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (724ms) + SetupLoadedEditorAssemblies (888ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) + InitializePlatformSupportModulesInManaged (17ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (501ms) - ProcessInitializeOnLoadMethodAttributes (138ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (645ms) + ProcessInitializeOnLoadMethodAttributes (148ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (8ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 12.61 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.86 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5639 Unused Serialized files (Serialized files now loaded: 0) -Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 6532. -Memory consumption went from 195.8 MB to 195.7 MB. -Total: 15.203900 ms (FindLiveObjects: 0.346500 ms CreateObjectMapping: 0.276800 ms MarkObjects: 14.406300 ms DeleteObjects: 0.173300 ms) +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6760. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 14.959900 ms (FindLiveObjects: 0.355000 ms CreateObjectMapping: 0.196300 ms MarkObjects: 14.227300 ms DeleteObjects: 0.180100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2329,6 +3586,7 @@ AssetImportParameters requested are different than current active one (requested custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> @@ -2342,6 +3600,5901 @@ AssetImportParameters requested are different than current active one (requested custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:scripting/monoscript/fileName/BehaviorTree.cs: 5fb746c8d810be5bee960d4f3e67f6e1 -> 541122c79c9d317b8bd976a35a7ce299 + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.617 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 19.49 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.270 seconds +Domain Reload Profiling: 1885ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1270ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (789ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (552ms) + ProcessInitializeOnLoadMethodAttributes (145ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(11fd831585c84672a7b5f00e86be7d26) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6774. +Memory consumption went from 195.9 MB to 195.7 MB. +Total: 14.823000 ms (FindLiveObjects: 0.346900 ms CreateObjectMapping: 0.175300 ms MarkObjects: 14.145300 ms DeleteObjects: 0.154000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.49 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.221 seconds +Domain Reload Profiling: 1867ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (460ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1221ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (753ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6790. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 13.766800 ms (FindLiveObjects: 0.348200 ms CreateObjectMapping: 0.190400 ms MarkObjects: 13.082800 ms DeleteObjects: 0.144200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.583 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.27 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1792ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (336ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1212ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (760ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (545ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6806. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 14.879100 ms (FindLiveObjects: 0.392200 ms CreateObjectMapping: 0.287200 ms MarkObjects: 14.037100 ms DeleteObjects: 0.161000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.63 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.252 seconds +Domain Reload Profiling: 1883ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1252ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (772ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Script is not up to date after domain reload: guid(4f5e99e31c984d56a40398119595b219) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiTreeNode.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6820. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 22.082000 ms (FindLiveObjects: 2.388200 ms CreateObjectMapping: 3.501400 ms MarkObjects: 16.024200 ms DeleteObjects: 0.166600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.557 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.03 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.232 seconds +Domain Reload Profiling: 1787ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (380ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1233ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (780ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (548ms) + ProcessInitializeOnLoadMethodAttributes (142ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6836. +Memory consumption went from 196.0 MB to 195.9 MB. +Total: 16.901000 ms (FindLiveObjects: 0.393400 ms CreateObjectMapping: 0.239800 ms MarkObjects: 16.088000 ms DeleteObjects: 0.178600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.620 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.47 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.162 seconds +Domain Reload Profiling: 1779ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1162ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (682ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (118ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6851. +Memory consumption went from 196.0 MB to 195.8 MB. +Total: 13.321400 ms (FindLiveObjects: 0.373000 ms CreateObjectMapping: 0.184300 ms MarkObjects: 12.621100 ms DeleteObjects: 0.142300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.664 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.75 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.163 seconds +Domain Reload Profiling: 1824ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (440ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (62ms) + TypeCache.Refresh (45ms) + TypeCache.ScanAssembly (28ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1163ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (671ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (467ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6866. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.637000 ms (FindLiveObjects: 0.347600 ms CreateObjectMapping: 0.275800 ms MarkObjects: 12.813500 ms DeleteObjects: 0.199100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.20 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.219 seconds +Domain Reload Profiling: 1865ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (417ms) + LoadAssemblies (424ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (81ms) + TypeCache.Refresh (48ms) + TypeCache.ScanAssembly (28ms) + ScanForSourceGeneratedMonoScriptInfo (18ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1220ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (695ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (492ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6881. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.648400 ms (FindLiveObjects: 0.386000 ms CreateObjectMapping: 0.210400 ms MarkObjects: 12.900700 ms DeleteObjects: 0.150100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.675 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.90 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.170 seconds +Domain Reload Profiling: 1842ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (475ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (54ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (17ms) + FinalizeReload (1171ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (473ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6896. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.489700 ms (FindLiveObjects: 0.399200 ms CreateObjectMapping: 0.194000 ms MarkObjects: 12.760300 ms DeleteObjects: 0.135300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.562 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.31 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.331 seconds +Domain Reload Profiling: 1891ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (385ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1332ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (718ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (515ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6911. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.333600 ms (FindLiveObjects: 0.388700 ms CreateObjectMapping: 0.194900 ms MarkObjects: 12.598100 ms DeleteObjects: 0.150600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.590 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.84 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.160 seconds +Domain Reload Profiling: 1747ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (353ms) + LoadAssemblies (396ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1161ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (688ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (490ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 6926. +Memory consumption went from 196.0 MB to 195.9 MB. +Total: 13.769500 ms (FindLiveObjects: 0.355500 ms CreateObjectMapping: 0.180800 ms MarkObjects: 13.090600 ms DeleteObjects: 0.141500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.564 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.34 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.166 seconds +Domain Reload Profiling: 1727ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (377ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1166ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (474ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6941. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.530300 ms (FindLiveObjects: 0.371800 ms CreateObjectMapping: 0.179500 ms MarkObjects: 12.837200 ms DeleteObjects: 0.140800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.624 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 11.99 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.168 seconds +Domain Reload Profiling: 1790ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1169ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (673ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (477ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 6956. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 14.071400 ms (FindLiveObjects: 0.338200 ms CreateObjectMapping: 0.254900 ms MarkObjects: 13.335500 ms DeleteObjects: 0.141800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.605 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.35 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.339 seconds +Domain Reload Profiling: 1941ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1339ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (727ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (520ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 6971. +Memory consumption went from 196.1 MB to 196.0 MB. +Total: 15.766100 ms (FindLiveObjects: 0.355500 ms CreateObjectMapping: 0.173300 ms MarkObjects: 15.074200 ms DeleteObjects: 0.161900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.591 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.51 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 1783ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (401ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1194ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (712ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (501ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 6986. +Memory consumption went from 196.1 MB to 196.0 MB. +Total: 13.746400 ms (FindLiveObjects: 0.415500 ms CreateObjectMapping: 0.225300 ms MarkObjects: 12.956700 ms DeleteObjects: 0.147900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.689 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.51 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.760 seconds +Domain Reload Profiling: 2446ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (421ms) + LoadAssemblies (484ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1761ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (664ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (464ms) + ProcessInitializeOnLoadMethodAttributes (119ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7001. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.288000 ms (FindLiveObjects: 0.344400 ms CreateObjectMapping: 0.221000 ms MarkObjects: 12.517300 ms DeleteObjects: 0.204100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.655 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.92 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.886 seconds +Domain Reload Profiling: 2539ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1886ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (707ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (496ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(11fd831585c84672a7b5f00e86be7d26) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/AI/AiLog.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 18.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (174.0 KB). Loaded Objects now: 7015. +Memory consumption went from 196.1 MB to 196.0 MB. +Total: 14.402000 ms (FindLiveObjects: 0.350900 ms CreateObjectMapping: 0.177300 ms MarkObjects: 13.718100 ms DeleteObjects: 0.154900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.539 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.80 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.132 seconds +Domain Reload Profiling: 1669ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (307ms) + LoadAssemblies (366ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1132ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.9 KB). Loaded Objects now: 7031. +Memory consumption went from 196.2 MB to 196.0 MB. +Total: 13.846700 ms (FindLiveObjects: 0.364300 ms CreateObjectMapping: 0.221400 ms MarkObjects: 13.112800 ms DeleteObjects: 0.147200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.568 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.00 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.110 seconds +Domain Reload Profiling: 1676ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1110ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (686ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.8 KB). Loaded Objects now: 7046. +Memory consumption went from 196.2 MB to 196.0 MB. +Total: 14.053200 ms (FindLiveObjects: 0.345300 ms CreateObjectMapping: 0.174600 ms MarkObjects: 13.363600 ms DeleteObjects: 0.168700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.593 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.112 seconds +Domain Reload Profiling: 1702ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (407ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1113ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (490ms) + ProcessInitializeOnLoadMethodAttributes (115ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7061. +Memory consumption went from 196.2 MB to 196.1 MB. +Total: 13.488300 ms (FindLiveObjects: 0.358200 ms CreateObjectMapping: 0.174800 ms MarkObjects: 12.824300 ms DeleteObjects: 0.129800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.712 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.75 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.287 seconds +Domain Reload Profiling: 1996ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (57ms) + LoadAllAssembliesAndSetupDomain (402ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1287ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (719ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (509ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7076. +Memory consumption went from 196.2 MB to 196.0 MB. +Total: 13.194400 ms (FindLiveObjects: 0.363200 ms CreateObjectMapping: 0.181700 ms MarkObjects: 12.482100 ms DeleteObjects: 0.166300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.623 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.17 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.192 seconds +Domain Reload Profiling: 1813ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1193ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (757ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (536ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7091. +Memory consumption went from 196.2 MB to 196.1 MB. +Total: 16.109800 ms (FindLiveObjects: 0.844800 ms CreateObjectMapping: 0.257200 ms MarkObjects: 14.752600 ms DeleteObjects: 0.253400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.624 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.65 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.156 seconds +Domain Reload Profiling: 1778ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (79ms) + TypeCache.Refresh (43ms) + TypeCache.ScanAssembly (26ms) + ScanForSourceGeneratedMonoScriptInfo (23ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1157ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (687ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (471ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7106. +Memory consumption went from 196.2 MB to 196.1 MB. +Total: 15.281900 ms (FindLiveObjects: 0.665800 ms CreateObjectMapping: 0.194500 ms MarkObjects: 14.227500 ms DeleteObjects: 0.191000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: 945815ba23aebc718f35fffdc5027e25 -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 65e102978325dcde816315825ed0fee4 -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 8ae367646d391a39e6f5b78cb9168548 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: cff8dec07e61cf430e75aa09834ed65c -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.773 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.52 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.006 seconds +Domain Reload Profiling: 2776ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (506ms) + LoadAssemblies (563ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2006ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (757ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7121. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 14.082700 ms (FindLiveObjects: 0.417500 ms CreateObjectMapping: 0.213300 ms MarkObjects: 13.313100 ms DeleteObjects: 0.137900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.666 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.50 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.545 seconds +Domain Reload Profiling: 2209ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (425ms) + LoadAssemblies (482ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1546ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (842ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (593ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7136. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 16.380000 ms (FindLiveObjects: 0.443200 ms CreateObjectMapping: 0.217300 ms MarkObjects: 15.538300 ms DeleteObjects: 0.179600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 3ad1467b0508f15280a43125f246bfc8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.747 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.72 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 1939ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (461ms) + LoadAssemblies (536ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1198ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (753ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7151. +Memory consumption went from 196.2 MB to 196.0 MB. +Total: 16.198100 ms (FindLiveObjects: 0.394000 ms CreateObjectMapping: 0.266500 ms MarkObjects: 15.402300 ms DeleteObjects: 0.134300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 6495fe3598379bed8c0105be4e40bff8 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.696 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.64 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.950 seconds +Domain Reload Profiling: 2644ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (507ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1950ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (531ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7166. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 13.854200 ms (FindLiveObjects: 0.386300 ms CreateObjectMapping: 0.196000 ms MarkObjects: 13.121300 ms DeleteObjects: 0.149600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: df7d08b11789ade9478fb12c5c6e9971 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: f2b7a6d3924bb40b2cef60e4cb4bd7a5 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Import Request. + Time since last request: 17096.176699 seconds. + path: Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity + artifactKey: Guid(b47c88418b9d4824f81b69b10f4b6f7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics/_scene01.unity using Guid(b47c88418b9d4824f81b69b10f4b6f7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 20 workers. + -> (artifact id: 'fbfad02d75ccbf891630dd8a1d11681c') in 0.004353 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.589 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.93 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.137 seconds +Domain Reload Profiling: 1724ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (389ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1137ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (486ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 7181. +Memory consumption went from 196.1 MB to 195.9 MB. +Total: 13.962000 ms (FindLiveObjects: 0.363400 ms CreateObjectMapping: 0.194100 ms MarkObjects: 13.239600 ms DeleteObjects: 0.163800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: df7d08b11789ade9478fb12c5c6e9971 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: f2b7a6d3924bb40b2cef60e4cb4bd7a5 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.557 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.31 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.165 seconds +Domain Reload Profiling: 1720ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (376ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1166ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (491ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5642 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7196. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 14.353700 ms (FindLiveObjects: 0.489900 ms CreateObjectMapping: 0.206200 ms MarkObjects: 13.525700 ms DeleteObjects: 0.130700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 379c1545c6084e29482b1b64d31f4709 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: cdde4d766305959a13d366bb95a6f85a -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.575 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.69 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.139 seconds +Domain Reload Profiling: 1712ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (388ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1139ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 54 unused Assets / (174.1 KB). Loaded Objects now: 7210. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 14.053500 ms (FindLiveObjects: 0.429200 ms CreateObjectMapping: 0.225300 ms MarkObjects: 13.261800 ms DeleteObjects: 0.135900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.556 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.04 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.074 seconds +Domain Reload Profiling: 1628ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (320ms) + LoadAssemblies (373ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1074ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (677ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (479ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7225. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 13.226000 ms (FindLiveObjects: 0.368900 ms CreateObjectMapping: 0.219000 ms MarkObjects: 12.474600 ms DeleteObjects: 0.162500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.590 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.38 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.214 seconds +Domain Reload Profiling: 1801ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1214ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (751ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (147ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7240. +Memory consumption went from 196.3 MB to 196.2 MB. +Total: 13.780600 ms (FindLiveObjects: 0.382400 ms CreateObjectMapping: 0.194100 ms MarkObjects: 13.052300 ms DeleteObjects: 0.150700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.586 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.83 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.204 seconds +Domain Reload Profiling: 1787ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (393ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1204ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (701ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (497ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7255. +Memory consumption went from 196.3 MB to 196.2 MB. +Total: 14.495800 ms (FindLiveObjects: 0.448200 ms CreateObjectMapping: 0.239300 ms MarkObjects: 13.665700 ms DeleteObjects: 0.141400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.636 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.19 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.195 seconds +Domain Reload Profiling: 1826ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (710ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (502ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7270. +Memory consumption went from 196.4 MB to 196.2 MB. +Total: 14.183200 ms (FindLiveObjects: 0.435800 ms CreateObjectMapping: 0.210900 ms MarkObjects: 13.399800 ms DeleteObjects: 0.135800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.542 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.44 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.233 seconds +Domain Reload Profiling: 1773ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1234ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (766ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (532ms) + ProcessInitializeOnLoadMethodAttributes (124ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7285. +Memory consumption went from 196.4 MB to 196.2 MB. +Total: 13.201000 ms (FindLiveObjects: 0.443000 ms CreateObjectMapping: 0.172000 ms MarkObjects: 12.449700 ms DeleteObjects: 0.135100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.625 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.98 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1833ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1211ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (730ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (509ms) + ProcessInitializeOnLoadMethodAttributes (140ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7300. +Memory consumption went from 196.3 MB to 196.1 MB. +Total: 16.748400 ms (FindLiveObjects: 0.827500 ms CreateObjectMapping: 0.382300 ms MarkObjects: 15.396600 ms DeleteObjects: 0.140800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.517 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.40 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.199 seconds +Domain Reload Profiling: 1714ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (358ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (770ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 7315. +Memory consumption went from 196.4 MB to 196.2 MB. +Total: 14.770400 ms (FindLiveObjects: 0.438000 ms CreateObjectMapping: 0.216600 ms MarkObjects: 13.980700 ms DeleteObjects: 0.134200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.520 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.74 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.186 seconds +Domain Reload Profiling: 1704ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (361ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1187ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (768ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (547ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7330. +Memory consumption went from 196.4 MB to 196.3 MB. +Total: 15.508800 ms (FindLiveObjects: 0.416200 ms CreateObjectMapping: 0.207700 ms MarkObjects: 14.550000 ms DeleteObjects: 0.333900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.498 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.16 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.202 seconds +Domain Reload Profiling: 1699ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (283ms) + LoadAssemblies (342ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1203ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (778ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7345. +Memory consumption went from 196.4 MB to 196.3 MB. +Total: 14.967500 ms (FindLiveObjects: 0.440700 ms CreateObjectMapping: 0.202600 ms MarkObjects: 14.188900 ms DeleteObjects: 0.134200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.527 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.70 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.134 seconds +Domain Reload Profiling: 1658ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (361ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1134ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (733ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7360. +Memory consumption went from 196.4 MB to 196.3 MB. +Total: 15.619300 ms (FindLiveObjects: 0.455400 ms CreateObjectMapping: 0.322600 ms MarkObjects: 14.681100 ms DeleteObjects: 0.158400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.564 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.53 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.157 seconds +Domain Reload Profiling: 1719ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (375ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1157ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (494ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7375. +Memory consumption went from 196.4 MB to 196.2 MB. +Total: 13.812000 ms (FindLiveObjects: 0.418100 ms CreateObjectMapping: 0.205600 ms MarkObjects: 13.014800 ms DeleteObjects: 0.171900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.520 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.41 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.189 seconds +Domain Reload Profiling: 1706ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (293ms) + LoadAssemblies (362ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1189ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (762ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (539ms) + ProcessInitializeOnLoadMethodAttributes (137ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7390. +Memory consumption went from 196.5 MB to 196.3 MB. +Total: 14.804500 ms (FindLiveObjects: 0.423000 ms CreateObjectMapping: 0.190800 ms MarkObjects: 14.016800 ms DeleteObjects: 0.172600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.554 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.239 seconds +Domain Reload Profiling: 1791ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (370ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1239ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (740ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (497ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7405. +Memory consumption went from 196.5 MB to 196.3 MB. +Total: 14.208300 ms (FindLiveObjects: 0.507500 ms CreateObjectMapping: 0.223100 ms MarkObjects: 13.329900 ms DeleteObjects: 0.146500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.520 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.27 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.240 seconds +Domain Reload Profiling: 1758ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (359ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1241ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (793ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (564ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7420. +Memory consumption went from 196.5 MB to 196.3 MB. +Total: 14.936300 ms (FindLiveObjects: 0.493400 ms CreateObjectMapping: 0.295000 ms MarkObjects: 14.020600 ms DeleteObjects: 0.126700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.539 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.56 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 1736ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (367ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (16ms) + FinalizeReload (1200ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (786ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (565ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7435. +Memory consumption went from 196.5 MB to 196.3 MB. +Total: 15.204100 ms (FindLiveObjects: 0.504000 ms CreateObjectMapping: 0.191200 ms MarkObjects: 14.314600 ms DeleteObjects: 0.193300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.517 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.00 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.219 seconds +Domain Reload Profiling: 1734ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (359ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1219ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (790ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (144ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7450. +Memory consumption went from 196.4 MB to 196.3 MB. +Total: 15.293300 ms (FindLiveObjects: 0.574700 ms CreateObjectMapping: 0.255400 ms MarkObjects: 14.302500 ms DeleteObjects: 0.159800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 499d88bce62f2797391d6bbd03f94e5a -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.673 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 18.64 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.222 seconds +Domain Reload Profiling: 1889ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (472ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1222ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (778ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 16.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7465. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 14.843100 ms (FindLiveObjects: 0.447500 ms CreateObjectMapping: 0.231200 ms MarkObjects: 14.011400 ms DeleteObjects: 0.151800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.558 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.85 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.325 seconds +Domain Reload Profiling: 1881ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (378ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1326ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (764ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (550ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7480. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 13.993800 ms (FindLiveObjects: 0.406400 ms CreateObjectMapping: 0.203500 ms MarkObjects: 13.242900 ms DeleteObjects: 0.140200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.639 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 17.60 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.252 seconds +Domain Reload Profiling: 1887ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (393ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1252ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (537ms) + ProcessInitializeOnLoadMethodAttributes (116ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7495. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 14.184300 ms (FindLiveObjects: 0.372900 ms CreateObjectMapping: 0.182500 ms MarkObjects: 13.473000 ms DeleteObjects: 0.155000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.581 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 15.22 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.263 seconds +Domain Reload Profiling: 1842ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (402ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (775ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (562ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7510. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 14.853000 ms (FindLiveObjects: 0.418100 ms CreateObjectMapping: 0.200400 ms MarkObjects: 14.101200 ms DeleteObjects: 0.132300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.697 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.79 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.876 seconds +Domain Reload Profiling: 2572ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (466ms) + LoadAssemblies (514ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1877ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (737ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 11.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7525. +Memory consumption went from 196.5 MB to 196.4 MB. +Total: 15.387900 ms (FindLiveObjects: 0.470700 ms CreateObjectMapping: 0.207600 ms MarkObjects: 14.554800 ms DeleteObjects: 0.153600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.909 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.82 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.052 seconds +Domain Reload Profiling: 2955ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (643ms) + LoadAssemblies (698ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (10ms) + FinalizeReload (2052ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (877ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (653ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7540. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 14.231800 ms (FindLiveObjects: 0.478400 ms CreateObjectMapping: 0.253900 ms MarkObjects: 13.329600 ms DeleteObjects: 0.168500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.662 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 13.92 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.161 seconds +Domain Reload Profiling: 1821ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (481ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1161ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (735ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (524ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7555. +Memory consumption went from 196.6 MB to 196.5 MB. +Total: 13.923800 ms (FindLiveObjects: 0.461000 ms CreateObjectMapping: 0.240100 ms MarkObjects: 13.075900 ms DeleteObjects: 0.145800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.653 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.53 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.337 seconds +Domain Reload Profiling: 1989ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (419ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (80ms) + TypeCache.Refresh (46ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1338ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (821ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (540ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Script is not up to date after domain reload: guid(e5b8e668d7f252c418457873b4425f79) path("Assets/HotScripts/JNGame/Editor/BehaviorTreeSlayer/BehaviorTreeWindow.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.6 KB). Loaded Objects now: 7570. +Memory consumption went from 196.6 MB to 196.5 MB. +Total: 14.847700 ms (FindLiveObjects: 0.574600 ms CreateObjectMapping: 0.218000 ms MarkObjects: 13.901400 ms DeleteObjects: 0.152600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.548 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 11.62 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.108 seconds +Domain Reload Profiling: 1654ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (366ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1109ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (673ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (477ms) + ProcessInitializeOnLoadMethodAttributes (118ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7585. +Memory consumption went from 196.6 MB to 196.5 MB. +Total: 14.238700 ms (FindLiveObjects: 0.398100 ms CreateObjectMapping: 0.189900 ms MarkObjects: 13.509100 ms DeleteObjects: 0.140600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.572 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 14.36 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.168 seconds +Domain Reload Profiling: 1738ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1169ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (699ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (494ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7600. +Memory consumption went from 196.6 MB to 196.4 MB. +Total: 14.479100 ms (FindLiveObjects: 0.441200 ms CreateObjectMapping: 0.298900 ms MarkObjects: 13.583300 ms DeleteObjects: 0.154700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.587 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 12.57 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.178 seconds +Domain Reload Profiling: 1762ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (388ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1178ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (703ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (500ms) + ProcessInitializeOnLoadMethodAttributes (121ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 13.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7615. +Memory consumption went from 196.7 MB to 196.5 MB. +Total: 13.707400 ms (FindLiveObjects: 0.393700 ms CreateObjectMapping: 0.185400 ms MarkObjects: 12.858000 ms DeleteObjects: 0.269000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.512 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 19.46 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.229 seconds +Domain Reload Profiling: 1740ms + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (358ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1229ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (797ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (576ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.7 KB). Loaded Objects now: 7630. +Memory consumption went from 196.7 MB to 196.5 MB. +Total: 15.352000 ms (FindLiveObjects: 0.507600 ms CreateObjectMapping: 0.244200 ms MarkObjects: 14.467700 ms DeleteObjects: 0.131500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.525 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.01 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.227 seconds +Domain Reload Profiling: 1750ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (358ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (795ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 12.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7645. +Memory consumption went from 196.7 MB to 196.5 MB. +Total: 14.340400 ms (FindLiveObjects: 0.428100 ms CreateObjectMapping: 0.208600 ms MarkObjects: 13.567700 ms DeleteObjects: 0.134900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.514 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.31 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.236 seconds +Domain Reload Profiling: 1748ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (357ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1236ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (798ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (578ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 14.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.5 KB). Loaded Objects now: 7660. +Memory consumption went from 196.7 MB to 196.5 MB. +Total: 15.128400 ms (FindLiveObjects: 0.528600 ms CreateObjectMapping: 0.180800 ms MarkObjects: 14.241100 ms DeleteObjects: 0.176800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Caller must complete domain reload +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.573 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 16.80 ms, found 3 plugins. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.307 seconds +Domain Reload Profiling: 1878ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (302ms) + LoadAssemblies (386ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1308ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (858ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (616ms) + ProcessInitializeOnLoadMethodAttributes (154ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 15.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5641 Unused Serialized files (Serialized files now loaded: 0) +Unloading 53 unused Assets / (173.4 KB). Loaded Objects now: 7675. +Memory consumption went from 196.7 MB to 196.5 MB. +Total: 16.191600 ms (FindLiveObjects: 0.528400 ms CreateObjectMapping: 0.196500 ms MarkObjects: 15.290100 ms DeleteObjects: 0.175400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:scripting/precompiled-assembly-types:Samples: 91f82ffd5c3b2f0ff275d5a4e4a8757c -> 9f477a5221bd71387338ef23f8a1db6e + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:scripting/precompiled-assembly-types:Unity.PlasticSCM.Editor: 03cc332f76e94988bbb1401c76ef88fc -> 2c07df953817ba1bc89646f4f3d1ab84 + custom:scripting/precompiled-assembly-types:FairyGUI.Runtime: 0cc992e5de1d2e5e68023b736053d8b9 -> 95cf848bbc4cbf1f47dfd2d5ccb27b8d + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:scripting/precompiled-assembly-types:JNGame.Editor: 6b465b084ac31f875a3c1e77294f763d -> 59ee2d3159e01572edfcf2ae986d1132 + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:scripting/monoscript/fileName/JNAIComponent.cs: a72393fac4d0f11abdfe4bbe0ad87fb6 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:scripting/precompiled-assembly-types:Unity.ScriptableBuildPipeline.Editor: 33751df17db3da9649dadafec059e2ca -> 943f5f51de96a211446784d424755786 + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:scripting/precompiled-assembly-types:Unity.Timeline.Editor: c94f97b81f511f71d6e6639d0ca30f44 -> c796f80f032550f093dbfd9c43030d6c + custom:scripting/monoscript/fileName/AiTreeNode.cs: 69a71996089c1f72642793bba4090999 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:scripting/monoscript/fileName/AiActionNode.cs: 0023eaadba407f7ff970b187917243f2 -> + custom:scripting/precompiled-assembly-types:Unity.VisualScripting.Core.Editor: de66142bb571da1d7197d0d2b9309e8b -> 713ead3b914d1ea263cf4691533a8587 + custom:scripting/precompiled-assembly-types:UnityEngine.TestRunner: f83395f62db78049dabb4e73139ea803 -> 92f9ddb0102cb40b0c7b03f2971db014 + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/AiLog.cs: 181894d28347ffd24b7b083b6bbb8dc2 -> + custom:scripting/precompiled-assembly-types:JNGame.Root: 115f0396fc986470a538a9348b107a46 -> e9fc44e6501bdada16b14265d6c1b3f1 + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/precompiled-assembly-types:GASSamples: 16e1440cab8386049c4e0eafce94b863 -> d73c8752a483668df486793fa60e13b3 + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace diff --git a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log index c40a9a4e..30cf3bca 100644 --- a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log +++ b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log @@ -4,3 +4,6 @@ Cmd: initializeCompiler Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 +Cmd: compileSnippet + insize=2376 file=Assets/DefaultResourcesExtra/Standard.shader name=Standard pass=FORWARD ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH dKW=_EMISSION FOG_LINEAR FOG_EXP FOG_EXP2 INSTANCING_ON _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _METALLICGLOSSMAP _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=3074 + diff --git a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log index e26ec074..560ed0fe 100644 --- a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -7,12 +7,6 @@ Cmd: preprocess Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 -Cmd: compileSnippet - insize=2088 file=Assets/DefaultResourcesExtra/Standard.shader name=Standard pass=FORWARD_DELTA ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING UNITY_PASS_FORWARDADD uKW=DIRECTIONAL dKW=FOG_LINEAR FOG_EXP FOG_EXP2 _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _METALLICGLOSSMAP _PARALLAXMAP POINT SPOT POINT_COOKIE DIRECTIONAL_COOKIE SHADOWS_SHADOWMASK LIGHTMAP_SHADOW_MIXING SHADOWS_DEPTH SHADOWS_SOFT SHADOWS_SCREEN SHADOWS_CUBE UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=d3d11 reqs=227 mask=6 start=106 ok=1 outsize=1722 - -Cmd: compileSnippet - insize=2088 file=Assets/DefaultResourcesExtra/Standard.shader name=Standard pass=FORWARD_DELTA ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING UNITY_PASS_FORWARDADD uKW=DIRECTIONAL dKW=FOG_LINEAR FOG_EXP FOG_EXP2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _DETAIL_MULX2 _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _METALLICGLOSSMAP _PARALLAXMAP POINT SPOT POINT_COOKIE DIRECTIONAL_COOKIE SHADOWS_SHADOWMASK LIGHTMAP_SHADOW_MIXING SHADOWS_DEPTH SHADOWS_SOFT SHADOWS_SCREEN SHADOWS_CUBE UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=106 ok=1 outsize=1790 - Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 @@ -20,10 +14,94 @@ Cmd: preprocess insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 Cmd: compileSnippet - insize=1659 file=/ name=Hidden/Sirenix/Editor/GUIIcon pass= ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=14 ok=1 outsize=1194 + insize=4216 file=/ name=Hidden/Sirenix/SdfIconShader pass= ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=8 ok=1 outsize=682 Cmd: compileSnippet - insize=1659 file=/ name=Hidden/Sirenix/Editor/GUIIcon pass= ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=14 ok=1 outsize=410 + insize=4216 file=/ name=Hidden/Sirenix/SdfIconShader pass= ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_LIGHTMAP_RGBM_ENCODING UNITY_ASTC_NORMALMAP_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=268435456 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=8 ok=1 outsize=2146 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=1516 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 + +Cmd: preprocess + insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=13 validAPIs=262688 pKW=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_NO_CUBEMAP_ARRAY SHADER_API_MOBILE dKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195 diff --git a/JNFrame2/UserSettings/EditorUserSettings.asset b/JNFrame2/UserSettings/EditorUserSettings.asset index 348947ae..6c5c8fc2 100644 --- a/JNFrame2/UserSettings/EditorUserSettings.asset +++ b/JNFrame2/UserSettings/EditorUserSettings.asset @@ -15,26 +15,26 @@ EditorUserSettings: value: 0757565006050b0d0c08597016760b4412151b7d7a7b206929281c31b2b76539 flags: 0 RecentlyUsedSceneGuid-3: - value: 5557050400565d0959585f7143765a44414e487d742971687c7c4e31b2e2376f - flags: 0 - RecentlyUsedSceneGuid-4: value: 0506550257040c0e5d565c7443700c44444f4b7f2a2b22692c2c4e66b6b4673d flags: 0 - RecentlyUsedSceneGuid-5: + RecentlyUsedSceneGuid-4: value: 5102055655050f58540b0e7744735d44434f1c2f7d2c75652b2d4c32bae6356d flags: 0 - RecentlyUsedSceneGuid-6: + RecentlyUsedSceneGuid-5: value: 06015107015351585e0b597446710b4414161c2f2f71206029781967e0e4376e flags: 0 - RecentlyUsedSceneGuid-7: + RecentlyUsedSceneGuid-6: value: 5b08070257025e5d5859547045750b44444f1c2c28712332747f4f37b6e56039 flags: 0 - RecentlyUsedSceneGuid-8: + RecentlyUsedSceneGuid-7: value: 06505105575350095a0c5f71487559444716192e797a7e362e7a4f61e0e66339 flags: 0 - RecentlyUsedSceneGuid-9: + RecentlyUsedSceneGuid-8: value: 010503055d0d5d0a550c5526447b0d44104f49287a7124617d2f4931b4e66339 flags: 0 + RecentlyUsedSceneGuid-9: + value: 5557050400565d0959585f7143765a44414e487d742971687c7c4e31b2e2376f + flags: 0 vcSharedLogLevel: value: 0d5e400f0650 flags: 0 diff --git a/JNFrame2/UserSettings/Layouts/default-2022.dwlt b/JNFrame2/UserSettings/Layouts/default-2022.dwlt index 2fba1042..23057a90 100644 --- a/JNFrame2/UserSettings/Layouts/default-2022.dwlt +++ b/JNFrame2/UserSettings/Layouts/default-2022.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 2560 height: 1397 m_ShowMode: 4 - m_Title: Inspector + m_Title: Project m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 151 + controlID: 149 draggingID: 0 --- !u!114 &6 MonoBehaviour: @@ -219,8 +219,8 @@ MonoBehaviour: y: 0 width: 788 height: 772 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 13} m_Panes: - {fileID: 13} @@ -246,8 +246,8 @@ MonoBehaviour: y: 0 width: 671 height: 772 - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 102, y: 121} + m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 16} m_Panes: - {fileID: 16} @@ -677,9 +677,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 110.38949, y: 65.95053, z: -255.92867} + m_Target: {x: -7.6766057, y: 11.61296, z: -19.749807} speed: 2 - m_Value: {x: 110.38949, y: 65.95053, z: -255.92867} + m_Value: {x: -7.6766057, y: 11.61296, z: -19.749807} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -725,13 +725,13 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: -0.122860156, y: -0.047024123, z: 0.0058249193, w: -0.9913033} + m_Target: {x: -0.26053122, y: -0.23262614, z: 0.06483316, w: -0.9347851} speed: 2 - m_Value: {x: -0.12285881, y: -0.04702361, z: 0.0058248555, w: -0.9912925} + m_Value: {x: -0.2605289, y: -0.23262405, z: 0.064832576, w: -0.9347768} m_Size: - m_Target: 10 + m_Target: 0.8660254 speed: 2 - m_Value: 10 + m_Value: 0.8660254 m_Ortho: m_Target: 0 speed: 2 @@ -793,9 +793,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 0e720000 - m_LastClickedID: 29198 - m_ExpandedIDs: 6efaffff + m_SelectedIDs: 52560000 + m_LastClickedID: 0 + m_ExpandedIDs: 0afbffff m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -998,7 +998,7 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics + - Assets/Scripts/GASSamples/Scripts m_Globs: [] m_OriginalText: m_ImportLogFlags: 0 @@ -1006,16 +1006,16 @@ MonoBehaviour: m_ViewMode: 1 m_StartGridSize: 96 m_LastFolders: - - Assets/Scripts/BehaviorTreeSlayer/Examples/1 basics + - Assets/Scripts/GASSamples/Scripts m_LastFoldersGridSize: 96 m_LastProjectPath: D:\Jisol\JisolGame\JNFrame2 m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 619} - m_SelectedIDs: ae720000 - m_LastClickedID: 29358 - m_ExpandedIDs: 0000000050720000527200005472000056720000587200005a7200005c7200005e720000607200006272000064720000667200006a7200008072000000ca9a3bffffff7f + scrollPos: {x: 0, y: 422} + m_SelectedIDs: 50720000 + m_LastClickedID: 29264 + m_ExpandedIDs: 00000000f6710000f8710000fa710000fc710000fe71000000720000027200000472000006720000087200000a7200000c7200000e7200001072000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1043,7 +1043,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000050720000527200005472000056720000587200005a7200005c7200005e72000060720000627200006472000066720000687200006a720000 + m_ExpandedIDs: 00000000f6710000f8710000fa710000fc710000fe71000000720000027200000472000006720000087200000a7200000c7200000e72000010720000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: diff --git a/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache index bad74b0d235027271b32d45a1851dc9158313f67..4d0d23b2fcc28498b0bfc86aa369a171d0453860 100644 GIT binary patch delta 743 zcmYk4-%FEG9LC@0xKpqB77WdFF$@vJ1Zh+kwJpL*Gcrfnx`<+lH-?Z#-9;I6kzI5% z?28R1>#8dWW1W8>Q78y6x^O?<`3q}nYszYKS<>0NA9!d zyn5{%PzObUn?`f6)9(-tn;{3v2_>fJRZ$gymC_-3ya*vnpCY))x3(jSF506w1e%D! z%>x5cEH+|LL4h^&bMotQ@MjIT!9$Y;^{sV0Du3(W@C@26hek3d&`9ccw9<4ObM(22 zIcVbtteWw<$YG&{4C-GcVG_raaDgY9ql!*}O<3iS)3Kk}Bi^OZ2R=3{{mGO@o*bL- zl!&GB3AE@=xSY(`Xc1i*IKgqb!1??ahM>J3ucUXV?=To*`3?)gLi%`6tnafAHa>B!ncEm(2NF)shTGiSaa|UlX;A+zTCD*%X@Sv5xxP zW!4rDBP%#n_L*KqhW@4Ds2?19aPNM{^`4Hw;bG(7vvq|e u$Xo)cf}oere_53Gz72UFXY301BqgYbFxFFU^{9!NK?hZKsf0SHveo}&zbVK7 delta 717 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

^59iz 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 be`Z&W;@S`(kT9W$!G-{VMl@{tmc#!)v{Az$ diff --git a/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache index debf246403545341d4a5d82d89dd84e2a5192422..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 130959 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

RDx9^i*_P*}3gMRV(!e8Cid&eigzGB$+Pn!4J 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 G>ia){eV~H? diff --git a/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache index 2bd077738bfc877ed45a969b98e3548709592bf8..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 130975 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

YWd$+Jo47Km;U*9(Q_L%_Isqjck{FT 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 Khdz;~zW)Qn45hyS diff --git a/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache index d91f9e845cad406a0b274e70b1bf4ba37f458dd6..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 140480 zcmdsg37izg^*J+SG_inP`h9RPxWkNGuirZ|u`&$biO{@3s#N1OkJNx9YU|NAP3v2mWJV4fv(s z1>g_h_dsK7G^S1tg+kSnLx8Uk<|{<-6*Bk=LB2vJUnZsgUF4r3U;3;21f~+~OdPjB z)l$)9;^cy${@=uL)tOj2qp2q+)J$4aViU*JXIf&>@abw-V{*BgI6094Z-P9Y41WRA zCDe2(tt29f776SF{|$c1{OHobe=|M|33rl}HY+9812kUQ2eUS~{wxa(LrN@{Nsk4LQ7uVy-F?(UQ@~tU0wg zyphsiZK5NSu2b8Ta90kmJc5+BDjZf*sc1_y2K-A7FFlBSX;Ur|A5Ogqx;+4#gc?rE z;;t$e?#9`;t4b)bu5>h<3j~jKert6y9#1B6kezyWy{fe)wYZW9tMk>4Bp5o0wjAC~ zIgI-Dt`ty1QH`t@RwbfwB@JRg4lg`})U3&24zHtzV^u1prl)2SkytJf;YgChhIU0$ zBelR$Y5-QbK#CgWjq1wud^HhKwcPAYMVsnaGM!84q6T_(ERzC4>mDu#`%ua>-)RW0 zYB{`?8uithl4_SRdMIo*g1joObmYJ!{W?|ClxQv^hq86;>=`*Zbt=X#n7$|nF)6+l zL?dc084ne<7R=9qEhqo#7nD<+b@n|ZCA=s-np_8W3c z_m6ks9!3l>*~$TJN4vaz;lhPEym>VF<~a*$Yig@lKg^g=1=iJ~VQ8D?QJP zY9N12<`RL%lQJ)eYUzv;Gi;PwM5oe(hOnlpiE5=IN7GY|W`+`1tHHc4rvOa7v7tkY zrq$U>YIzO@qEgp}w5BTY+%!qysL=?&xhI^|D1ruu^@r(TCOu8Bq~xFg?wjE^+`lH&x~G zCMxa9Elt-;V}m+NKw+=Apt!KIPoPO!l@m?wt#apwTj!hQPFfjmRRCDHqwAhaq}M%3 zPR#=7>7hkPCMJu5)u-zD{d}DApH!aaXS%RUHXohBqW}s?= zJS$Kco=7dxZiI*jMzHa1+F(9y1By(d3C@yd0=E3gGXj+hicN{_W@wdf1|ILGAsQ(| zu!Is#u}GdNtV#gS2vqKtZIRHf{SQD|-myDZ|^g(jA08hN4F)@s2s3l*AePY9YserUFFLYRXJ%{D@brdTL% zl;D0Lo(-s~QI^&sdz4rze>_m!nn7YVH3%?84(c}Au_U%=Q7%T-B07xIbOA+?2Mf+3 zG7lhBRatoD*$$Pce5g1`V1i~L1sV=*4)9^ka;7x1&>eX^gHUy2nq1IjhNYW=W`ppT z^GGAmRC}lTsfDua>Zi!}ocbv?9Mw-zNmReQ;`t1-CeBklRXj(8f-09^JVy)=%BG6v z=yQo`mRCY#S44U0rb>wH1A=OoUqWOVA=FQm5Lr5jW{{VeSxq`T15lZnMJlLz`I(u; z0-H&5qO#g?HLRJ{C(EyD+)eX3&1kV!OwyfPut#m7@W zRVE~81ywJX7I2;sG>81w0uC>PL8#UO4yi-q0d6iLK z3pP*vRArR+kl;v=Um4{wLyQHgGRmWsXqGlJ z95>ESNHo_O^2}vy#&k|^soi4P`_%33t3|$1Se{M)RZrQ0B$B9ld4&#UA1rTpP=yYL zUT{pvFLW?`5CefKbTDKRO(1U>2b>E4(WyDZpIXMD$psA{e;J2ngU~;3VzkK0za16p$WBddMhYWGx4IC1OC{G@rAjk2e~rX+Gx}L0ih7 z=5u%<%tcM}IiwOzBCjOOZBOADg(?YipAs~S{E{%28^SPDNtjD4(KPY`7rV2RXB8@N zu@49uM1J6686j*z1um9Oq8a3si47(JY|x%jo*k$%vF!;#L&z@^+c+UCL6wPZgc405 zZ!*K|jOH1Fn#?ftf@Y9EnPK=Kj6h9h7_z<71mL6&aEx8p+&`V&1T_7gGXc$qqX}p- zi6)R37XXjsVJSQt&~brzK+p&t#07>C!U}X;VCW>8VS%&>4L+QYr+?~*AxtT#__L(X zK`;k|#_P!01tyTFYI*fT^8gFy0t!_>q^Jc|F28+p60mS6ctg|^= zfLZ|IJtSxd`3oRCW(a#w3m`mNiDpsdIUk3^S9rdNd$x+usV&fE^fF;wzH4%k#4Nd= zNqH&<`n}pr>`6AlW?~-{97W!liDifwNnA6r^b*Y^uPz0dG&a)VQOEJPo6-@GX@>Rt9LjBYIQ zP4N~@an5V0##@3`Q2Fv3ZwVd8RoPzg|pb_NHDR|5f z)}ZDTJX(onk=Im3GfE!y&NB|xROS4rpo!!+RXMXn7>a7Da(+Uhx#TtI>gGX?WlhEXXDwn^Rgl2`j;^02fFiGRNkPy4;SmIzvho`Woxo)tMuVdg`N z^}uS*JowZS%_HyND(iL`o=K>Kt1ME%@gV=;DvJeTI8X;ySrii0EicTX3wU_Srot>D z6jZhRFpC%<6itO$^tnVe%ebFhzr>uU-ND8H)jt@yegV9kbZmo zf~dM82Ln+rYzV6fRptxpH5FWvoI-6Oy@HV01ZHSa=de+YcL3Yua-$q&nt7RMczJ`W zXyIHgG^Y5RrnB3aOvYN2T*i-C$}oh7RT|kB0Mc)U-;nbKfaX$<@n)+fr9lB!%i)qe z-PKSRn#sti3@$CV$qPh1@vso$bZRRzr{ZyIh9@(pVkvTnR6r0)-7*%X4EDG#mZ$k% zI%c~OWG+f&k-@ZwxhUmAEYUPFHeZ^YvSEs67Rr0puupKkyxk-+H($E&Zkof~eCa?a z(G)V8qzx`PF@$G~Ud0`|Ib=3TyYg=u#B7pwB$a3q89gTkpG?NZGY6GWG4z5XLuSv3 zBj2VO%$^f2*CXeN0Mjj03ktV208hF;Jp@*Nt(2Vo1!p)q6aU+ zIGL&#WP;IQZjSvSEN7-lYwZk4RHJy)a(ztcYEi<=jkT9lb5$auC8H7e&#Kl;GHHGi zoVGHpCQ{L4f>8A16FyPC+ddF1E>rlnKN8?+-Hz{`w<P!r_ai5$}GignUO&nLBX^BO{r>k9!$>nO|f>&#{=JY+B)G8qp6#zXp7hYa3~zc}y#88;2m;Kr|Igq(-jF9L2> zsEdLV0kp2>df)+-Hnmy_x2w(JWIULG!93U*O=Xl=Dy&62(%`t5(+Y!?!4hPl1^S2J z@L%J@AY939u2DPGL_|%5qiU*ou@aBfB-3+Lb7%(HM=Szt(muz$cSVaaB#k}sE)NCz z!8(B9T=1`UXZkQ6if(o_RS_ap5z3+pWOG(7sEQD&ijXC#F?wC3B0yqnu6LoefKn3F zq0)PQyvPkFoY7jNrodVApce!zDTDD#{w>(puBl1{AO@SY?91h7q>gf+6&$3vaoEk6 zoIy%`D=-ehJEGy8Z3i3QFAQX(wqRz zS9*e?MT)>b2|f?vgFXx*%Yqwczoi@QSg}U~`vPN;Ke`_T|3F*uXF|RZ4IfkbkQfVw z^dTU9h?ZXTc_@81l;LOtch`YG?z@li_xTM~g?)g(4}kv$ys>-X3lD7j=FZ?n8;3mb zp94PM@tu$RC@JFV6cJsEa+n;;y<~Pem9J$ZcgSC_Xb;0#(Uiiz3 zp+9+Xz>2vOb`%|W?O*%v{CLNa&))s@j$M)Fy8YKbci&CNFKL;$QJr|$?zc})FG)`N zWY_s;Jviir8%{oU>=nbS)zRbP&#o_-ea4&X0|Nn151qPn&9JS5CI_No+OeRkgG3~; zYAGmgEp07tEi8kr_ob;;6q@N)mUAxDyc5?J9g0fRVR>x9$?Z4I^$`$WmF(t~M&7CN$XRs4LQ7dY5cX2WO>#S1l|C!@8I^tXWDl zezo@}qVYR~p$Qydm=XWVAE8ApHnL-)be)BbtlDUop#{&?^H&(FK&@}{CIXKlZt-(^RAef2}HSNwJL zLw}s`%KtuI{QQ%f20m06xbeAxhg|>M)f1j>o3}na=f2xg)1J6TTeNf38^d3F=BY=1 ze&Nj3ul@D=+tzMeKcr~rshbX)Fl_3Xze}IC&+ql2S8)H_PanDGfiD9Mj2Hx9pvl00 z+4G^|0wq$?s+P4BDP@YPMhv^qgKU8adWe|}l{zrF5zMj4%xK~5I5QeaJr^`71&1Nt zr6~d!gI9g>LVYKb7ZJRgSy3HDj#wo0E~<8?vcSczVL8iuB@GTlNrTScR4|;3sNrNM zNKo5UFl{Lcmg&QHz6uKkcvjiW{C&2nwW$&86N$OVNG@fdzd4FQV8TE8c&1XPbwWWm z%LK$tHhqLM9EO;`Te2ZjatSO`mI70jh>Rd7Q!ebms4+7>UV001Ed3TGMbB`Nhh6v3 z5h%4CiPA-iQgGPd9^oDg8}s{kX)VP95z^|oJX*@mIl!GKqHGl4%!~!Dfd;1~z*qqe zDHQ}KNn}l6IgcQVTybgvig|}Pet}?`YTZpGVipws9KSVdX6hhTHyqSilF`#Id13R) z##>6Be0K>0H#~Fa_}H>_<%8

ig|MGnXfx9>4hFdn#rep7_T(uU>nXa#EiscB^lXeeHwI zpZqOc@N)MNRco7WKlJOPU!5@O#cd-#y1S})@?rhAZF=*>ip_dNe09}`AGS<-Z(aaR zH0%OdSQE}a!{PFl!s6D}aHJ>_iIf%^E{+b3JuUK4@q-DCw!x#1VWMc6r}V9~?TU|K;0uZ@uD!g6hPsz}CkO-S^`Ws}}ya z@6fS}{&~#U34b=y-8%-n{NhJ-mvsgjNf`(LK?D_+1uH6wE3@ajN?}2HxH4R(7MFx8 zD$2{C7T8JUMY$wlc8fSbs!6XgnTAKs|= z=ZTBXzx3tas*{@C``@-}IzM>$m?u6OU$o|n zyU+USr@y)SlPMEdw~xD54=}p|)312r{;LiS7z;@bMzAnh3|vV;uqZnmTMG*cOUf#g zNTCv`Pz$+mJj>0&p-P=O{Sr=t~VQ3bGQO|ooQ1y~g z&*Oy9KSn)|PNE@tiuxKg9&L*%iF9+#+{P8Enn3B4`B%mU@1D5~q5c4hLQv_w#XDv* zWPU43nkXg+eb-PQq>DiSO$C@(7S6UeFNV-Lnc=>}6d#6F0~H;jEWIMgvu2-b0> z)PC$T3MCv2$GVIn8OP>#wobWi^+!XF7{2nKWjm)&{MT-_-jjula&DP)juxiH{%QpS2bIG9JZz+Cp-T$pg4jUY- zsrXghbBDdGXB@x2}x88%_J4d4AcWFQEh23@p%9y`tS$NGvNBpBMh$LgE zm_&Sy$*g@Hr7%QNL1w!l7g;8iTQ0bHWmoW)S!Hc^t*lE_H;fqAHhtI5cm8JCpg@9L+-L*X~ODP zULN@2C6|}=y=k9S2i~>i;?Ps+zkGT9r`O;8WYgw1{*c)@Zp&l4lfPU4*4A_8uNv31 zE?N1Pzi)m0gRYB?|J~)!54&N0%_I9gf5kovfzwSXEF8h5mqIWV%svq;E2~rsB9YdDmX<1Mpkzzxd_1qiWB8V$-w5fp51R`qGelE_(l_H_t5DP<;KZH>Ur-;k&EL zM8&mQ{nf9xe}DQ9n*%4l^5?SE ztET?p&DzpKZ@K00XNRvy-MmZ9#7c(`zWv6D@9*fI@`vl@?Rfv%RcmX4PyAx(pe0Y= zar47EfWO={@BZsfIJFt&8mu0WR3xq|LBm}|c37*C7PS=AHY!Vs6wu8PhALs*<7_wg z$kaFBwAu{g==b3Cq!w4wX;rg2(uuTVI7$R8GQkX_NyGtiX42*t;ta(4VmLU=WTe*4 z7OCDG^OBYxsMMuoM9(a%(rGQ)k^w8Rc#z+{bTpbkk3&Tmr-uZ!jt|Tc$yTzLj-0q5 zOtCN<=MoJwtp|qTmyodTmw$u1zx(T@7(oTk?j@}41tLO+C+VL`RMavNMWM`^T=~>n zma;V>>g$6#CCZa(_p3lD_E7e9f~&S#PZW#tZ1%gv)@m{9-O!z8Ns{)iCE5m7Vhc1< zS7sYT0F=FI-jt5UqG`}?jK|%+PacJQ-Z11jFqPmKJhLZI$?oLv*ApXhrj0jC(K%Pb z>w2JE=*Dod4c7$CVj9-!`p=@M3^>62Oi-8j=+zzs48Rju#5U`cxBy7-WJc*z%zw&N zbwm>1^KvTDs?T%`aQ5QWzKHwjM$_x>7O|jWdtX^4IA(eUEG7u3&UIomSG9xwtzdCM zababjz;Y49qIg2o1cEcu=?=kijZTUJ%0D(v!2yMRpJ3r8)e|p)0t)+Gg4G+$yGTU2 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 diff --git a/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache index 1384ec1cd6eec87ed4573f02a5e10d135648fb72..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 134185 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 diff --git a/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache index ca0008594e5f8773293e59ce197a1e9870de3e4f..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 133547 zcmdsg37izg_5Y55AgEj-h^UAs3Nw2j;03!JiwmrKu%L_BGt;{}>>O*)%)*L@2JeU$ zYP?w5FaMSJNp?iB1|{n+`@Jq0`l_hD5s>KRKQT-%0=S4el%k zql)s23M%q^jnY&&t$J=EoQ|rNEXX^4Gf_Xn86jbVB=}JWm5ZXPR$6()7bDgM~ zO~SpWW`a`_#I%~t&n2q)9C>ICh16s+5{yKFYq8h(5fpAR#|SFFO+Lmmc_HAwAPd_P zO|n>?N#bEG5ed(k=iq3@QGzi81dXA}HwME9VTpPth9#PzS)v&tF(n0pkNvDTlopDj z7c@fH1tU;=5H_fDU{|6E&X#9_WKvB{PshVi)!qn)QBtuZ1kKPQ-wZ4#gdrLnS(a#u zh4M_14o4F9Mi@;=WYG$${~Y=1w|F2FKhK8EKB@A`Xd=}nsB(gKuc@5i!A|7_iA0qz zk%schXgZlvwd#0BI%TiOT^43#U7~5^h33jcJf+4{H3=nbZx$*vXN(XuiTu!I7A%Fy=nfmT07zW3Bmv0 zs{BUK3aVay`HkR#P&-wABS<8wTwd{^ItF&q!3wa`*n+lCY^dS`ca)$RF?;n>l~LXxK{Lp&jPjTv%t2K~ zd9)JE(kg8>)T&xbLW?Q!kSb8NK9+=>{ZK&@C8W<3dzJ`8Efy0(qPfnLXRfxcWF(Zd zpFW3B!jaU1MhVI{3dsdwhgw@!C8}Otp`+Fiqp-?e`Bb5Up%+xY{6YuA2VnrJ(7}*N zG=aQroLWtH8KV0LG`XMww%jI8xSUWpixx6H2(X{s8pR65{!7yE!jE%P~J1Z^pQna|;cFc-DV=a5P? ziM*02PpaRGBzqgrFhhmx(htAuK_ai8BZ# znnK=Uraq;qO3blEjatkw^nzxPznEe8AdEmQW*D-*X@YbxnSyl}d!Iy`fTrJjCZPGS zH33Z~(F79X0^m_EM><4nIxa8+1dZTATwoX>tU$*FhEAdx7D!vrG}P4F&w){7>W(P| z6@Rw$H3;T_(0C1(MTx4GS3hh}HBE^)oLZ#nhZMD-%H`J&DJ}@LQ}siNNTTZHZGe~@ znsqjNz*8F_yg`D7kiP-KV}`H?wE@DTm1q`Kp7T+crz*j*gPGvW$_)MP347BVO-*#0 zfr93V$#+dQ3=t+eOGJP^ZKehwsOSsxHMD zBWN7?btw)ngk7k*6o*uzNhF4Ra2-!f>9F@|bjT;E1$S1iV3_yo`l1QTJdK`KULZn2h08y9ffyikO&z>IpG#D;yk%Tt^$Y-UaPmTQ8OII~RJ;6T9Loryerg%V z(n&OfyvEzcSWr{!-3--uOVA1`Uw-2)!2_Xps_~W}k*IQcYYIJ`n+CQUxnnT{+gu!N7i`v_QDvUGq zf`*X4H^J~hSb^G`V8|qzAS|sYqVw3GCR3mxCY1;!987VPPHQa5{WjwSO%jz}60zZj zFwL0)>`OF}ymkYf?L>MhIi{p-vXs(D`vksQ$9DC!AcK|3gSkPqWx;@({rU;`g5fwzD+2rlN=*(Lv zYieq;4`tN;i`_s$bIIR-v15oZ6}A6jM=#M#^7iN#%v@-17iy0lQwkbF{vJK%fY3a( zM~?|4s#;#vctM@Lrm3niA{11#{HifxfY38lHAbIHRI|LpBn#9wcplNAYDQg3MUxAv zT>fDanhiqn)L{~uN}~GZRf`uy!m8+iT`CVTCaC_opi*T% zDunr>9~IL7S)vMMI0l1N*q&ye5}G&Kv7~~EmFXB*76`nWj)A3+sBRgRRfD}MwKEb@ z>m#vrRB^nt)U2#Jj1n}0%*v_*H-tUR%BlmgMAOJPL1c0oQCj1Pr1NICd4kAhgrG@e zo*=T}gfNGBg2;wYqA6r_`Wajr54bfX649XIaMIZ9^s^l!Xbzd3ezv?21~EJRY)K`W zM8?Lc!KZ%3^@51H%syC{8>d`)K~u=wIOXy|n8DmQ<&yPD6Vz%dc$FxL+U1}qZ1zK$ zfT7=OCSdrmGXX;;(FF2h#2M*GsJ&iQw2;Gf?^KM)7$Il|`7t7c6T%QwjL0CAXbO2T zqCTX?)dn@z0TL;P43>%!oH2stkRKyBybuPVVg!d&qDkb%2%XO!#0Z97&=m4x1j7em z1}a7{WD-pvW5>&gW3c|#!xKl&0|kvDbH~e>A;LQ5j+ZlipEeUTm*9ybT1s}{UN;lV zP&PBM^b*Y^&!II|Pftgp;0Z9nq?e%=G>UwO#_&Pdf^ujKnM4!FIDcUPo;{raWnr^k z^B6sUfS?g%p1XH>BtXZ8?$NC zkzAsQWOSOFyn@Twx%MrNnE9V>)Q%uaJVN{Qx}wTBy`25WkeB*}A8BZzGY zzdiNCg~LVuX%7`U_gZw+j5y|3dHw@Vl?){dSBT0ZNWQ zb~#M5P)N^Y-!f5wKOg=#X?$fm3VRVxj;raErbH)=uT2M|k!t>!uNW@_N~!e+g3JlR|uO}9qk$>yq>n&vrbJl@r8)ZUH1_-BC{iv~BUjMEo> z<3sG=KHU^OHn~%ucjNTYHUk7_9ZrO+rUZ1xjb9<-0mOK~U_4+l9srC7^dB8Ccr*TD z!v_&k>YeztjL_?8_6whr6>1{jSgY36TnjuPeDp^NwW-aaM9iOt!Q9^&NrIl5WJrs2 zz$ZUXEAUtNi;;yE=pTX`ER7HSaM|BnrFOtKi{l}1k#6%MB^Iqpq~@vS)bz7MECOuO zykp+IGH6Um<6x)5AYXszRdnBC{gUZSe~G7}lU+?!1V~i`vZw;toRtfzB0#DlU`cAs zUI(cNkQgUK9cV3}6#I3k?72T)=!6r_Y^_q0;KF23`vhCcVE&SS^Eb4C8~DNiG1#o7 zU$mo{I@*R-aFXKgHz#9qCMoq(fpG}#X?{(QInRc~QhBfE=2<;Zc|CZFGagy4`^^{# zuwZ(b|KzVzTcY4}C&)-x|G0hm;p?~W(EZ~fw$$td(x+19EW+)cJ@CUPq^!933M9yx|vtuJx<*{B_3l)WFxpI=~Gb8hDKe_ERK5cuFcQs=pNG zM9tAiusIHP%Jc+93m1Za5*&|;3*n{y^>g3U4R@^AP~X0m3$!c<{zNC1cMADJG<{6z z17a)~(g%R_0a|*|@lg71$o$bpDtrU@_v{IRK@-nwn;_UGTd^^MYzNA7d&5bdOYUwGrH zjelD~#u?!K>f>d;adk!@kPY6V?kF3 ziAZ7<%r9ywX(?+dC8Z0g7l9%~R$_nT+#hBugne_5P*&^| zuPyxbur040AFn@uz^tRc{jvMt${F9BcuIKu#6Lf<{|jeacSU32Rdcpq+5hsRzPk3& z*UJCC^3gv}eEEN$D0<c*>S${~Kw$C5+sh9uI{7)Xc|KTru^^6z< zV4%ssf7$b)qI@M>+@h8S3zbquRl|l|=t;If1U!=~ks}rfy^E^dt}JkgV_43zUP*z&;wjLzmGp-a zVKtNhFPMT=4Oq4m`b+icYdiymSC!4o-{-1Ys~W~Wkywk2;!^qsn6nrJCj6C|I;{~3 zx>*(=PO|AUoZ&FQ{N0ibnUYIjnX&|!64Yz5&mcQfHuYfEm>C~0y+toR>Te8U+pKx? z2$b56Lg^w!DL8F#k8lsBjrsFBh~= z8*VFp>WQ&a$K-u5^}mn*YG*}Ws{g3cbsuitwrWZL*M?qlZsP;jU%h_f=RXX8?dgZ6 zt~>C*>z=)5LUiexvcWZP_WSmr+3oRXCM>$-{_v_f0FBa@c@v8{Rmve6t=AUs*Bo$1RiJJ;R3< z8kquFSQE}aL!q)@K~YOfC|np0hf4|!7e|N2o)-D2_`!t6jLD{{mN_0&%}P5mqp6I_22Rf3Z{w8ZkR(+d41{=#N30+skc zMH=>_*H_MM)(e6i#^13M&f9$6Yy{dnO+KiTi--~RT=U6YoTO?-Rhc?ZoX zK1>OmI`g@PBUct`#kC`pL*DE@w!Pmcj|>|;;EHX#w_f>ver0@@Z|mcS?)%Zm6-__w zH*DO(Z;lx^@vla@d-uSXHhoxgd8e;|lz{*cL{LGgzr4JtB73w}3i8WB6`@kKs5n$! zURDaVz%D8;?oASwX%QPpHR?5H(?tGh@l;eR!W9-2RS1X~Z5Dq10AD{K1xm+Y&43TN zt7N2NnG)JyE~|vyfYEFioH+d_51!&%I6tyu>5WxCTU>F=|2)%p&YLU#@}EDwUjEIA z3op3r)&m;vf&)|MHk8Kb%mw>ht@~ z{_aReEp%T5B3=wNj65XFj)j#Nxr`@I~-dI@(YSf%aw3} z5-wK@xNtn%$-$vYow@uHP9#C6LQBLdP``5*E|res=4znk2L}j-8QeZClE0X%G2yh* zV%<#T>zz2ZjMD2!v#1A#;P2>}`+DZ?87P~=Z6-9=*Y6ucHK>us_83JcsCq>ts-Oxd zu@KJO#WVNvC?<&TK8M4jL}g1t{d|zzSI5C_M+k1CG8?GJUvn5*MPbzQ1_-KNGU|Dp z5cPHuWCM-!B{BWU@C{$2NC&(agGLuI%b4m9al>2 zCsRhDgoEK&mr*3+*!=d^sdudWaOe>umVZ;abLOOf|Gwdt5!ZbZe|pq;moF&4Z}jDz zMNi)R$}?YY{lkwdcAU9%!=0Ur2mf(P(WW*3)B5QrGxB##IMO%lu2FM-Ip>CP)q|gJ z+;Z6b&E317uJ*Oh``=5}K04~<$JegBXSnwDsjYvy^WA&6HS zZ&S5sqP5xl9ph>HAZuU6{7i6O@9DmZ`BMS}CuW*(iuq53&cGxTs*>B)_!NyLP_)=R3|B{nUvY z7u@!@eO6o)PE1)_^6J$c;^zkF26cWho)=f3M+xajTR+Wp?R^U<@*o|v$F)7XQCgimT%Gi3JU z{mKWFJk&J!Px|y)Qt{_^ZhmLeFMRU}5iDRB<`Jp>mb4UAgv-K8MR`~Wl`0ib0qlCR z(+MTADimP$6@z_ev^+%6AsqTZlSH3@5IRG3UhQCWfk+}Lt31Ksz8i9v1xpiGzWmal z4=%l;wBIfJtT^!AEtdqIPW|nR8$Y@6zNZ>Dzy7E6&hc9w-<|lw+BdhJTeo6-6^yfFNxx~j+ad*RA`)<5vlJ5#mO&Psgo<*z4BDsK9$^S0C{GoHWw z(ddbvE_v+r2^ZaW$@hQ%-HO+5eCwt|?;d%4;)M?`{qxgrU3>Ja@90=+x$}U(4*BK! z6MUzeQdl^GTQ3D*DVTjBSXx@4=7+;A`N3d;q7*8IX+W`&aLV`hrY_OTW;Uad?aWAr z(Po;_lvSOGM?&CZ?D>h^BcmzUc8HG0{eZyGeZk%Wz8ia3M(u*D1(f+^?_O@Z^T)ihSR0JM_h&_h0mW__D z$$#^`<4-&3qdW5BH^2BZ-}5sryEXrWt#537;Ii9;|NYHxw|{^7kDGlbzWmqHl`E$I z>5b}=LvOq7@aIM>OWwLmO-D;c47uy(N$>6Gp8BU7&e-wZ^($6a`Jep7lEI6gx%<{% z>Hz*?!x<0VaKfq0DA!>1fTSXET>%>I%Co~-4F}Z{P}`^|E>u7_M+mBfb&qqM+#^%p zfXiw#jHBQEGZR`&Nu^ZH>PRQjju9vku*d{6kVX*)$XQ97KM-di)(?i0!%Rl1Gua~5 z+snKp*aMY1l#J+=<+M~viv-hPCl*ig`<9GB3+VBv2xB)$Q0w@@9Fc4#d+ErI8^RP# z**KSIm>E4V48Megb>IFq?*1O2mtq7JJa-Raomn6vba;~fsYFFB6;Tw*tjV2Ey=5s| zBci@Ps8gamsd~S1lwuEKzn$Q&t=1F8qCA`ZSz>#&nDuVxPO~IQeQS%ho|V`Fjntjl zdJzC+ubMZeBGE_+^c&-Ox9?L&A)hxKc@9h^I0w(_2~@H>IsD^^896(HH%rmIu7ub0 zK)KM3;bI%E37W+;tkt!jMo<}Wp!u1gF7f?=JqQ?pC$Nca)+uoTkl@LT(x;gJ)LYdN zNqo=CsYI(j(=os~i&wn~_tTA`_unmILB;NQWtHHV=@qb;AfP(mj?vz#oj7mTE`nGT zPl%d;e|9R>Ay}@_Nl`%g*ZQeAps?RhuyB*?iI+eDh5cEA)f>#aNJP2gyTFKlKKP!$ z_KNGPlHY#xySq1B+5Y{Fr%uk_mcFWKdCB!NS8n|9-s3Kv5_x3)fA{(QIdi5R9&UYj z&SQ1wtiE*g*Nuxd)NWk0f5Y6)olo98qpvJ^dc~UQB`5s6rR=!$uk}^S&c9C_*#G-A@A?{8kuBJW z*KyR4suWh_m*p3?1j|9Y4~(nqLd6k7wsjoXi#fTYEfP&66CG_`{GqcCzUfYFX`j3nL^Y!uPKRd7S?d#roV90HsZ~1oCQzPqw zZ9hK$=#Tqv8My0_{*UZ;eqm9?gGE&*>>6;#*Ke#is_Cu|*4^9r&z0joJz->fzZ<%B z;M9H=TK>eRUAOpV>&#ndDfa6%^z5tJl6D7w zbp&|o0Aa^cM?hDHP05Cqiik>Ps|WktX?hDhMW7&371AiMnp$8#ETJWS1* z#n`|6e(rYUU;2T6$9VxP3@_FV$}=fGo$r)z$?+~Gvt~AS68Nj7aJ}uT#9vX=Lv<5# zv?pr>{%V|Q=s>~0b}Vk?IDl%Cz$!MitN*4uacb7=$@&21w3%ykrisHUKvhwE(Q570 zo|tp@9IEG`RBLV|q=CQ)&KgY*Mg7x~UGY$L9Mtk!6nL)CW*uM9>^uyap<>{PC|{n=J=EC*82qk=V4I9Zit>N5w~wG{?Bm~$^xO(O2C;Sseex@0Za$W zu<;X6L10YAqT6ga5}fzJo@D$zsS8*vo4$0u9jBHNdR--OAq6tz$jE^7%NLB#^x0RZ zCKG85co3T$2-g3=tu4k(#o>_HvNCSb%1D8zae_8=F#|Fr&Pagt`xkiHut|X^sfY~7 zxQokK3B8325shV5Muzrv^mQy%n{nf~nQ&YR8}+RdeYFrm{b>H|xWP$j_S z^)QC74Gl zx95h?{~7jFmNB4P=v5Zl(+V}asXVPiUqABql!v3uTTCVBIQFzw&2A~+H`GET3ZDyWup; zl9M0ulgmz+^V`ZJ+P0{#9P#WSFZDlm*`{&7pK?*dl9_`p{%7|cLq^9QUp;=so1N<> ze)Zw1{hz*U+b4OS9e8NoU2lh9ueka3H>W-L$IEOb(E*$|bUKn6 zWgJ-%)NJz}YL@zm%mxzX(^T&qir8RJqKX|0a;)E*l}NNkRe!CPNF{>l7Elf>DCb|C z!crnM58gfzdA*?wjb3jZ0VWkH|Ld_FPBN-;BvhPZogVX}OvW=Ce)9t?C1kuCFpUV1Fskc|xA*_xl)sJ|dqm9_KYL{L zgIjJMF|hv;TOWI8YW3=w|M}0h>S0?0$JC!cr}EWPH;mrCvhtJ7f0=vDi0Rv(c=onM z`))|Rvu6ED?ZSVboBxk7cSi?4wQJ1k+eQU%x%ZL@|K9yU*|?k3KRkT<6S~V=_lBxI zwehX~zIsLs3owSsL_D5S2DWZWN=v})sm0;a{9>pC*5jS)G(m04xoQ1W7+9hD&LNuu1Q_OY0lFbqSpsOmm-lr1^5)Zb#|~e2&fi`>M}769v153h|99WI{=FA>pLY7aiw?i|ysQ4P_=9ni%Z_?x&9XCF z9>3wC&u>bXX?J~a@65+%Z)v(;N7J$8TLvftt3LPDF=CKtg2zAw!e?P=QF$nwUs4KA zCl?p1L8t>AOvLh7{23k41D@?tUvS5clERh(yk<~R3fN7gIObj7o5?YX031dw6ZAUBir)~< z2*JBc84CgKpbmpjf&4z9cjFmwhEP!PJ--*6;n`8~7SE>Ujh9LpRwb&wWsmPjHc<G>iBHANtG$ zMJp9t-Wk%Xt>)dGX&B-r7yHX6D;<&MSTdB*qD0?A-q3*!=EWL=(1*BmWcWrSYUy5* zid^`D6JgEUF=>V>lgR+$Lq`l+c*39G-(*M+3coq8dBGvY?_c3N9no8ghovH+Xb>zb zQ%XW07*rG$tNGaRAa zT~fYyOz4^NaTNh(WW*#GV#*Fb7c@i9LxCNu%se1i5u6J1h#@W+q{F4zfG)hvxZ=o& z1J)cFXUfPOAZW7XJq{W@GZ~jRK^rb{lFuchiYL5wdf>abg|Vm=_AL_*Hbn#<3mUBF zd9EF!{5ggg&F=2zTD-etjF3w+49Zv&iJ!}}$WTivokq|s?JmzFiskIKsbi$@n1SY{ zW2zPjS?3>!xP%OZX!?kO5Icgt4H*axbICyMF3ljswtsGbe- zYE|a8OQu-vhJ1JmIM@T3S|tIa?}TS>N)Wj$U;J4xyF7)TP*u;@UxWbfqr-Q>c#(XR zIWuTVLGa)$4VSzR&6Hr!Sjd%VPYfrp*cX3DQqXW#8)jvFo1zi7Hdy)aFqTL+7o1z@ zi$B+U{%WKh(@a*(^5fAcQP0Xjf=0ALBoH3lDpFK|f<14Jqap?TTo5X57b!5S*|T(1 zq<};A#2^B*_*|C~KwV1sOTC(+&sVZlio;B&#UCMPG`u(Hk~`)zC+L>Xag@*{!v@_l ztfnj@-^w6XUI!vM4H7}q;buR#Oh+)>4WopovamB~o$d)(1l)4UC9p7A%uKKWWy-@T z>5n%*vK=G{D13#vOMtTFPtYBNvdOt8Miy}OX_t%)A6^45zQ$8?!J*=)o^>aZ;Cc#v z)_tTYz5OUbGp}^HqGr#apq;~6C3VTrtu7h5K~un!ditw|+=9+XQ(%%#(3lCAjY+a3 zXubs;X?FHuti{z>dva_>ve6F)Q@W&r zuV<9)dQE|d^M_o4x*@v9cTzb@3Ddvpf z3q?b(0K`B!jw_x+=y5{eh)kgcLDre07)Y7}3LxUd`c@D`t35&zx6qVJM>a1J*N+}X zLcH9H=g6!P7-PsApZ8aa=AyxFQX z9G>aZ{KODJ?EPeK1W|%bkAjaEMG2`~Lf=Z)(MQ#xr^Vxml>R_9cST@RhbBg03=W1V zIr!oya+l-|gO2ibLl(0v9QszwMSDR^rJXPVjl=@6gDL|1UD9{GQ4I`xHOf?+oDMY~ z(XwO6VW>f)f-kx*=GtyIQ`(@J^Qf~!O;NNk46U9^gSQm& zlDuR1m}Ev`h@j^Wm$P>cwff`O*ARqXk>g{Jdf6WZ*jXC<*gr2`VWLFX#( z#d`^mjC9@5NqZ{zqAmnm1CTJ3SOi{`TNJ{p1VA;fQ`NxztvvU56n{=q;{>sI*IAQa z6*++=z4@0ZhLEyUsljwBFAW=mCK&-yofxCdd12~W(=SsJ;S19Z;qR&Rzu8XT49KLd zJ}=0jZ<`7F%ol)85YU2L9dAkS@HT-XKQjy?4+T@~@2Eg}>E7^j467dXcBlYMPAWz+ z8jjLhkzDJz<-iKui3KkG=f>Hw_T)PHve!Rc@3^(+(4(MRY%dWBHi;zSLB=~JHq zFT8+m_YiT9pS9jZ8~*$e7;-S0!7skU%h`rMpG%Lz4sH1Jg`$xsZJ+B>x3?omY2b?; zOwEXM3N~r&M&&1z?p+K!v&-8)q5if+pz3WgvP{;Lc&#IF(sEPk%mMf%8kjq zm55G^k%--*;U$@M@7`F6Si*Eeo;*hdN707sEg1s21T@XUQ17}s}{Vn zhlLo;ok#J7u6e7XrJ=zk??i;#L3CC$5roaddjF;$JRGgY!wUas7Yd>_LonK$yV!FU zL~YpgDC|%WwULU3pR_)9={GAgL6nw;>2zT)R=3@oN-s9)%a`-K1op zK_$Pn5X(^xZnEn=M^S?{N&-dV-jUm>4$wUG0j3xn z%%D_G+`tW1|dNu>U{)`Ke@enqwP_pfeWYX`Y_Py&1MJ&nzNtE z+3L-PO^;#@t=?>;qR}U<1nPF4O-tik2t|3e-588N=S(MOdA1#&9t9xEv+cy95h#{@ z3HU#^`)p}(nv_(ijlU0$`fRxaF!r2%U(Wh$xlDQ#c&N{oD-(@6X@1Y`tsfvuH8^OZ zq||VIDxoQ@+?5^L`pKjg#9OYmeli*KDAv%{Po_XF0d1N4i_5ucETMJHRXRGK89`jn62IzaK~VP^_?XFmrsu( zj#v_K#i9`?ZAswTt;nV~wtG$zJx~Kb*O3L$=$!Doek(G|viHie=;0iwRT3}~3$sa= zlPn!DGnRLl514TiEcAjRODhPZ6*)?-SoS>XnNW)jD~?M5bG!1di&3j+3b^)``}Q!Z z{8NND`r!>{;IH5pz44r@%0I=MM{$KJ|CB5ws3e~Cb^GEoU4}E#s@A0h`8&(#;xn33 z5LUUm_>5-GqqsuNGqf-+0ZaNbp3D-^$l7&FF!}lcX1ZcfU?7DIx1=}5z!9{6a_#v} zX8A|3-3=Ma(goAE-j+Z&s2D=fz>#;ad&1>JY94wyxGu%L9}m4+MABgtL7TxZ9POy1 z-^+58K#{C@)ES}swMkKEL`mzSa=XqBMVP0=)H)SZ+tYUMoS`~&SE-(Fvj|m+3rW z&7+t?H7kfIB#M_2Rj-2gz9OkE-5gATfkYId!-#TDsd9-Z#F|GDMJ^DLC^Vv^l;_OQSjKrMF?zqliPj^fpqF=##jg<8~*r zDGl;wmC=aJo0zDRnL7X@54kvuK&qUYvrc9%lODw#>SX51M59hx0L{hf5%@fWI!?ih zTs>Npf;h|N>d|7(qxeF*h%~-j0+!pE+5F&A@Wk)jM3~?4fHE_J3`5GfAd#!gjNr_p zctUwTAqfp8d8G)qyGrZS7W2hue^n&e0gw5ByMC8*7m=u|)NTyM8QE0|!z7)YlR%QV z;p6sgZiFRf#3I~R@6l~;3@LV8a3u-9__=+qZgXR}^C+%R$)1sh1Q#e^$SPsD{UjSB zg}=H+f0NvHHyb_4<}^+ab~$^J&52i!f)G8)<|LX+h;;k05LTp`NNZbanF@c^jiviA z>x|ii3^(uBy(BSA5RW-~EF_zR-OyEM=|=3EuSGjZ<`Np+F0zplEeChz!*^@AI|r!9 z#vOnWhyyS*G5Dfa5IHNdahdd}D?~*$u1qxQq}@}VL)1Cnk-|ZpHJ}fp&SLWaAJkbg zxr92mkF~+3*|Y}ULjr9Ba7T+5ZqczemKI~pdG(sBV{I&Z9z_{C*2aoM15Dc9f!nW; zlVTW9o2#Gu<{}NfLT)< zH8)3y(hU-n}+JDz z_3k~%xc5+nPHmb}kl>NHA>sBRJ7fdrYx2<{yG&|9NagB~T_%GbP1w*OyG(&x0-EbP zUuGzcFsMD+fUqY2{y8In!vd<|Gqw-CnwPv)ZkWWWqw`D2z&Hzj#TmqjV;x9>rrgs|jc%dfi!C zeHA=FIy*~itPV@$C}E_=@T9`^UUrriza9mrv$M3sBOwZ0rL1;o*E<-v&T?Uldr2?u zV6YpcV-n(!JXoY-lfq=~IvDI2^(Yu|2ZNnlBnk@zUl0|zcfjqsIJ$$wUl~;*F>Vft z>f#J34$jVq%T-;R;m)HlLv?XR8WLO*ABc2)$zqA2b#T+E6EMPb`P*e9awke?am zEDGB)>QOMFC~PYii9(5W?~B~7d-DaF5f3H8HurNLV=mpCM+yS+id?Orow@ZWD%*ri z;Sx0WQVh42Upz28spI|Db|*F>UfnbPSX` z06RbfWOkMBoE<*qGU-vsp~J^qnMl-uO&D3L>rR(91i?lbJgs8f#8#E=h^otV>oDu; zu{eRwAjb~Q8F3fn=qe*Sfx01ko;oPC*k0!(*Z|aIfi0Cwu+2`TxFwu1Jh34$2HIc~ zX*i-%8z|@R4WMCRyazKYkP=fH%0q*!KpM(&>e9e%nGGQ>&bThkAje2Efo8LPyjNTr zA&~d5#&v0iL^Rr@fz9oM1ys1P*6F+$iVhao3=srf&JGsXu<6m<4IM17k;*0XxxZ#0 zd^S!?Ilb4`nt?Mw5P3OVGjN#nDDJE^14ky8Q0Ml8)eY+Ml;3IR13g$x5n_}%U*Mdp z2dgRGJPIy!B{(Gu4Jz+k;!FwQcRp^6E^)RSBZ#$}UE*xVr$=#zHhJyDatnfPCv&T-3Yp-lrfvDp-ThnZCoOeE;yQaP%IV7@#GDRhB2mV*Ql*hP?rqGdTl(fm$Tiz*!* zYFM`kQ_($?1(e^S$KK1i{;?|O*s@skD9p}w&^n1Yi8}~x_b1~S<8M%s?c6H%e)kL?IQ=3R|yWKL^ z4i-HI+Wv-=o7Zg;FP2sZ6{L0cQ@KjKSoVaW z)weQylz6e?kN}fd`geOr9g4BADiH!Vlf}6YpP?OfiV*v&zOkcD@#axnp&fNf77|o4 zYiDjJSGo|fs1vSGa>bBhWTDgh*m>=h|wyWPueN&))m^sDap zxjX9R&LGABb9P<1>gCSh&!Z4Sz1$h{&>)kyo9XtRxGqSol4{cp!lYbiPaG3rR5`n? zTg*MG|!176H(*WSxQW8o-=Qz27WJWu89OSMeAy=4{4E()U;$$jRm6- zHQ8JliK{Us)CPXTo@nEyk8XIh-@Ai+KHm`Ha|8_t6Z{4Lk;Y05YM!W?643cEeuex5 z5I+Hvp8(5GfcSZk9|MoR>BK)<>eCO1iPUW3Y4Dx&FM4Nf)*h*>F&;^E%?L+Q3C-VF zjkUIO$ty@}2ht=yp5`(YH@{bkqkkl!yBYK+milz;?Jf1iTOr~I^+m7#1EW4fl0)^O zADO8>^od0E&F?k(8q{P8+)E!Pa@3|zUqos=m^8daDyYsTX=t>5G@;hHeCGOydJSvS ajO%(MP-?1|CC#CF*&m&$UY0_hdjAh$`pf?S diff --git a/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache index 449bd4ede89328a989d4f567277e9b86fe0c4d13..f5e894aea93a73e58fa9d4feab241bc197ee1a40 100644 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 2902 zcmeZu3JP{+WMpSxU|@`Qwu*5K2#5*I%PgsMP01{YF)}bR(lgdGHA*v#0SV+6#keGv zB*yqA<|U@5ra)EZrDx`)BD3|Jb4rU#Qj0wE3Q9|S^HWN5QuR`Dau^wbwlF-p8kF?o z4hJJ6qa4H{uy!n3z^XwykO4@Lu^vdUGyoYunlU{sGbhzbUtizZN+0NYeYorOkzB72 zalJms_4-iPLsf#UM`mMj3dr?f+ZY%_@jF^aAuP41I5R)b)<6#obrhUSb4p5!Qf>26 zOG}Cpb958}N|SOjlf6?bL-Mmz^KA1>KdeYi6H27Dn?Bt)uP5P%+tlw5qFG8AbSg0F_96GNcD(7 zb_7!R`{Qyb6@xvQYQY|sSyWP*m=ls(0nD12dFi+#KndAj*tHQE71>me3hd57ij+vg zj;CVu6uMZ&cx4vn=RipJ#N5;vFF&^;AZ--mlbKYMSX3DkkeHketUH_&lQU9dlJj%* zN~!S`9;|vZ$fI6(^VbN z8igNC4I?wKTxEq6u8pCHtF7pUk=_&BIR1DdOpWKlF>C+-qTwim9}-t+Sk)c z&5PzgTH?0V<81gcMh>8x)GW@jCbGM{W(-2}1|k6g8w#L0k8q7=WM*uUoMK>VW@un; zVv?E!G#&_mwVx4Czo~(_kvRjSKQW0ZIJqdZpv1AbI5ihorKT1mnlAZ8dLgOBB|)Wm zd8tM4q!Rx8#FP!pcR`I0u~1km2Sq6)ML`?{Coxk@I4LOx-Ie;-twzeXzSvbDf*O=b nhze?4jSEVG7t&zE61+KmN6~^8T`3)d7u{;i;6+zKz2F4^-jIWk