From 1953e7c25f9de6a4f924adfdbd813cf8ffefd1c1 Mon Sep 17 00:00:00 2001 From: "PC-20230316NUNE\\Administrator" <2858626794@qq.com> Date: Wed, 23 Oct 2024 15:30:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GAS/GameplayAbilitySystem/GASWatcher.cs | 17 +- .../Runtime/Attribute/AttributeAggregator.cs | 2 +- .../GAS/Runtime/Attribute/AttributeBase.cs | 16 +- .../GAS/Runtime/AttributeSet/AttributeSet.cs | 2 +- .../AttributeSet/AttributeSetContainer.cs | 2 +- .../Component/AbilitySystemComponent.cs | 5 +- .../Component/IAbilitySystemComponent.cs | 2 +- .../Runtime/Sync/System/Logic/JNGASSystem.cs | 208 ++- .../Assets/Resources/GASSamples/GASMain.unity | 5 +- .../Config/GameplayEffectLib/GE_Player.asset | 2 +- .../Component/Components/JNGASComponent.cs | 10 +- .../Controller/JNGASBoxController.cs | 5 +- .../Scripts/Game/Logic/GAS/DGASSystem.cs | 32 + .../Scripts/Game/Logic/GAS/DGASSystem.cs.meta | 3 + .../Game/Logic/GAS/GAbilitySystemComponent.cs | 2 + .../Game/Logic/System/Usual/DDataSystem.cs | 9 + .../Scripts/Gen/GASCPresetLib.gen.cs | 27 + .../Scripts/Gen/GASCPresetLib.gen.cs.meta | 11 + .../GASSamples/Scripts/Gen/GAbilityLib.gen.cs | 28 + .../Scripts/Gen/GAbilityLib.gen.cs.meta | 11 + .../Scripts/Gen/GGameplayEffectLib.gen.cs | 27 + .../Gen/GGameplayEffectLib.gen.cs.meta | 11 + .../GASSamples/Scripts/JNGResService.cs | 6 +- .../Assets/Scripts/GASSamples/Scripts/Main.cs | 9 + .../Scripts/Sync/JNGASFrameSystem.cs | 4 +- JNFrame2/GASSamples.csproj | 4 + JNFrame2/JNGame.Runtime.csproj | 2 +- JNFrame2/Logs/AssetImportWorker0-prev.log | 268 +-- JNFrame2/Logs/AssetImportWorker0.log | 1595 ++++++++++++++++- JNFrame2/Logs/AssetImportWorker1-prev.log | 176 +- JNFrame2/Logs/AssetImportWorker1.log | 1567 +++++++++++++++- .../shadercompiler-AssetImportWorker0.log | 19 + ...hadercompiler-UnityShaderCompiler.exe0.log | 126 ++ .../UserSettings/Layouts/default-2022.dwlt | 50 +- 34 files changed, 3751 insertions(+), 512 deletions(-) create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs.meta create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs.meta diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs index f689765c..bbca1bcd 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs @@ -68,7 +68,7 @@ namespace GAS.Editor [DisplayAsString] [LabelWidth(75)] [ShowIf("IsPlaying")] - public int IID; + public ulong IID; [VerticalGroup(BOXGROUP_ASC_H_R_A_V)] [ReadOnly] [LabelWidth(75)] [ShowIf("IsPlaying")] public GameObject instance; @@ -247,7 +247,6 @@ namespace GAS.Editor RefreshAttributesInfo(); RefreshGameplayEffectsInfo(); RefreshTagsInfo(); - RefreshDamageInfo(); } @@ -335,20 +334,6 @@ namespace GAS.Editor } } } - - private void RefreshDamageInfo() - { - DamageRecorder.Clear(); - foreach (var kv in _selected.DamageList) - { - DamageRecorder.Add($"--对 {kv.asc.EntityId}@造成了{kv.atkValue}伤害"); - DamageRecorder.Add($" 伤害来源 {kv.skillId}"); - DamageRecorder.Add($" @{kv.damageType.Name}@{kv.other.ToString()}"); - DamageRecorder.Add($" @闪避率:{kv.missRate}@暴击率{kv.criRate}"); - DamageRecorder.Add($" @是否双倍{kv.isDouble}@双倍概率{kv.doubleRate}"); - DamageRecorder.Add($" 当前时间戳{kv.time}"); - } - } } } #endif \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeAggregator.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeAggregator.cs index ee0face9..8fe7a44d 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeAggregator.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeAggregator.cs @@ -169,7 +169,7 @@ namespace GAS.Runtime } - public void UpdateCurrentValueWhenBaseValueIsDirty(AttributeBase attribute, int sourceId, int oldBaseValue, int newBaseValue) + public void UpdateCurrentValueWhenBaseValueIsDirty(AttributeBase attribute, ulong sourceId, int oldBaseValue, int newBaseValue) { if (oldBaseValue == newBaseValue) return; diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeBase.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeBase.cs index 947934c3..1c7df46d 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeBase.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Attribute/AttributeBase.cs @@ -15,9 +15,9 @@ namespace GAS.Runtime // Changed 是提供属性变化后的回调 protected event Action _onCurrentValueChanged; - protected event Action _onBaseValueChanged; + protected event Action _onBaseValueChanged; protected event Action _onPostCurrentValueChange; - protected event Action _onPostBaseValueChange; + protected event Action _onPostBaseValueChange; protected event Action _onPreCurrentValueChange; @@ -86,7 +86,7 @@ namespace GAS.Runtime int lenght = strValue.Length; } - public void SetBaseValue(int sourceId, int value) + public void SetBaseValue(ulong sourceId, int value) { if (_onPreBaseValueChangeList.Count > 0) { @@ -121,12 +121,12 @@ namespace GAS.Runtime // _onPreBaseValueChange?.GetInvocationList().Cast>(); } - public void RegisterPostBaseValueChange(Action action) + public void RegisterPostBaseValueChange(Action action) { _onPostBaseValueChange += action; } - public void RegisterBaseValueChanged(Action action) + public void RegisterBaseValueChanged(Action action) { _onBaseValueChanged += action; } @@ -154,12 +154,12 @@ namespace GAS.Runtime // _onPreBaseValueChange?.GetInvocationList().Cast>(); } - public void UnregisterPostBaseValueChange(Action action) + public void UnregisterPostBaseValueChange(Action action) { _onPostBaseValueChange -= action; } - public void UnregisterBaseValueChanged(Action action) + public void UnregisterBaseValueChanged(Action action) { _onBaseValueChanged -= action; } @@ -202,7 +202,7 @@ namespace GAS.Runtime return value; } - private void InvokeOnPostBaseValueChange(AttributeBase attribute, int sourceId, int oldBaseValue, int newBaseValue) + private void InvokeOnPostBaseValueChange(AttributeBase attribute, ulong sourceId, int oldBaseValue, int newBaseValue) { _onPostBaseValueChange?.Invoke(attribute, sourceId, oldBaseValue, newBaseValue); _owner.AttributeSetContainer.UpdateCurrentValueWhenBaseValueIsDirty(attribute, sourceId, oldBaseValue, newBaseValue); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSet.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSet.cs index 7b9d7e4c..3d4aa09c 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSet.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSet.cs @@ -10,7 +10,7 @@ namespace GAS.Runtime public abstract AttributeBase this[string key] { get; } public abstract string[] AttributeNames { get; } public abstract void SetOwner(AbilitySystemComponent owner); - public void ChangeAttributeBase(int sourceId, string attributeShortName, LFloat value) + public void ChangeAttributeBase(ulong sourceId, string attributeShortName, LFloat value) { if (this[attributeShortName] != null) { diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSetContainer.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSetContainer.cs index 78e0358b..128a9445 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSetContainer.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/AttributeSet/AttributeSetContainer.cs @@ -164,7 +164,7 @@ namespace GAS.Runtime } } - public void UpdateCurrentValueWhenBaseValueIsDirty(AttributeBase attribute, int sourceId, int oldBaseValue, int newBaseValue) + public void UpdateCurrentValueWhenBaseValueIsDirty(AttributeBase attribute, ulong sourceId, int oldBaseValue, int newBaseValue) { if (_attributeAggregators.TryGetValue(attribute.Name, out var aagt)) { diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs index 0ce9f987..588efd85 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs @@ -15,7 +15,7 @@ namespace GAS.Runtime private IAbilitySystemComponentPreset preset; public bool enabled { get; protected set; } public IAbilitySystemComponentPreset Preset => preset; - public int EntityId { get; protected set; } + public ulong EntityId { get; protected set; } public string EntityName { get; protected set; } public int Level { get; protected set; } @@ -72,9 +72,10 @@ namespace GAS.Runtime preset = ascPreset; } - public void Init(GameplayTag[] baseTags, Type[] attrSetTypes, string[] baseAbilities, int entityId, + public void Init(GameplayTag[] baseTags, Type[] attrSetTypes, string[] baseAbilities, ulong entityId, int level) { + EntityId = entityId; Prepare(); SetLevel(level); if (baseTags != null) GameplayTagAggregator.Init(baseTags); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs index 687dda45..34d33205 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs @@ -6,7 +6,7 @@ namespace GAS.Runtime public interface IAbilitySystemComponent { void SetPreset(IAbilitySystemComponentPreset ascPreset); - void Init(GameplayTag[] baseTags, Type[] attrSetTypes, string[] baseAbilities, int entityId, int level); + void Init(GameplayTag[] baseTags, Type[] attrSetTypes, string[] baseAbilities, ulong entityId, int level); void SetLevel(int level); bool HasTag(GameplayTag tag); bool HasAllTags(GameplayTagSet tags); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs index f96eb252..94f8c431 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs @@ -1,14 +1,20 @@ +using System; +using System.Collections.Generic; using GAS.Runtime; +using JNGame.GAS; +using JNGame.Math; using JNGame.Runtime.GAS.Runtime; +using JNGame.Serialization; using JNGame.Sync.System; using UnityEngine; +using NotImplementedException = System.NotImplementedException; namespace JNGame.Runtime.Sync.System.Logic { /// /// GAS 系统 /// - public class JNGASSystem : SLogicSystem + public class JNGASSystem : SLogicSystem,IGASResourceService { /// @@ -16,6 +22,29 @@ namespace JNGame.Runtime.Sync.System.Logic /// private JexGasManager _gas = new(); public JexGasManager GAS => _gas; + + /// + /// 所有的GE配置数据 + /// + private Dictionary m_AllGEAssets; + /// + /// 所有的GA配置数据 + /// + private Dictionary m_AllAbilityAssets; + /// + /// 所有的ASC预设配置 + /// + private Dictionary m_AllASCAssets; + + public override void OnSyncStart() + { + base.OnSyncStart(); + OnInitAbilityAssetData(); + OnInitASCPresetAssetData(); + OnInitGameplayEffectData(); + GASBindAsset(); + } + public override void OnSyncUpdate(int dt) { @@ -32,6 +61,183 @@ namespace JNGame.Runtime.Sync.System.Logic return GAS.Unregister(abilitySystemComponent); } + /// + /// 初始化 Ability 数据 + /// + public virtual void OnInitAbilityAssetData() + { + m_AllGEAssets = new(); + } + + /// + /// 初始化 ASC 数据 + /// + public virtual void OnInitASCPresetAssetData() + { + m_AllAbilityAssets = new(); + } + + /// + /// 初始化 GE 数据 + /// + public virtual void OnInitGameplayEffectData() + { + m_AllASCAssets = new(); + } + + /// + /// 返回属性类型 + /// + /// + public virtual Dictionary GetAttrSetTypeDict() + { + return new Dictionary(); + } + + + public void GASBindAsset() + { + foreach (var iter in m_AllAbilityAssets) + { + iter.Value.BindLinkAsset(this); + } + foreach (var iter in m_AllGEAssets) + { + if (iter.Value is ILinkAssetBinder linkAssetBinder) + { + linkAssetBinder.BindLinkAsset(this); + } + } + } + + public void SetGameplayEffectData(Dictionary dictGEAssets) + { + m_AllGEAssets = dictGEAssets; + } + + public void SetAbilityAssetData(Dictionary dictGAAssets) + { + m_AllAbilityAssets = dictGAAssets; + } + + public void SetASCPresetAssetData(Dictionary dictASCAssets) + { + m_AllASCAssets = dictASCAssets; + } + + public IGameplayEffectData GetGameplayEffectData(string geAssetLocation) + { + if (m_AllGEAssets.TryGetValue(geAssetLocation, out IGameplayEffectData geAssetData)) + { + return geAssetData; + } + Debug.LogWarning($"没有找到GE资源,资源名:{geAssetLocation}"); + return null; + } + + public PureTimelineAbilityAsset GetTimelineAbilityAsset(string gaAssetLocation) + { + if (m_AllAbilityAssets.TryGetValue(gaAssetLocation, out PureTimelineAbilityAsset gaAssetData)) + { + return gaAssetData; + } + Debug.LogWarning($"没有找到GA资源,资源名:{gaAssetLocation}"); + return null; + } + + public PureASCPresetAsset GetASCPresetAsset(string ascAssetLocation) + { + if (m_AllASCAssets.TryGetValue(ascAssetLocation, out PureASCPresetAsset ascPresetData)) + { + return ascPresetData; + } + Debug.LogWarning($"没有找到ASC预设资源,资源名:{ascAssetLocation}"); + return null; + } + + public GameplayEffect CreateRuntimeGE(string key) + { + IGameplayEffectData staticData = GetGameplayEffectData(key); + if (staticData != null) + { + return new GameplayEffect(staticData, 0); + } + return null; + } + + public GameplayEffect CreateRuntimeGE(string key, LFloat value) + { + IGameplayEffectData staticData = GetGameplayEffectData(key); + if (staticData != null) + { + var runtimeGE = new GameplayEffect(staticData, 0); + runtimeGE.ModifiersValue[0] = value; + return runtimeGE; + } + return null; + } + + public GameplayEffect CreateRuntimeGE(string key, int valueId) + { + IGameplayEffectData staticData = GetGameplayEffectData(key); + if (staticData != null) + { + return new GameplayEffect(staticData, valueId); + } + return null; + } + + /// + /// 字节转GE + /// + public Dictionary ByteToGE(byte[] byteData) + { + var geDic = new Dictionary(); + var reader = new Deserializer(byteData); + var size = reader.ReadUInt16(); + for (int i = 0; i < size; i++) + { + PureGameplayEffectAsset asset = new PureGameplayEffectAsset(); + asset.Deserialize(reader); + geDic.Add(asset.Name, asset); + } + return geDic; + } + + /// + /// 字节转ASC + /// + public Dictionary ByteToASC(byte[] byteData) + { + var ascDic = new Dictionary(); + var reader = new Deserializer(byteData); + var size = reader.ReadUInt16(); + for (int i = 0; i < size; i++) + { + PureASCPresetAsset asset = new PureASCPresetAsset(); + asset.Deserialize(reader); + ascDic.Add(asset.Name, asset); + } + return ascDic; + } + + /// + /// 字节转Ability + /// + public Dictionary ByteToAbility(byte[] byteData) + { + var abDic = new Dictionary(); + Deserializer reader = new Deserializer(byteData); + // Ability + int size = reader.ReadUInt16(); + for (int i = 0; i < size; i++) + { + PureTimelineAbilityAsset asset = new PureTimelineAbilityAsset(); + asset.Deserialize(reader); + abDic.Add(asset.Name, asset); + } + return abDic; + } } } \ No newline at end of file diff --git a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity index 4ce01d93..f0da5beb 100644 --- a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity +++ b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity @@ -289,7 +289,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!4 &1449950259 Transform: m_ObjectHideFlags: 0 @@ -339,6 +339,9 @@ MonoBehaviour: Box: {fileID: 7403693568755579174, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} Preset: {fileID: 11400000, guid: 7692a8d07949a5c46b6b5325ebb9a422, type: 2} GE_JisolDemo1: {fileID: 11400000, guid: 25ef9a2206b693c4f9b93af896a038a8, type: 2} + AbilityAsset: {fileID: 4900000, guid: 55f106e119a6897439630e254550d8fd, type: 3} + GEAsset: {fileID: 4900000, guid: 8f64d28cf3a48454c9421439e97c85fe, type: 3} + ASCAsset: {fileID: 4900000, guid: 2a02b2265d30a464a989f2d4b3e9adac, type: 3} --- !u!4 &1745439354 Transform: m_ObjectHideFlags: 0 diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset index daca2a9e..ca391169 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset @@ -13,7 +13,7 @@ MonoBehaviour: m_Name: GE_Player m_EditorClassIdentifier: JNGame.Runtime:GAS.Runtime:GameplayEffectAsset description: - durationPolicy: 1 + durationPolicy: 2 duration: 0 period: 0 periodExecutionId: 0 diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs index 1d26ae66..53a7df1a 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs @@ -1,8 +1,9 @@ +using System; +using System.Collections.Generic; using GAS.Runtime; using GASSamples.Scripts.Game.GAS; using JNGame.Runtime.Sync.System.Logic; using JNGame.Sync.Entity.Component; -using UnityEngine; namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Components { @@ -32,7 +33,12 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Components ASC.SetPreset(ascPreset); ASC.SetLevel(level); if (ASC.Preset == null) return; - // ASC.Init(asc.PresetBaseTags(), asc.PresetAttributeSetTypes(), asc.Preset.LinkAbilities, entityId, level); + + var attrSetTypes = new Type[ASC.Preset.AttributeSets.Length]; + for (var i = 0; i < ASC.Preset.AttributeSets.Length; i++) + attrSetTypes[i] = GetSystem().GetAttrSetTypeDict()[ASC.Preset.AttributeSets[i]]; + + ASC.Init(ASC.Preset.BaseTags, attrSetTypes, ASC.Preset.LinkAbilities, Entity.Id, level); } /// 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 4f5ad5f5..ef2961b9 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 @@ -1,6 +1,7 @@ using Game.Logic.System.Usual; using GAS.Runtime; using GASSamples.Scripts.Game.Entity.Nodes.Component.Components; +using GASSamples.Scripts.Game.GAS; using JNGame.Runtime.Sync.System.Logic; using JNGame.Sync.Entity.Component; @@ -17,13 +18,13 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Controller base.OnSyncStart(); //设置GAS 角色 - // GAS.InitWithPreset(GetSystem().Preset,1); + GAS.InitWithPreset(GetSystem().GetASCPresetAsset("ASC_Demo1"),1); //附加效果测试 // GAS.ApplyGameplayEffectToSelf(new GameplayEffect(GetSystem().GE_JisolDemo1)); //释放技能 - // GAS.TryActivateAbility(GAbilityLib.JisolDemo1.Name); + GAS.TryActivateAbility(GAbilityLib.JisolDemo1.Name); } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs new file mode 100644 index 00000000..f5df9f53 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using Game.Logic.System.Usual; +using GAS.Runtime; +using JNGame.Runtime.Sync.System.Logic; + +namespace GASSamples.Scripts.Game.GAS +{ + public class DGASSystem : JNGASSystem + { + + public override void OnInitAbilityAssetData() + { + SetAbilityAssetData(ByteToAbility(GetSystem().Ability)); + } + + public override void OnInitGameplayEffectData() + { + SetGameplayEffectData(ByteToGE(GetSystem().GE)); + } + + public override void OnInitASCPresetAssetData() + { + SetASCPresetAssetData(ByteToASC(GetSystem().ASC)); + } + + public override Dictionary GetAttrSetTypeDict() + { + return GAttrSetLib.AttrSetTypeDict; + } + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs.meta new file mode 100644 index 00000000..c5ec6224 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/DGASSystem.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: eebf87e24e6740be8f5013969bca0ca3 +timeCreated: 1729652027 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs index 0226d797..e1d46f8a 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs @@ -1,4 +1,5 @@ using GAS.Runtime; +using JNGame.Runtime.Sync.System.Logic; using JNGame.Sync.Entity; using UnityEngine; @@ -14,6 +15,7 @@ namespace GASSamples.Scripts.Game.GAS public GAbilitySystemComponent(IJNEntity entity) { Entity = entity; + GASResService = Entity.GetContext().GetSync().GetSystem(); } public override void OnGExecute(GameplayEffectSpec geSpec) 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 00359a86..360b6f23 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 @@ -12,12 +12,21 @@ namespace Game.Logic.System.Usual public AbilitySystemComponentPreset Preset { get; private set; } public IGameplayEffectData GE_JisolDemo1 { get; private set; } + + public byte[] Ability { get; private set; } + public byte[] GE { get; private set; } + public byte[] ASC { get; private set; } public override void OnSyncStart() { base.OnSyncStart(); Preset = App.Resource.Preset; GE_JisolDemo1 = App.Resource.GE_JisolDemo1; + + Ability = App.Resource.Ability; + GE = App.Resource.GE; + ASC = App.Resource.ASC; + } } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs new file mode 100644 index 00000000..46694a69 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs @@ -0,0 +1,27 @@ +/////////////////////////////////// +//// This is a generated file. //// +//// Do not modify it. //// +/////////////////////////////////// + +using System; +using System.Collections.Generic; + +namespace GAS.Runtime +{ + public static class GASCPresetLib + { + public struct ASCPresetInfo + { + public string Name; + public string AssetPath; + } + + public static ASCPresetInfo ASC_Demo1 = new ASCPresetInfo { Name = "ASC_Demo1", AssetPath = "Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Demo1.asset"}; + + + public static Dictionary ASCPresetMap = new Dictionary + { + ["ASC_Demo1"] = ASC_Demo1, + }; + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs.meta new file mode 100644 index 00000000..6c206d0b --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GASCPresetLib.gen.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ec7b55df34c66be4d933fd550a032c52 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs new file mode 100644 index 00000000..8b5da2ce --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs @@ -0,0 +1,28 @@ +/////////////////////////////////// +//// This is a generated file. //// +//// Do not modify it. //// +/////////////////////////////////// + +using System; +using System.Collections.Generic; + +namespace GAS.Runtime +{ + public static class GAbilityLib + { + public struct AbilityInfo + { + public string Name; + public string AssetPath; + public Type AbilityClassType; + } + + public static AbilityInfo JisolDemo1 = new AbilityInfo { Name = "JisolDemo1", AssetPath = "Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset",AbilityClassType = typeof(GAS.Runtime.TimelineAbility) }; + + + public static Dictionary AbilityMap = new Dictionary + { + ["JisolDemo1"] = JisolDemo1, + }; + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs.meta new file mode 100644 index 00000000..af86d66f --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4f87dae0ef06e5b43a93fbe6c182c8c9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs new file mode 100644 index 00000000..9ad84c43 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs @@ -0,0 +1,27 @@ +/////////////////////////////////// +//// This is a generated file. //// +//// Do not modify it. //// +/////////////////////////////////// + +using System; +using System.Collections.Generic; + +namespace GAS.Runtime +{ + public static class GGameplayEffectLib + { + public struct GameplayEffectAssetInfo + { + public string Name; + public string AssetPath; + } + + public static GameplayEffectAssetInfo GE_Player = new GameplayEffectAssetInfo { Name = "GE_Player", AssetPath = "Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset"}; + + + public static Dictionary GameplayEffectMap = new Dictionary + { + ["GE_Player"] = GE_Player, + }; + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs.meta new file mode 100644 index 00000000..dc41fd97 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GGameplayEffectLib.gen.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1c5edef4175b8f54fab71d79979e19af +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs index 74fafc8c..b9c094a4 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs @@ -18,10 +18,14 @@ namespace GASSamples.Scripts //GE_JisolDemo1 public IGameplayEffectData GE_JisolDemo1; + + + public byte[] Ability; + public byte[] GE; + public byte[] ASC; public override Task OnInit() { - return base.OnInit(); } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs index 76981a11..792a2629 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs @@ -13,6 +13,9 @@ namespace GASSamples.Scripts public GameObject Box; public AbilitySystemComponentPreset Preset; public GameplayEffectAsset GE_JisolDemo1; + public TextAsset AbilityAsset; + public TextAsset GEAsset; + public TextAsset ASCAsset; private JNGASFrameSystem _frameSystem; @@ -28,6 +31,12 @@ namespace GASSamples.Scripts App.Resource.Preset = Preset; App.Resource.GE_JisolDemo1 = GE_JisolDemo1; + App.Resource.Ability = AbilityAsset.bytes; + App.Resource.GE = GEAsset.bytes; + App.Resource.ASC = ASCAsset.bytes; + + + _frameSystem = new JNGASFrameSystem(); _frameSystem.Initialize(); _frameSystem.TStartExecute(); diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs index 1d4d8e2c..1527a23f 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs @@ -2,10 +2,10 @@ using Cysharp.Threading.Tasks; using Game.Input; using Game.Logic.System.Usual; using GASSamples.Scripts.Game.Entity; +using GASSamples.Scripts.Game.GAS; using GASSamples.Scripts.Game.Logic.Data; using GASSamples.Scripts.Game.Logic.System; using GASSamples.Scripts.Game.View; -using JNGame.Runtime.Sync.System.Logic; using JNGame.Sync.Entity; using JNGame.Sync.Frame; using JNGame.Sync.System; @@ -22,7 +22,7 @@ namespace DefaultNamespace { new DInputSystem(), //游戏输入 new DDataSystem(), //数据 系统 - new JNGASSystem(), //GAS 系统 + new DGASSystem(), //GAS 系统 new DWorldSystem(), //世界逻辑 }; } diff --git a/JNFrame2/GASSamples.csproj b/JNFrame2/GASSamples.csproj index e0afa135..4d66e253 100644 --- a/JNFrame2/GASSamples.csproj +++ b/JNFrame2/GASSamples.csproj @@ -76,12 +76,15 @@ + + + @@ -103,6 +106,7 @@ + diff --git a/JNFrame2/JNGame.Runtime.csproj b/JNFrame2/JNGame.Runtime.csproj index 0dd60cb4..62962c54 100644 --- a/JNFrame2/JNGame.Runtime.csproj +++ b/JNFrame2/JNGame.Runtime.csproj @@ -108,8 +108,8 @@ - + diff --git a/JNFrame2/Logs/AssetImportWorker0-prev.log b/JNFrame2/Logs/AssetImportWorker0-prev.log index 08e8d2f3..f30cd63c 100644 --- a/JNFrame2/Logs/AssetImportWorker0-prev.log +++ b/JNFrame2/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker0.log -srvPort -52681 +52918 Successfully changed project path to: D:/myproject/JisolGame/JNFrame2 D:/myproject/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/myproject/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 [11768] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 263129148 [EditorId] 263129148 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [11768] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 263129148 [EditorId] 263129148 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 57.93 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 188.21 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.1f1 (f18e0c1b5784) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems @@ -69,44 +69,44 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56420 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56556 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.005587 seconds. -- Loaded All Assemblies, in 0.379 seconds +Registered in 0.005469 seconds. +- Loaded All Assemblies, in 0.558 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.282 seconds -Domain Reload Profiling: 658ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 5.613 seconds +Domain Reload Profiling: 6170ms + BeginReloadAssembly (116ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (60ms) - LoadAllAssembliesAndSetupDomain (168ms) - LoadAssemblies (98ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (112ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (161ms) - TypeCache.Refresh (160ms) - TypeCache.ScanAssembly (144ms) + AnalyzeDomain (325ms) + TypeCache.Refresh (324ms) + TypeCache.ScanAssembly (300ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (1ms) - FinalizeReload (283ms) + FinalizeReload (5614ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (221ms) + SetupLoadedEditorAssemblies (5477ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (24ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (133ms) - ProcessInitializeOnLoadMethodAttributes (68ms) + BeforeProcessingInitializeOnLoad (5ms) + ProcessInitializeOnLoadAttributes (4415ms) + ProcessInitializeOnLoadMethodAttributes (1003ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -114,8 +114,8 @@ Domain Reload Profiling: 658ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.444 seconds -Refreshing native plugins compatible for Editor in 32.96 ms, found 3 plugins. +- Loaded All Assemblies, in 2.730 seconds +Refreshing native plugins compatible for Editor in 49.91 ms, found 3 plugins. Native extension for WindowsStandalone target not found Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument @@ -132,50 +132,50 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.20 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.449 seconds -Domain Reload Profiling: 2887ms - BeginReloadAssembly (136ms) +- Finished resetting the current domain, in 3.697 seconds +Domain Reload Profiling: 6389ms + BeginReloadAssembly (226ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (62ms) - LoadAllAssembliesAndSetupDomain (1196ms) - LoadAssemblies (734ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (75ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (151ms) + LoadAllAssembliesAndSetupDomain (2222ms) + LoadAssemblies (1448ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (523ms) - TypeCache.Refresh (480ms) - TypeCache.ScanAssembly (460ms) - ScanForSourceGeneratedMonoScriptInfo (31ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1450ms) + AnalyzeDomain (876ms) + TypeCache.Refresh (813ms) + TypeCache.ScanAssembly (783ms) + ScanForSourceGeneratedMonoScriptInfo (47ms) + ResolveRequiredComponents (16ms) + FinalizeReload (3698ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1252ms) + SetupLoadedEditorAssemblies (3284ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (19ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (123ms) - ProcessInitializeOnLoadAttributes (625ms) - ProcessInitializeOnLoadMethodAttributes (479ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (235ms) + ProcessInitializeOnLoadAttributes (1298ms) + ProcessInitializeOnLoadMethodAttributes (1659ms) + AfterProcessingInitializeOnLoad (54ms) + EditorAssembliesLoaded (2ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) + AwakeInstancesAfterBackupRestoration (44ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 33.56 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 86.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5651 Unused Serialized files (Serialized files now loaded: 0) Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101. Memory consumption went from 197.9 MB to 197.7 MB. -Total: 16.050800 ms (FindLiveObjects: 0.362800 ms CreateObjectMapping: 0.274900 ms MarkObjects: 14.957800 ms DeleteObjects: 0.453500 ms) +Total: 39.739800 ms (FindLiveObjects: 0.638300 ms CreateObjectMapping: 0.524300 ms MarkObjects: 38.153800 ms DeleteObjects: 0.421700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -190,97 +190,17 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 23104.434929 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) -> (artifact id: '7a58fa376a47e2469d1e757a06d7281a') in 0.002283 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.000037 seconds. - path: Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Demo1.asset - artifactKey: Guid(e0cc454441324b94baf6d53f48108d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Demo1.asset using Guid(e0cc454441324b94baf6d53f48108d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ac41e999ee272715e4e2fb2673428e8') in 0.002123 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.028138 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilitySystemComponentPreset.cs - artifactKey: Guid(85dd2a6201f04545b5a8b020edcb2690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilitySystemComponentPreset.cs using Guid(85dd2a6201f04545b5a8b020edcb2690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c33b7f573e66d86bdeb9c09e83776d1a') in 0.000505 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: 6.669047 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectAsset.cs - artifactKey: Guid(b9395a0be3e547f48bd1c8320edc6c58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectAsset.cs using Guid(b9395a0be3e547f48bd1c8320edc6c58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e960fcf7467cadc5a2c5cb8fb09d23d') in 0.000501 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: 9.256041 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectModifier.cs - artifactKey: Guid(b0b20897a5ad4adc9ac45f147879fee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectModifier.cs using Guid(b0b20897a5ad4adc9ac45f147879fee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1fd6f1287e9c062955c32cf9852897ac') in 0.000586 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.342957 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GrantedAbilityConfig.cs - artifactKey: Guid(18b9e82f24170c349a69cb426e52e89f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GrantedAbilityConfig.cs using Guid(18b9e82f24170c349a69cb426e52e89f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a0b8a6e478026d20a31172e7820eb52c') in 0.000736 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.202322 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/TimelineAbilityAsset.cs - artifactKey: Guid(d763af469c524557946c477b9bea3a46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/TimelineAbilityAsset.cs using Guid(d763af469c524557946c477b9bea3a46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42ddeb3818bb6a65e6b88e70caf0c89d') in 0.000657 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: 2.181501 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/TimelineAbilityPlayer.cs - artifactKey: Guid(4b17a33afb534946b70239808a6015eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/TimelineAbilityPlayer.cs using Guid(4b17a33afb534946b70239808a6015eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc4c3ca313bcea0449b2309a8376fa51') in 0.000511 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.637596 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectStackingConfig.cs - artifactKey: Guid(dc3a34741eb56da46b0de533d8cb1e12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/GameplayEffectStackingConfig.cs using Guid(dc3a34741eb56da46b0de533d8cb1e12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e070c2bb6f2badf79aa323417332ecb') in 0.000474 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.935781 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilityAsset.cs - artifactKey: Guid(544108d1f0e34b7fb2a77be04ed89be6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilityAsset.cs using Guid(544108d1f0e34b7fb2a77be04ed89be6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56d9880ad54612d187abf6fdbb55b23d') in 0.000461 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: 40.948313 seconds. - path: Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilitySystemComponentPreset.cs - artifactKey: Guid(85dd2a6201f04545b5a8b020edcb2690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/GAS/UnityExt/ScriptableAsset/AbilitySystemComponentPreset.cs using Guid(85dd2a6201f04545b5a8b020edcb2690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbe1b26a9fbc18e782857a9b2effb934') in 0.000990 seconds + Time since last request: 31993.069522 seconds. + path: Assets/Scripts/GASSamples/Scripts/App.cs + artifactKey: Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/Scripts/App.cs using Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffb0d4db36034ca8c999158eaedb24b2') in 0.012296 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.355 seconds -Refreshing native plugins compatible for Editor in 29.04 ms, found 3 plugins. +- Loaded All Assemblies, in 1.693 seconds +Refreshing native plugins compatible for Editor in 33.03 ms, found 3 plugins. Native extension for WindowsStandalone target not found [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -297,48 +217,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.538 seconds -Domain Reload Profiling: 2884ms - BeginReloadAssembly (211ms) +- Finished resetting the current domain, in 1.680 seconds +Domain Reload Profiling: 3367ms + BeginReloadAssembly (277ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (82ms) - RebuildCommonClasses (42ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (59ms) - LoadAllAssembliesAndSetupDomain (1025ms) - LoadAssemblies (735ms) + CreateAndSetChildDomain (133ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (72ms) + LoadAllAssembliesAndSetupDomain (1290ms) + LoadAssemblies (960ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (364ms) - TypeCache.Refresh (355ms) - TypeCache.ScanAssembly (337ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1538ms) + AnalyzeDomain (395ms) + TypeCache.Refresh (381ms) + TypeCache.ScanAssembly (338ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1680ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (796ms) + SetupLoadedEditorAssemblies (873ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (118ms) - ProcessInitializeOnLoadAttributes (379ms) - ProcessInitializeOnLoadMethodAttributes (280ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (2ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (396ms) + ProcessInitializeOnLoadMethodAttributes (339ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) + AwakeInstancesAfterBackupRestoration (20ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 29.94 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 75.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5634 Unused Serialized files (Serialized files now loaded: 0) +Unloading 5635 Unused Serialized files (Serialized files now loaded: 0) Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6117. -Memory consumption went from 194.9 MB to 194.7 MB. -Total: 13.930300 ms (FindLiveObjects: 0.479100 ms CreateObjectMapping: 0.234900 ms MarkObjects: 13.017700 ms DeleteObjects: 0.196500 ms) +Memory consumption went from 195.0 MB to 194.8 MB. +Total: 33.105500 ms (FindLiveObjects: 0.856600 ms CreateObjectMapping: 1.832900 ms MarkObjects: 29.891000 ms DeleteObjects: 0.522700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -352,11 +272,3 @@ 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 -> -======================================================================== -Received Import Request. - Time since last request: 29.139862 seconds. - path: Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Demo1.asset - artifactKey: Guid(e0cc454441324b94baf6d53f48108d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Demo1.asset using Guid(e0cc454441324b94baf6d53f48108d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b741c81d10652d9737d668ae9691e9a') in 0.023564 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 diff --git a/JNFrame2/Logs/AssetImportWorker0.log b/JNFrame2/Logs/AssetImportWorker0.log index f30cd63c..72c3dad0 100644 --- a/JNFrame2/Logs/AssetImportWorker0.log +++ b/JNFrame2/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker0.log -srvPort -52918 +50224 Successfully changed project path to: D:/myproject/JisolGame/JNFrame2 D:/myproject/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/myproject/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 [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 188.21 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 105.17 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.1f1 (f18e0c1b5784) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems @@ -69,44 +69,44 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56556 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56720 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.005469 seconds. -- Loaded All Assemblies, in 0.558 seconds +Registered in 0.009304 seconds. +- Loaded All Assemblies, in 0.660 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 5.613 seconds -Domain Reload Profiling: 6170ms - BeginReloadAssembly (116ms) +- Finished resetting the current domain, in 0.451 seconds +Domain Reload Profiling: 1105ms + BeginReloadAssembly (204ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (63ms) - LoadAllAssembliesAndSetupDomain (332ms) - LoadAssemblies (112ms) + CreateAndSetChildDomain (2ms) + RebuildCommonClasses (59ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (115ms) + LoadAllAssembliesAndSetupDomain (256ms) + LoadAssemblies (201ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (325ms) - TypeCache.Refresh (324ms) - TypeCache.ScanAssembly (300ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (236ms) + TypeCache.Refresh (234ms) + TypeCache.ScanAssembly (211ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) ResolveRequiredComponents (1ms) - FinalizeReload (5614ms) + FinalizeReload (451ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (5477ms) + SetupLoadedEditorAssemblies (351ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (30ms) - SetLoadedEditorAssemblies (24ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (12ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (5ms) - ProcessInitializeOnLoadAttributes (4415ms) - ProcessInitializeOnLoadMethodAttributes (1003ms) + BeforeProcessingInitializeOnLoad (4ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (110ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -114,8 +114,8 @@ Domain Reload Profiling: 6170ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 2.730 seconds -Refreshing native plugins compatible for Editor in 49.91 ms, found 3 plugins. +- Loaded All Assemblies, in 2.009 seconds +Refreshing native plugins compatible for Editor in 49.78 ms, found 3 plugins. Native extension for WindowsStandalone target not found Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument @@ -132,75 +132,78 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.20 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.11 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 3.697 seconds -Domain Reload Profiling: 6389ms - BeginReloadAssembly (226ms) +- Finished resetting the current domain, in 2.134 seconds +Domain Reload Profiling: 4135ms + BeginReloadAssembly (208ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (75ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (151ms) - LoadAllAssembliesAndSetupDomain (2222ms) - LoadAssemblies (1448ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (1653ms) + LoadAssemblies (1105ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (876ms) - TypeCache.Refresh (813ms) - TypeCache.ScanAssembly (783ms) - ScanForSourceGeneratedMonoScriptInfo (47ms) - ResolveRequiredComponents (16ms) - FinalizeReload (3698ms) + AnalyzeDomain (641ms) + TypeCache.Refresh (589ms) + TypeCache.ScanAssembly (561ms) + ScanForSourceGeneratedMonoScriptInfo (40ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2135ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (3284ms) + SetupLoadedEditorAssemblies (1875ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (19ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (235ms) - ProcessInitializeOnLoadAttributes (1298ms) - ProcessInitializeOnLoadMethodAttributes (1659ms) - AfterProcessingInitializeOnLoad (54ms) - EditorAssembliesLoaded (2ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (903ms) + ProcessInitializeOnLoadMethodAttributes (785ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (44ms) + 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 86.06 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 58.98 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5651 Unused Serialized files (Serialized files now loaded: 0) -Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101. -Memory consumption went from 197.9 MB to 197.7 MB. -Total: 39.739800 ms (FindLiveObjects: 0.638300 ms CreateObjectMapping: 0.524300 ms MarkObjects: 38.153800 ms DeleteObjects: 0.421700 ms) +Unloading 5656 Unused Serialized files (Serialized files now loaded: 0) +Unloading 183 unused Assets / (232.8 KB). Loaded Objects now: 6106. +Memory consumption went from 197.8 MB to 197.6 MB. +Total: 25.361300 ms (FindLiveObjects: 0.473100 ms CreateObjectMapping: 0.451200 ms MarkObjects: 23.660100 ms DeleteObjects: 0.774300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Import Request. - Time since last request: 31993.069522 seconds. - path: Assets/Scripts/GASSamples/Scripts/App.cs - artifactKey: Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/App.cs using Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffb0d4db36034ca8c999158eaedb24b2') in 0.012296 seconds + Time since last request: 18904.685016 seconds. + path: Assets/Scripts/GASSamples/GAS/Binary + artifactKey: Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Binary using Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af688527f12be1b4bf8b4576d3e06b8f') in 0.003537 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.693 seconds -Refreshing native plugins compatible for Editor in 33.03 ms, found 3 plugins. +- Loaded All Assemblies, in 1.825 seconds +Refreshing native plugins compatible for Editor in 41.83 ms, found 3 plugins. Native extension for WindowsStandalone target not found [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -217,48 +220,1458 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.680 seconds -Domain Reload Profiling: 3367ms - BeginReloadAssembly (277ms) +- Finished resetting the current domain, in 2.323 seconds +Domain Reload Profiling: 4140ms + BeginReloadAssembly (229ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (133ms) + CreateAndSetChildDomain (86ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (102ms) + LoadAllAssembliesAndSetupDomain (1412ms) + LoadAssemblies (976ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (522ms) + TypeCache.Refresh (509ms) + TypeCache.ScanAssembly (477ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2325ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1200ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (616ms) + ProcessInitializeOnLoadMethodAttributes (407ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.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 136 unused Assets / (204.9 KB). Loaded Objects now: 6121. +Memory consumption went from 194.8 MB to 194.6 MB. +Total: 22.875000 ms (FindLiveObjects: 0.694500 ms CreateObjectMapping: 0.662300 ms MarkObjects: 21.098100 ms DeleteObjects: 0.417700 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.151 seconds +Refreshing native plugins compatible for Editor in 58.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.951 seconds +Domain Reload Profiling: 6094ms + BeginReloadAssembly (249ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (112ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (79ms) + LoadAllAssembliesAndSetupDomain (1763ms) + LoadAssemblies (1090ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (736ms) + TypeCache.Refresh (722ms) + TypeCache.ScanAssembly (692ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (3953ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (242ms) + ProcessInitializeOnLoadAttributes (1329ms) + ProcessInitializeOnLoadMethodAttributes (724ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (42ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 107.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 136 unused Assets / (205.2 KB). Loaded Objects now: 6136. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 32.310900 ms (FindLiveObjects: 1.066400 ms CreateObjectMapping: 1.292300 ms MarkObjects: 29.487300 ms DeleteObjects: 0.462100 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.960 seconds +Refreshing native plugins compatible for Editor in 48.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.026 seconds +Domain Reload Profiling: 3978ms + BeginReloadAssembly (309ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (131ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (84ms) + LoadAllAssembliesAndSetupDomain (1499ms) + LoadAssemblies (977ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (620ms) + TypeCache.Refresh (606ms) + TypeCache.ScanAssembly (574ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2027ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (962ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (140ms) + ProcessInitializeOnLoadAttributes (462ms) + ProcessInitializeOnLoadMethodAttributes (327ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (33ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.07 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 136 unused Assets / (206.1 KB). Loaded Objects now: 6151. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 17.344500 ms (FindLiveObjects: 0.459400 ms CreateObjectMapping: 0.263300 ms MarkObjects: 16.360500 ms DeleteObjects: 0.258900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.464 seconds +Refreshing native plugins compatible for Editor in 44.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies: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: 3270ms + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (87ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (1119ms) + LoadAssemblies (744ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (448ms) + TypeCache.Refresh (438ms) + TypeCache.ScanAssembly (417ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1814ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (875ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (426ms) + ProcessInitializeOnLoadMethodAttributes (295ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.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 136 unused Assets / (205.2 KB). Loaded Objects now: 6166. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 24.631900 ms (FindLiveObjects: 0.455900 ms CreateObjectMapping: 0.233300 ms MarkObjects: 23.563100 ms DeleteObjects: 0.377100 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 528.989586 seconds. + path: Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes + artifactKey: Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes using Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8686061f3ea32022c61632a61708e5') in 0.015688 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: 38.474520 seconds. + path: Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes + artifactKey: Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes using Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0592a01c25039da30220d9a672b7fb63') in 0.001777 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.208963 seconds. + path: Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes + artifactKey: Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes using Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10be751bdb43f7f6d24c5f239f1ac377') in 0.002110 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.870 seconds +Refreshing native plugins compatible for Editor in 39.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.208 seconds +Domain Reload Profiling: 4071ms + BeginReloadAssembly (280ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (140ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (1462ms) + LoadAssemblies (987ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (546ms) + TypeCache.Refresh (534ms) + TypeCache.ScanAssembly (505ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2209ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1059ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (571ms) + ProcessInitializeOnLoadMethodAttributes (317ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 45.63 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6182. +Memory consumption went from 194.8 MB to 194.6 MB. +Total: 22.985700 ms (FindLiveObjects: 0.689500 ms CreateObjectMapping: 0.285400 ms MarkObjects: 21.271900 ms DeleteObjects: 0.734900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.774 seconds +Refreshing native plugins compatible for Editor in 47.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.110 seconds +Domain Reload Profiling: 3877ms + BeginReloadAssembly (359ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (168ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (85ms) + LoadAllAssembliesAndSetupDomain (1266ms) + LoadAssemblies (930ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (436ms) + TypeCache.Refresh (421ms) + TypeCache.ScanAssembly (386ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (15ms) + FinalizeReload (2111ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1053ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (517ms) + ProcessInitializeOnLoadMethodAttributes (378ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 31.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6197. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 16.651300 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.209000 ms MarkObjects: 15.805300 ms DeleteObjects: 0.258400 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.573 seconds +Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.129 seconds +Domain Reload Profiling: 3717ms + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (100ms) RebuildCommonClasses (36ms) RebuildNativeTypeToScriptingClass (12ms) initialDomainReloadingComplete (72ms) - LoadAllAssembliesAndSetupDomain (1290ms) - LoadAssemblies (960ms) + LoadAllAssembliesAndSetupDomain (1208ms) + LoadAssemblies (850ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (395ms) - TypeCache.Refresh (381ms) - TypeCache.ScanAssembly (338ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1680ms) + AnalyzeDomain (435ms) + TypeCache.Refresh (421ms) + TypeCache.ScanAssembly (393ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2151ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (873ms) + SetupLoadedEditorAssemblies (1065ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (396ms) - ProcessInitializeOnLoadMethodAttributes (339ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (568ms) + ProcessInitializeOnLoadMethodAttributes (345ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (2ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) + AwakeInstancesAfterBackupRestoration (36ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 75.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5635 Unused Serialized files (Serialized files now loaded: 0) -Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6117. -Memory consumption went from 195.0 MB to 194.8 MB. -Total: 33.105500 ms (FindLiveObjects: 0.856600 ms CreateObjectMapping: 1.832900 ms MarkObjects: 29.891000 ms DeleteObjects: 0.522700 ms) +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6212. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 28.266200 ms (FindLiveObjects: 0.657700 ms CreateObjectMapping: 0.469500 ms MarkObjects: 26.585700 ms DeleteObjects: 0.549500 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.810 seconds +Refreshing native plugins compatible for Editor in 72.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.158 seconds +Domain Reload Profiling: 3962ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (103ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (1434ms) + LoadAssemblies (861ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (643ms) + TypeCache.Refresh (625ms) + TypeCache.ScanAssembly (587ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (18ms) + FinalizeReload (2160ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1065ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (533ms) + ProcessInitializeOnLoadMethodAttributes (337ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (4ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (37ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 54.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6227. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 25.569000 ms (FindLiveObjects: 1.030000 ms CreateObjectMapping: 0.864300 ms MarkObjects: 23.376000 ms DeleteObjects: 0.297300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.575 seconds +Refreshing native plugins compatible for Editor in 57.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.910 seconds +Domain Reload Profiling: 3478ms + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (84ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (78ms) + LoadAllAssembliesAndSetupDomain (1216ms) + LoadAssemblies (831ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (462ms) + TypeCache.Refresh (441ms) + TypeCache.ScanAssembly (400ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (21ms) + FinalizeReload (1911ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (939ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (459ms) + ProcessInitializeOnLoadMethodAttributes (333ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (34ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6242. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 16.493500 ms (FindLiveObjects: 0.445300 ms CreateObjectMapping: 0.234600 ms MarkObjects: 15.529700 ms DeleteObjects: 0.282300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.685 seconds +Refreshing native plugins compatible for Editor in 46.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.315 seconds +Domain Reload Profiling: 3994ms + BeginReloadAssembly (312ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (127ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (1248ms) + LoadAssemblies (848ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (476ms) + TypeCache.Refresh (464ms) + TypeCache.ScanAssembly (436ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2317ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1052ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (151ms) + ProcessInitializeOnLoadAttributes (496ms) + ProcessInitializeOnLoadMethodAttributes (373ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.72 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6257. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 27.219100 ms (FindLiveObjects: 0.767000 ms CreateObjectMapping: 0.525400 ms MarkObjects: 25.373100 ms DeleteObjects: 0.550700 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.438 seconds +Refreshing native plugins compatible for Editor in 117.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.100 seconds +Domain Reload Profiling: 5543ms + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (102ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (87ms) + LoadAllAssembliesAndSetupDomain (2018ms) + LoadAssemblies (1040ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (1064ms) + TypeCache.Refresh (1027ms) + TypeCache.ScanAssembly (986ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (24ms) + FinalizeReload (3116ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1480ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (225ms) + ProcessInitializeOnLoadAttributes (790ms) + ProcessInitializeOnLoadMethodAttributes (429ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (40ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 44.84 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6272. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 30.868500 ms (FindLiveObjects: 0.968000 ms CreateObjectMapping: 1.655300 ms MarkObjects: 27.665300 ms DeleteObjects: 0.576900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.875 seconds +Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.181 seconds +Domain Reload Profiling: 4045ms + BeginReloadAssembly (355ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (158ms) + RebuildCommonClasses (58ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (129ms) + LoadAllAssembliesAndSetupDomain (1304ms) + LoadAssemblies (961ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (462ms) + TypeCache.Refresh (452ms) + TypeCache.ScanAssembly (425ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (2184ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1103ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (166ms) + ProcessInitializeOnLoadAttributes (596ms) + ProcessInitializeOnLoadMethodAttributes (314ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 29.25 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 136 unused Assets / (205.2 KB). Loaded Objects now: 6287. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 18.944800 ms (FindLiveObjects: 0.709500 ms CreateObjectMapping: 0.224000 ms MarkObjects: 17.692600 ms DeleteObjects: 0.316000 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.762 seconds +Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.027 seconds +Domain Reload Profiling: 3780ms + BeginReloadAssembly (324ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (145ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (82ms) + LoadAllAssembliesAndSetupDomain (1284ms) + LoadAssemblies (966ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (424ms) + TypeCache.Refresh (408ms) + TypeCache.ScanAssembly (384ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2029ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1043ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (159ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (337ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (43ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.84 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 136 unused Assets / (206.2 KB). Loaded Objects now: 6302. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 17.861500 ms (FindLiveObjects: 0.600500 ms CreateObjectMapping: 0.441000 ms MarkObjects: 16.360200 ms DeleteObjects: 0.456300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.847 seconds +Refreshing native plugins compatible for Editor in 41.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.236 seconds +Domain Reload Profiling: 5075ms + BeginReloadAssembly (1485ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (39ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1080ms) + RebuildCommonClasses (62ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (92ms) + LoadAllAssembliesAndSetupDomain (1182ms) + LoadAssemblies (968ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (429ms) + TypeCache.Refresh (416ms) + TypeCache.ScanAssembly (394ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2238ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1138ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (149ms) + ProcessInitializeOnLoadAttributes (572ms) + ProcessInitializeOnLoadMethodAttributes (386ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (35ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.25 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 136 unused Assets / (206.1 KB). Loaded Objects now: 6317. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 22.422000 ms (FindLiveObjects: 0.592500 ms CreateObjectMapping: 0.251200 ms MarkObjects: 21.246100 ms DeleteObjects: 0.329100 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.897 seconds +Refreshing native plugins compatible for Editor in 59.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.727 seconds +Domain Reload Profiling: 4621ms + BeginReloadAssembly (230ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (95ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (1531ms) + LoadAssemblies (972ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (623ms) + TypeCache.Refresh (609ms) + TypeCache.ScanAssembly (580ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2729ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (11ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (200ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (426ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (57ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 48.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 136 unused Assets / (205.2 KB). Loaded Objects now: 6332. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 22.243800 ms (FindLiveObjects: 0.866300 ms CreateObjectMapping: 0.562800 ms MarkObjects: 20.256700 ms DeleteObjects: 0.555500 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.047 seconds +Refreshing native plugins compatible for Editor in 43.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.306 seconds +Domain Reload Profiling: 4334ms + BeginReloadAssembly (292ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (126ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (144ms) + LoadAllAssembliesAndSetupDomain (1529ms) + LoadAssemblies (1075ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (554ms) + TypeCache.Refresh (542ms) + TypeCache.ScanAssembly (506ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2307ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1196ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (169ms) + ProcessInitializeOnLoadAttributes (653ms) + ProcessInitializeOnLoadMethodAttributes (343ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (37ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 72.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 136 unused Assets / (205.2 KB). Loaded Objects now: 6347. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 30.033400 ms (FindLiveObjects: 0.859400 ms CreateObjectMapping: 0.999300 ms MarkObjects: 27.739700 ms DeleteObjects: 0.432300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.708 seconds +Refreshing native plugins compatible for Editor in 44.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.444 seconds +Domain Reload Profiling: 4141ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (79ms) + LoadAllAssembliesAndSetupDomain (1322ms) + LoadAssemblies (892ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (513ms) + TypeCache.Refresh (500ms) + TypeCache.ScanAssembly (469ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2445ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1181ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (182ms) + ProcessInitializeOnLoadAttributes (620ms) + ProcessInitializeOnLoadMethodAttributes (344ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (31ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.15 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6362. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 20.955400 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.394500 ms MarkObjects: 19.657700 ms DeleteObjects: 0.475300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.970 seconds +Refreshing native plugins compatible for Editor in 81.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.749 seconds +Domain Reload Profiling: 4712ms + BeginReloadAssembly (226ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (82ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (72ms) + LoadAllAssembliesAndSetupDomain (1618ms) + LoadAssemblies (970ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (720ms) + TypeCache.Refresh (703ms) + TypeCache.ScanAssembly (657ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (17ms) + FinalizeReload (2750ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (13ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (178ms) + ProcessInitializeOnLoadAttributes (674ms) + ProcessInitializeOnLoadMethodAttributes (426ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 49.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 136 unused Assets / (206.2 KB). Loaded Objects now: 6377. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 22.883100 ms (FindLiveObjects: 1.043600 ms CreateObjectMapping: 0.629800 ms MarkObjects: 20.880500 ms DeleteObjects: 0.326500 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.661 seconds +Refreshing native plugins compatible for Editor in 47.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.443 seconds +Domain Reload Profiling: 4093ms + BeginReloadAssembly (232ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (83ms) + LoadAllAssembliesAndSetupDomain (1272ms) + LoadAssemblies (879ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (463ms) + TypeCache.Refresh (451ms) + TypeCache.ScanAssembly (423ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2445ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1144ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (168ms) + ProcessInitializeOnLoadAttributes (543ms) + ProcessInitializeOnLoadMethodAttributes (399ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (43ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.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 136 unused Assets / (206.0 KB). Loaded Objects now: 6392. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 21.882600 ms (FindLiveObjects: 0.654800 ms CreateObjectMapping: 0.765900 ms MarkObjects: 19.909600 ms DeleteObjects: 0.551100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/JNFrame2/Logs/AssetImportWorker1-prev.log b/JNFrame2/Logs/AssetImportWorker1-prev.log index ea57b622..1737cbab 100644 --- a/JNFrame2/Logs/AssetImportWorker1-prev.log +++ b/JNFrame2/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker1.log -srvPort -52681 +52918 Successfully changed project path to: D:/myproject/JisolGame/JNFrame2 D:/myproject/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/myproject/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 [1944] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 445265918 [EditorId] 445265918 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [1944] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 445265918 [EditorId] 445265918 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 65.15 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 71.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.1f1 (f18e0c1b5784) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems @@ -69,17 +69,17 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56480 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56724 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.005872 seconds. -- Loaded All Assemblies, in 0.370 seconds +Registered in 0.009169 seconds. +- Loaded All Assemblies, in 0.653 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.278 seconds -Domain Reload Profiling: 646ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 5.839 seconds +Domain Reload Profiling: 6493ms + BeginReloadAssembly (98ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) @@ -87,35 +87,35 @@ Domain Reload Profiling: 646ms CreateAndSetChildDomain (1ms) RebuildCommonClasses (37ms) RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (61ms) - LoadAllAssembliesAndSetupDomain (159ms) + initialDomainReloadingComplete (79ms) + LoadAllAssembliesAndSetupDomain (427ms) LoadAssemblies (96ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (151ms) - TypeCache.Refresh (150ms) - TypeCache.ScanAssembly (134ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (418ms) + TypeCache.Refresh (417ms) + TypeCache.ScanAssembly (377ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) ResolveRequiredComponents (1ms) - FinalizeReload (279ms) + FinalizeReload (5843ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (217ms) + SetupLoadedEditorAssemblies (5345ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (61ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (134ms) - ProcessInitializeOnLoadMethodAttributes (64ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (4820ms) + ProcessInitializeOnLoadMethodAttributes (313ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.418 seconds -Refreshing native plugins compatible for Editor in 34.46 ms, found 3 plugins. +- Loaded All Assemblies, in 2.697 seconds +Refreshing native plugins compatible for Editor in 41.20 ms, found 3 plugins. Native extension for WindowsStandalone target not found Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument @@ -132,50 +132,50 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.521 seconds -Domain Reload Profiling: 2934ms - BeginReloadAssembly (140ms) +- Finished resetting the current domain, in 3.755 seconds +Domain Reload Profiling: 6439ms + BeginReloadAssembly (282ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (11ms) BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (54ms) - LoadAllAssembliesAndSetupDomain (1177ms) - LoadAssemblies (793ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (129ms) + RebuildNativeTypeToScriptingClass (69ms) + initialDomainReloadingComplete (207ms) + LoadAllAssembliesAndSetupDomain (1996ms) + LoadAssemblies (1315ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (446ms) - TypeCache.Refresh (413ms) - TypeCache.ScanAssembly (393ms) - ScanForSourceGeneratedMonoScriptInfo (23ms) - ResolveRequiredComponents (10ms) - FinalizeReload (1522ms) + AnalyzeDomain (807ms) + TypeCache.Refresh (759ms) + TypeCache.ScanAssembly (731ms) + ScanForSourceGeneratedMonoScriptInfo (38ms) + ResolveRequiredComponents (11ms) + FinalizeReload (3756ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1329ms) + SetupLoadedEditorAssemblies (3323ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (10ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (118ms) - ProcessInitializeOnLoadAttributes (726ms) - ProcessInitializeOnLoadMethodAttributes (460ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) + BeforeProcessingInitializeOnLoad (193ms) + ProcessInitializeOnLoadAttributes (1284ms) + ProcessInitializeOnLoadMethodAttributes (1798ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) + 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 25.77 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 65.04 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 5651 Unused Serialized files (Serialized files now loaded: 0) -Unloading 183 unused Assets / (232.8 KB). Loaded Objects now: 6101. -Memory consumption went from 197.9 MB to 197.6 MB. -Total: 20.669600 ms (FindLiveObjects: 0.474200 ms CreateObjectMapping: 0.228700 ms MarkObjects: 19.557800 ms DeleteObjects: 0.407700 ms) +Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101. +Memory consumption went from 197.9 MB to 197.7 MB. +Total: 27.955700 ms (FindLiveObjects: 0.836400 ms CreateObjectMapping: 0.605300 ms MarkObjects: 26.061200 ms DeleteObjects: 0.450100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -191,8 +191,8 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.357 seconds -Refreshing native plugins compatible for Editor in 31.29 ms, found 3 plugins. +- Loaded All Assemblies, in 1.689 seconds +Refreshing native plugins compatible for Editor in 32.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -209,48 +209,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.490 seconds -Domain Reload Profiling: 2841ms - BeginReloadAssembly (194ms) +- Finished resetting the current domain, in 1.686 seconds +Domain Reload Profiling: 3417ms + BeginReloadAssembly (285ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (75ms) - RebuildCommonClasses (51ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (59ms) - LoadAllAssembliesAndSetupDomain (1030ms) - LoadAssemblies (733ms) + CreateAndSetChildDomain (135ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (1287ms) + LoadAssemblies (961ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (364ms) - TypeCache.Refresh (355ms) - TypeCache.ScanAssembly (337ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1492ms) + AnalyzeDomain (394ms) + TypeCache.Refresh (380ms) + TypeCache.ScanAssembly (335ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1735ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (788ms) + SetupLoadedEditorAssemblies (869ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (359ms) - ProcessInitializeOnLoadMethodAttributes (283ms) - AfterProcessingInitializeOnLoad (11ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (394ms) + ProcessInitializeOnLoadMethodAttributes (337ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (2ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) + AwakeInstancesAfterBackupRestoration (32ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 31.71 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 75.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5635 Unused Serialized files (Serialized files now loaded: 0) -Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6116. -Memory consumption went from 195.1 MB to 194.9 MB. -Total: 15.396700 ms (FindLiveObjects: 0.583500 ms CreateObjectMapping: 0.238600 ms MarkObjects: 14.293100 ms DeleteObjects: 0.279300 ms) +Unloading 5636 Unused Serialized files (Serialized files now loaded: 0) +Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6117. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 32.979700 ms (FindLiveObjects: 1.552000 ms CreateObjectMapping: 0.841400 ms MarkObjects: 29.841900 ms DeleteObjects: 0.739200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/JNFrame2/Logs/AssetImportWorker1.log b/JNFrame2/Logs/AssetImportWorker1.log index 1737cbab..39d79702 100644 --- a/JNFrame2/Logs/AssetImportWorker1.log +++ b/JNFrame2/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker1.log -srvPort -52918 +50224 Successfully changed project path to: D:/myproject/JisolGame/JNFrame2 D:/myproject/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/myproject/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 [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 71.37 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 120.49 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.1f1 (f18e0c1b5784) [Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems @@ -69,53 +69,53 @@ Initialize mono Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed' Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56724 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56512 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.009169 seconds. -- Loaded All Assemblies, in 0.653 seconds +Registered in 0.011258 seconds. +- Loaded All Assemblies, in 0.611 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 5.839 seconds -Domain Reload Profiling: 6493ms - BeginReloadAssembly (98ms) +- Finished resetting the current domain, in 0.434 seconds +Domain Reload Profiling: 1041ms + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (79ms) - LoadAllAssembliesAndSetupDomain (427ms) - LoadAssemblies (96ms) + RebuildCommonClasses (70ms) + RebuildNativeTypeToScriptingClass (24ms) + initialDomainReloadingComplete (110ms) + LoadAllAssembliesAndSetupDomain (233ms) + LoadAssemblies (163ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (418ms) - TypeCache.Refresh (417ms) - TypeCache.ScanAssembly (377ms) + AnalyzeDomain (222ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (196ms) ScanForSourceGeneratedMonoScriptInfo (1ms) ResolveRequiredComponents (1ms) - FinalizeReload (5843ms) + FinalizeReload (435ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (5345ms) + SetupLoadedEditorAssemblies (348ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) - SetLoadedEditorAssemblies (61ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (13ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (112ms) - ProcessInitializeOnLoadAttributes (4820ms) - ProcessInitializeOnLoadMethodAttributes (313ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (4ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (80ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 2.697 seconds -Refreshing native plugins compatible for Editor in 41.20 ms, found 3 plugins. +- Loaded All Assemblies, in 2.021 seconds +Refreshing native plugins compatible for Editor in 54.49 ms, found 3 plugins. Native extension for WindowsStandalone target not found Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument @@ -132,67 +132,70 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 3.755 seconds -Domain Reload Profiling: 6439ms - BeginReloadAssembly (282ms) +- Finished resetting the current domain, in 2.133 seconds +Domain Reload Profiling: 4146ms + BeginReloadAssembly (205ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) - ReleaseScriptingObjects (1ms) - CreateAndSetChildDomain (67ms) - RebuildCommonClasses (129ms) - RebuildNativeTypeToScriptingClass (69ms) - initialDomainReloadingComplete (207ms) - LoadAllAssembliesAndSetupDomain (1996ms) - LoadAssemblies (1315ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (1675ms) + LoadAssemblies (1108ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (807ms) - TypeCache.Refresh (759ms) - TypeCache.ScanAssembly (731ms) - ScanForSourceGeneratedMonoScriptInfo (38ms) - ResolveRequiredComponents (11ms) - FinalizeReload (3756ms) + AnalyzeDomain (656ms) + TypeCache.Refresh (606ms) + TypeCache.ScanAssembly (573ms) + ScanForSourceGeneratedMonoScriptInfo (36ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2133ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (3323ms) + SetupLoadedEditorAssemblies (1870ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (10ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (193ms) - ProcessInitializeOnLoadAttributes (1284ms) - ProcessInitializeOnLoadMethodAttributes (1798ms) - AfterProcessingInitializeOnLoad (25ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (172ms) + ProcessInitializeOnLoadAttributes (903ms) + ProcessInitializeOnLoadMethodAttributes (768ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) + 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 65.04 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 61.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5651 Unused Serialized files (Serialized files now loaded: 0) -Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101. -Memory consumption went from 197.9 MB to 197.7 MB. -Total: 27.955700 ms (FindLiveObjects: 0.836400 ms CreateObjectMapping: 0.605300 ms MarkObjects: 26.061200 ms DeleteObjects: 0.450100 ms) +Unloading 5656 Unused Serialized files (Serialized files now loaded: 0) +Unloading 183 unused Assets / (232.7 KB). Loaded Objects now: 6106. +Memory consumption went from 197.8 MB to 197.6 MB. +Total: 26.447200 ms (FindLiveObjects: 0.939200 ms CreateObjectMapping: 0.851600 ms MarkObjects: 24.035100 ms DeleteObjects: 0.618400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.689 seconds -Refreshing native plugins compatible for Editor in 32.71 ms, found 3 plugins. +- Loaded All Assemblies, in 1.818 seconds +Refreshing native plugins compatible for Editor in 46.59 ms, found 3 plugins. Native extension for WindowsStandalone target not found [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). @@ -209,48 +212,1434 @@ UnityEditor.EditorAssemblies: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: 3417ms - BeginReloadAssembly (285ms) +- Finished resetting the current domain, in 2.225 seconds +Domain Reload Profiling: 4038ms + BeginReloadAssembly (234ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (135ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (66ms) - LoadAllAssembliesAndSetupDomain (1287ms) - LoadAssemblies (961ms) + CreateAndSetChildDomain (85ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (99ms) + LoadAllAssembliesAndSetupDomain (1407ms) + LoadAssemblies (978ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (394ms) - TypeCache.Refresh (380ms) - TypeCache.ScanAssembly (335ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1735ms) + AnalyzeDomain (516ms) + TypeCache.Refresh (501ms) + TypeCache.ScanAssembly (472ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2228ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (869ms) + SetupLoadedEditorAssemblies (1169ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (149ms) + ProcessInitializeOnLoadAttributes (580ms) + ProcessInitializeOnLoadMethodAttributes (411ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (54ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 46.55 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 136 unused Assets / (205.0 KB). Loaded Objects now: 6121. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 24.686200 ms (FindLiveObjects: 0.786500 ms CreateObjectMapping: 0.515600 ms MarkObjects: 22.861200 ms DeleteObjects: 0.519900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.154 seconds +Refreshing native plugins compatible for Editor in 64.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.736 seconds +Domain Reload Profiling: 5882ms + BeginReloadAssembly (254ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (105ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (1758ms) + LoadAssemblies (1095ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (738ms) + TypeCache.Refresh (724ms) + TypeCache.ScanAssembly (691ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (3737ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (14ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (247ms) + ProcessInitializeOnLoadAttributes (1202ms) + ProcessInitializeOnLoadMethodAttributes (752ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (50ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 91.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6136. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 38.137600 ms (FindLiveObjects: 1.303200 ms CreateObjectMapping: 1.794000 ms MarkObjects: 34.357500 ms DeleteObjects: 0.680200 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.945 seconds +Refreshing native plugins compatible for Editor in 49.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.915 seconds +Domain Reload Profiling: 3851ms + BeginReloadAssembly (286ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (103ms) + RebuildCommonClasses (53ms) + RebuildNativeTypeToScriptingClass (22ms) + initialDomainReloadingComplete (85ms) + LoadAllAssembliesAndSetupDomain (1488ms) + LoadAssemblies (973ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (623ms) + TypeCache.Refresh (613ms) + TypeCache.ScanAssembly (585ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1917ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (950ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (141ms) + ProcessInitializeOnLoadAttributes (443ms) + ProcessInitializeOnLoadMethodAttributes (338ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (2ms) + 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 39.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 136 unused Assets / (206.2 KB). Loaded Objects now: 6151. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 19.277600 ms (FindLiveObjects: 0.799000 ms CreateObjectMapping: 0.620800 ms MarkObjects: 17.594400 ms DeleteObjects: 0.261900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.483 seconds +Refreshing native plugins compatible for Editor in 37.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies: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: 3384ms + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (84ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (1134ms) + LoadAssemblies (750ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (456ms) + TypeCache.Refresh (443ms) + TypeCache.ScanAssembly (419ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1908ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (898ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (394ms) - ProcessInitializeOnLoadMethodAttributes (337ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (444ms) + ProcessInitializeOnLoadMethodAttributes (300ms) + AfterProcessingInitializeOnLoad (11ms) EditorAssembliesLoaded (2ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (32ms) + AwakeInstancesAfterBackupRestoration (27ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 75.52 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 30.29 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6117. +Unloading 5640 Unused Serialized files (Serialized files now loaded: 0) +Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6166. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 16.679700 ms (FindLiveObjects: 0.610100 ms CreateObjectMapping: 0.307900 ms MarkObjects: 15.337400 ms DeleteObjects: 0.420400 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.880 seconds +Refreshing native plugins compatible for Editor in 42.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.140 seconds +Domain Reload Profiling: 4017ms + BeginReloadAssembly (278ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (130ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (1475ms) + LoadAssemblies (996ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (555ms) + TypeCache.Refresh (543ms) + TypeCache.ScanAssembly (516ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2144ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1085ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (163ms) + ProcessInitializeOnLoadAttributes (526ms) + ProcessInitializeOnLoadMethodAttributes (364ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 92.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 136 unused Assets / (206.0 KB). Loaded Objects now: 6181. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 38.591900 ms (FindLiveObjects: 1.173500 ms CreateObjectMapping: 1.196500 ms MarkObjects: 35.687300 ms DeleteObjects: 0.531400 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.766 seconds +Refreshing native plugins compatible for Editor in 47.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.963 seconds +Domain Reload Profiling: 3724ms + BeginReloadAssembly (354ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (169ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (84ms) + LoadAllAssembliesAndSetupDomain (1264ms) + LoadAssemblies (921ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (433ms) + TypeCache.Refresh (419ms) + TypeCache.ScanAssembly (384ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1966ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1003ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (471ms) + ProcessInitializeOnLoadMethodAttributes (370ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (31ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 43.78 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6196. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 21.399600 ms (FindLiveObjects: 0.599100 ms CreateObjectMapping: 0.520100 ms MarkObjects: 19.517200 ms DeleteObjects: 0.759700 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + 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: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/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.567 seconds +Refreshing native plugins compatible for Editor in 37.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.078 seconds +Domain Reload Profiling: 3639ms + BeginReloadAssembly (232ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (70ms) + LoadAllAssembliesAndSetupDomain (1210ms) + LoadAssemblies (840ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (445ms) + TypeCache.Refresh (433ms) + TypeCache.ScanAssembly (407ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2079ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1069ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (523ms) + ProcessInitializeOnLoadMethodAttributes (384ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (45ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.36 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6211. Memory consumption went from 195.2 MB to 195.0 MB. -Total: 32.979700 ms (FindLiveObjects: 1.552000 ms CreateObjectMapping: 0.841400 ms MarkObjects: 29.841900 ms DeleteObjects: 0.739200 ms) +Total: 24.281300 ms (FindLiveObjects: 0.940300 ms CreateObjectMapping: 0.552700 ms MarkObjects: 22.396100 ms DeleteObjects: 0.389700 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.833 seconds +Refreshing native plugins compatible for Editor in 66.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.335 seconds +Domain Reload Profiling: 4169ms + BeginReloadAssembly (237ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (93ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (75ms) + LoadAllAssembliesAndSetupDomain (1461ms) + LoadAssemblies (894ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (641ms) + TypeCache.Refresh (623ms) + TypeCache.ScanAssembly (585ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (17ms) + FinalizeReload (2344ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1124ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (157ms) + ProcessInitializeOnLoadAttributes (574ms) + ProcessInitializeOnLoadMethodAttributes (358ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (36ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.55 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6226. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 19.926400 ms (FindLiveObjects: 0.553800 ms CreateObjectMapping: 0.290100 ms MarkObjects: 18.634800 ms DeleteObjects: 0.445800 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.583 seconds +Refreshing native plugins compatible for Editor in 60.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.004 seconds +Domain Reload Profiling: 3581ms + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (79ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (75ms) + LoadAllAssembliesAndSetupDomain (1218ms) + LoadAssemblies (831ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (468ms) + TypeCache.Refresh (455ms) + TypeCache.ScanAssembly (401ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2007ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (996ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (349ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (4ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.24 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6241. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 16.465500 ms (FindLiveObjects: 0.544000 ms CreateObjectMapping: 0.302100 ms MarkObjects: 15.285100 ms DeleteObjects: 0.330800 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.698 seconds +Refreshing native plugins compatible for Editor in 47.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.193 seconds +Domain Reload Profiling: 3886ms + BeginReloadAssembly (318ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (155ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (70ms) + LoadAllAssembliesAndSetupDomain (1250ms) + LoadAssemblies (857ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (479ms) + TypeCache.Refresh (465ms) + TypeCache.ScanAssembly (436ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2196ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1057ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (155ms) + ProcessInitializeOnLoadAttributes (490ms) + ProcessInitializeOnLoadMethodAttributes (381ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 76.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6256. +Memory consumption went from 195.1 MB to 194.9 MB. +Total: 21.246600 ms (FindLiveObjects: 0.693600 ms CreateObjectMapping: 1.113600 ms MarkObjects: 19.133100 ms DeleteObjects: 0.303900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.474 seconds +Refreshing native plugins compatible for Editor in 120.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.242 seconds +Domain Reload Profiling: 5716ms + BeginReloadAssembly (251ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (53ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (83ms) + LoadAllAssembliesAndSetupDomain (2058ms) + LoadAssemblies (1065ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (1083ms) + TypeCache.Refresh (1043ms) + TypeCache.ScanAssembly (1000ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (31ms) + FinalizeReload (3251ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1508ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (187ms) + ProcessInitializeOnLoadAttributes (850ms) + ProcessInitializeOnLoadMethodAttributes (430ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (40ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 43.55 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 136 unused Assets / (206.1 KB). Loaded Objects now: 6271. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 19.613700 ms (FindLiveObjects: 0.724400 ms CreateObjectMapping: 0.320700 ms MarkObjects: 18.238700 ms DeleteObjects: 0.327400 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.876 seconds +Refreshing native plugins compatible for Editor in 33.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.085 seconds +Domain Reload Profiling: 3948ms + BeginReloadAssembly (351ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (149ms) + RebuildCommonClasses (65ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (132ms) + LoadAllAssembliesAndSetupDomain (1300ms) + LoadAssemblies (962ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (454ms) + TypeCache.Refresh (443ms) + TypeCache.ScanAssembly (416ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2087ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1089ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (584ms) + ProcessInitializeOnLoadMethodAttributes (340ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.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 136 unused Assets / (206.3 KB). Loaded Objects now: 6286. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 18.089100 ms (FindLiveObjects: 0.784600 ms CreateObjectMapping: 0.937200 ms MarkObjects: 15.909300 ms DeleteObjects: 0.455900 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.728 seconds +Refreshing native plugins compatible for Editor in 43.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) + +(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16) + +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.977 seconds +Domain Reload Profiling: 3699ms + BeginReloadAssembly (313ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (136ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (87ms) + LoadAllAssembliesAndSetupDomain (1257ms) + LoadAssemblies (931ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (423ms) + TypeCache.Refresh (407ms) + TypeCache.ScanAssembly (381ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1981ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1074ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (143ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (400ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.25 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 136 unused Assets / (205.2 KB). Loaded Objects now: 6301. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 18.350400 ms (FindLiveObjects: 0.588600 ms CreateObjectMapping: 0.258400 ms MarkObjects: 17.148900 ms DeleteObjects: 0.352800 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.876 seconds +Refreshing native plugins compatible for Editor in 42.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.086 seconds +Domain Reload Profiling: 4952ms + BeginReloadAssembly (1455ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (24ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (906ms) + RebuildCommonClasses (89ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (103ms) + LoadAllAssembliesAndSetupDomain (1199ms) + LoadAssemblies (1080ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (429ms) + TypeCache.Refresh (417ms) + TypeCache.ScanAssembly (395ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2087ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1129ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (148ms) + ProcessInitializeOnLoadAttributes (521ms) + ProcessInitializeOnLoadMethodAttributes (427ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 64.22 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 136 unused Assets / (205.2 KB). Loaded Objects now: 6316. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 25.783000 ms (FindLiveObjects: 0.678800 ms CreateObjectMapping: 0.499400 ms MarkObjects: 23.946800 ms DeleteObjects: 0.654700 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.875 seconds +Refreshing native plugins compatible for Editor in 57.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.702 seconds +Domain Reload Profiling: 4571ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (89ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (77ms) + LoadAllAssembliesAndSetupDomain (1511ms) + LoadAssemblies (959ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (621ms) + TypeCache.Refresh (607ms) + TypeCache.ScanAssembly (579ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2703ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (204ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (461ms) + AfterProcessingInitializeOnLoad (16ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 52.18 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 136 unused Assets / (205.2 KB). Loaded Objects now: 6331. +Memory consumption went from 195.2 MB to 195.0 MB. +Total: 25.534800 ms (FindLiveObjects: 0.934100 ms CreateObjectMapping: 1.239900 ms MarkObjects: 22.739400 ms DeleteObjects: 0.619600 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.053 seconds +Refreshing native plugins compatible for Editor in 46.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.453 seconds +Domain Reload Profiling: 4483ms + BeginReloadAssembly (288ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (113ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (152ms) + LoadAllAssembliesAndSetupDomain (1518ms) + LoadAssemblies (1074ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (544ms) + TypeCache.Refresh (533ms) + TypeCache.ScanAssembly (499ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2459ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1255ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (196ms) + ProcessInitializeOnLoadAttributes (662ms) + ProcessInitializeOnLoadMethodAttributes (354ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (6ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 46.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 136 unused Assets / (205.1 KB). Loaded Objects now: 6346. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 27.665000 ms (FindLiveObjects: 1.249300 ms CreateObjectMapping: 1.573900 ms MarkObjects: 24.299400 ms DeleteObjects: 0.539100 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.685 seconds +Refreshing native plugins compatible for Editor in 44.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.308 seconds +Domain Reload Profiling: 3985ms + BeginReloadAssembly (235ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (83ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (1315ms) + LoadAssemblies (897ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (502ms) + TypeCache.Refresh (489ms) + TypeCache.ScanAssembly (453ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2309ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1143ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (161ms) + ProcessInitializeOnLoadAttributes (600ms) + ProcessInitializeOnLoadMethodAttributes (354ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (1ms) + AwakeInstancesAfterBackupRestoration (23ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 50.75 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6361. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 22.040700 ms (FindLiveObjects: 0.857700 ms CreateObjectMapping: 0.468100 ms MarkObjects: 20.122700 ms DeleteObjects: 0.590300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.963 seconds +Refreshing native plugins compatible for Editor in 78.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.659 seconds +Domain Reload Profiling: 4613ms + BeginReloadAssembly (216ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (80ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (1617ms) + LoadAssemblies (958ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (724ms) + TypeCache.Refresh (709ms) + TypeCache.ScanAssembly (664ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (15ms) + FinalizeReload (2660ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (23ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (191ms) + ProcessInitializeOnLoadAttributes (638ms) + ProcessInitializeOnLoadMethodAttributes (419ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (46ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 70.35 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 136 unused Assets / (205.1 KB). Loaded Objects now: 6376. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 29.913100 ms (FindLiveObjects: 0.734600 ms CreateObjectMapping: 0.625400 ms MarkObjects: 27.876000 ms DeleteObjects: 0.675300 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.674 seconds +Refreshing native plugins compatible for Editor in 44.11 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +AutoRegister +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:Log (object) +JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16) +System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle) +UnityEditor.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.286 seconds +Domain Reload Profiling: 3950ms + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (92ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (1291ms) + LoadAssemblies (889ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (477ms) + TypeCache.Refresh (465ms) + TypeCache.ScanAssembly (438ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2287ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1122ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (170ms) + ProcessInitializeOnLoadAttributes (538ms) + ProcessInitializeOnLoadMethodAttributes (384ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (44ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 47.36 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 136 unused Assets / (205.0 KB). Loaded Objects now: 6391. +Memory consumption went from 195.3 MB to 195.1 MB. +Total: 22.640700 ms (FindLiveObjects: 0.569000 ms CreateObjectMapping: 0.370000 ms MarkObjects: 21.203800 ms DeleteObjects: 0.495400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log index c5c74b9f..8f94b07e 100644 --- a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log +++ b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log @@ -4,3 +4,22 @@ Cmd: initializeCompiler Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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 + + + + + + + + + + + + + + + +Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) + +Quitting shader compiler process + diff --git a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 97c5677a..94a8a6ea 100644 --- a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,6 +1,7 @@ Base path: 'D:/Unity/2022.3.1f1/Editor/Data', plugins path 'D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler + Cmd: preprocess insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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 @@ -12,3 +13,128 @@ Cmd: preprocess Cmd: preprocess insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm 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: shutdown diff --git a/JNFrame2/UserSettings/Layouts/default-2022.dwlt b/JNFrame2/UserSettings/Layouts/default-2022.dwlt index 4a4e5c20..4e4f75b7 100644 --- a/JNFrame2/UserSettings/Layouts/default-2022.dwlt +++ b/JNFrame2/UserSettings/Layouts/default-2022.dwlt @@ -19,9 +19,9 @@ MonoBehaviour: width: 1920 height: 989 m_ShowMode: 4 - m_Title: Project + m_Title: Inspector m_RootView: {fileID: 2} - m_MinSize: {x: 875, y: 371} + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 48 + controlID: 152 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -144,7 +144,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 49 + controlID: 153 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -170,7 +170,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 50} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 50 + controlID: 154 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -190,8 +190,8 @@ MonoBehaviour: y: 0 width: 263 height: 352 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 15} m_Panes: - {fileID: 15} @@ -216,8 +216,8 @@ MonoBehaviour: y: 0 width: 487 height: 352 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 16} m_Panes: - {fileID: 16} @@ -260,7 +260,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser + m_Name: ConsoleWindow m_EditorClassIdentifier: m_Children: [] m_Position: @@ -269,14 +269,14 @@ MonoBehaviour: y: 352 width: 1160 height: 587 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 18} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 14} m_Panes: - {fileID: 18} - {fileID: 14} - m_Selected: 0 - m_LastSelected: 1 + m_Selected: 1 + m_LastSelected: 0 --- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 @@ -409,9 +409,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: + m_SelectedIDs: 9a720000 m_LastClickedID: 0 - m_ExpandedIDs: 0afbffff + m_ExpandedIDs: e4deffff m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -772,7 +772,7 @@ MonoBehaviour: floating: 0 collapsed: 0 displayed: 1 - snapOffset: {x: 287, y: 10} + snapOffset: {x: 245, y: 10} snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: UnityEditor.SceneViewCameraOverlay @@ -976,10 +976,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 306} - m_SelectedIDs: a6710000 - m_LastClickedID: 29094 - m_ExpandedIDs: 00000000c8700000ca700000cc700000ce700000d0700000d2700000d4700000d6700000d8700000da7000000a7100001671000046710000487100008a7100008c71000000ca9a3bffffff7f + scrollPos: {x: 0, y: 2} + m_SelectedIDs: 687b0000 + m_LastClickedID: 31592 + m_ExpandedIDs: 000000001273000038730000507b0000547b0000647b000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1007,7 +1007,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000c8700000ca700000cc700000ce700000d0700000d2700000d4700000d6700000d8700000da700000 + m_ExpandedIDs: 000000001273000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1100,7 +1100,7 @@ MonoBehaviour: m_ObjectsLockedBeforeSerialization: [] m_InstanceIDsLockedBeforeSerialization: m_PreviewResizer: - m_CachedPref: 314 + m_CachedPref: -314 m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 @@ -1179,7 +1179,7 @@ MonoBehaviour: m_HSlider: 0 m_VSlider: 0 m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 1 + m_EnableMouseInput: 0 m_EnableSliderZoomHorizontal: 0 m_EnableSliderZoomVertical: 0 m_UniformScale: 1