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 bad74b0d..4d0d23b2 100644 Binary files a/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 78e71876..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache index d88440cb..dad838cf 100644 Binary files a/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache index 2f822978..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache index debf2464..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache index 2bd07773..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/HotMain.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache index d91f9e84..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache index be1851bf..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache index 1384ec1c..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache index ca000859..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache index 449bd4ed..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/StompyRobot.SRF.Editor.csproj.AssemblyReference.cache differ